Move reverse engineering artifacts under contrib

This commit is contained in:
2026-06-27 04:43:40 -05:00
parent 2fdc92b8ef
commit 8ee791ad0c
102 changed files with 34224 additions and 67 deletions
+15
View File
@@ -0,0 +1,15 @@
# Reverse Engineering Notes
This directory contains the investigation history for MomentumGPS:
- `docs/`: debriefs, handoff notes, routing research, and field-test notes.
- `logs/`: RED4ext logs, crash reports, and route-test screenshots.
- `tools/`: one-off reverse-engineering and data-patching helpers.
- `work/`: extracted and generated Cyberpunk traffic/navigation data.
- `presets/`: obsolete live-tuning binaries from prototype builds.
- `redscript/`: old redscript probe used before the native patch was found.
- `samples/` and `tests/`: fixtures and tests for the abandoned traffic
resource patching path.
The release plugin does not depend on this directory. It is retained as
evidence and as a starting point for future reverse-engineering work.
+752
View File
@@ -0,0 +1,752 @@
# Compaction Handoff
Current date/time context: 2026-06-27, local timezone America/Chicago.
## 2026-06-27 Momentum Default Chosen
- After live A/B testing and two drive validations, `80.0` is the working
default for `momentum_weights.bin`.
- Source fallback was changed to
`kGpsMomentumFixedEdgePenaltyDefault = 80.0f`.
- `../tools/write_momentum_weights.py default` now writes `80.0`.
The old `8.0` value is preserved as `legacy-default`.
- Current preset meanings:
`vanilla=0.0`, `mild=4.0`, `legacy-default=8.0`, `strong=16.0`,
`default=80.0`, `silly=80.0`, `overstrong=160.0`,
`pathological=250.0`.
- `160.0` was tested and is too high: The Damned can fall back to a straight
line, and local access can develop bad hairpins/backtracking.
- Drive validation at `80.0`:
The Damned/Dogtown route drove cleanly at high speed, live minimap
recalculation worked after a detour, and the Claire route drove cleanly aside
from a driver-unfamiliarity ramp/hill surprise.
- Updated detailed notes in `./gps-momentum-field-tests.md`.
- The rebuilt source-default-80 DLL was installed while the game was cold at
about `04:17` local. Installed defaults were rewritten:
`momentum_weights.bin = 80.0`, `solver_weights.bin = 1.0`.
- Added release packaging:
`toolbox run -c 2077 ./tools/package_red4ext_mod.sh`.
Verified package:
`dist/EdgeWeightGPS-red4ext-20260627-041942.zip`, containing
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`,
`momentum_weights.bin = 80.0`, and `solver_weights.bin = 1.0`.
## 2026-06-27 Live Momentum Knob Installed
- Installed a new telemetry/control DLL at about `03:21` local while the game was
cold. Installed size: `16899519` bytes.
- Active installed config:
`solver_weights.bin = 1.0` and `momentum_weights.bin = 8.0`.
- The plugin log beside the DLL was truncated to zero after install:
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log`.
- `momentum_weights.bin` is one little-endian `float32`, hot-polled every
500 ms. `0.0` disables the fixed ordinary-edge penalty; `8.0` is the current
prototype; larger values are stress tests. Presets are in
`../presets/momentum/` and can be written live with
`python3 ../tools/write_momentum_weights.py <preset>`.
- New presets:
`vanilla=0.0`, `mild=4.0`, `default=8.0`, `strong=16.0`,
`silly=80.0`, `pathological=250.0`.
- The `gps-momentum-summary` line now waits for a nonzero result route-record
count before marking a query as summarized. It should report
`gpsResultRouteCount` directly instead of showing `0` from the staging fetch.
- Build verification passed:
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
- Next test should start with current `momentum=8.0`, then while the game is
open switch to `vanilla` and `silly` on one or two fixed routes to confirm
live A/B behavior. Good candidates from the last run: The Damned/Dogtown
pathological route and the SW Badlands fuel station route.
## 2026-06-27 Momentum Telemetry Test Installed
- Installed telemetry DLL at about `03:04` local while the game was cold.
Installed size: `16792931` bytes.
- Source flags for the installed test:
`kEnableGpsNodeMultiplierInlinePatch = true`,
`kEnableGpsMomentumPenaltyInlinePatch = true`,
`kEnableGpsQueryResultTraceHooks = true`, and
`kEnableGpsQueryResultRecordDump = false`.
- `solver_weights.bin` is vanilla `1.0`, so the highway multiplier hook should
be neutral. The behavioral change remains the fixed ordinary-edge additive
penalty only: `kGpsMomentumFixedEdgePenalty = 8.0f`.
- New telemetry is a compact `gps-momentum-summary` line emitted once per
completed tracked map-route query. It logs `callsA`, `callsB`, `callsTotal`,
`penaltyTotal`, global call counters, plus light route/result counts. The
counters are incremented directly in the two patched ordinary expansion caves.
- The raw route-record dump is disabled for this run to keep logs readable.
- The installed RED4ext log was truncated to zero before handing the game back.
- Next test routine: launch, load the fixed car save, open the map, plot the
usual sequence with a few seconds between each: side job, Sinnerman, Claire,
custom pin. More destinations are useful only after verifying the summary
lines are present.
## 2026-06-27 Momentum Penalty Test Installed
- The game was cold, so an enabled momentum-penalty test DLL was installed to
the Cyberpunk RED4ext plugin directory.
- Source flag for the installed test:
`kEnableGpsMomentumPenaltyInlinePatch = true`.
- The old highway multiplier hook is still compiled in, but
`solver_weights.bin` was written to `vanilla` (`1.0`) so highway preference is
neutral for this A/B. The active behavioral change should be only the fixed
ordinary-edge additive penalty.
- Active fixed penalty:
`kGpsMomentumFixedEdgePenalty = 8.0f`.
- Expected log lines on launch:
`momentum fixed-edge penalty active value=8 sites=ordinary-expansion` plus
`gps-momentum-penalty-inline-patch applied site=expand-list-a` and
`site=expand-list-b`.
- First test routine should be the fixed car save and usual route sequence:
side job, Sinnerman, Claire, custom pin. If stable, also test Violence,
The Gig/Cassius Rider, Aldecaldo/Badlands, and unfinished-highway
cyberpsycho route.
## 2026-06-27 Disabled Momentum Penalty Prototype
- Static disassembly of the full async solver relaxation cluster is updated.
`0x40ba58` has exactly four direct callers:
`0x40b175`, `0x40b4ac`, `0x40b6d5`, and `0x40bca7`.
- The ordinary adjacency walkers are still the clean first patch surface:
`0x40b304` reaches relax at `0x40b4ac`, and `0x40b540` reaches relax at
`0x40b6d5`. Both compute vanilla tentative `g` in `xmm6`, copy it to
`xmm3`, write `f = g + h` at `[rsp+0x20]`, and then call `0x40ba58`.
- Patch starts are `0x40b49a` for list A and `0x40b6c3` for list B. Each
replaces 23 bytes ending at the vanilla `0x40ba58` call and jumps to a
private executable cave. The cave reproduces the overwritten vanilla math,
adds a fixed nonnegative cost to `xmm6`, recomputes `f` from the penalized
`g`, calls vanilla `0x40ba58`, and jumps back after the overwritten block.
- Added a disabled-by-default RED4ext prototype in
`red4ext/EdgeWeightGPS/src/Main.cpp`:
`kEnableGpsMomentumPenaltyInlinePatch = false`,
`kGpsMomentumFixedEdgePenalty = 8.0f`.
- This first prototype is only a short-segment/churn lever. It adds a fixed
per-edge penalty on ordinary neighbor expansion, so routes that stair-step
through many small pieces become more expensive without making highways
cheaper. It does not yet compute turn angle, ramp transition cost, or
predecessor/current/neighbor geometry.
- The first prototype intentionally leaves the two non-ordinary relax paths
vanilla:
`0x40b175` appears to be a target/terminal candidate path, and `0x40bca7`
appears to be a special continuation/end-candidate path from `0x40bbbc`.
Patch them only after the ordinary expansion test proves stable.
- Build verification passed in toolbox:
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
- The prototype was not installed into the live game directory. To test later,
flip `kEnableGpsMomentumPenaltyInlinePatch` to `true`, rebuild, install only
after the game is cold, and compare against the fixed El Coyote route set.
## 2026-06-27 Routing Literature And Engine Research
- Added `./gps-routing-research.md` as the durable summary of the GPS
routing research pass.
- Main conclusion: stop treating "prefer highways" as the objective. It is a
useful proxy, especially for AutoDrive, but manual player GPS should optimize
momentum/corridor quality: low turn count, low short-segment churn, good
continuity, fewer awkward ramps/intersections, and later slope/airtime risk.
- Production engines split edge cost from transition/turn cost. Mirror that at
the native solver relaxation surface instead of using another broad highway
multiplier. Prefer nonnegative additive penalties first so the vanilla
A*/Dijkstra-like assumptions stay sane.
- The user explicitly allows external dependencies if they are justified.
Recommendation after research: do not link a full production engine yet.
Borrow OSRM/Valhalla/GraphHopper cost-model ideas now, and consider
RoutingKit or a tiny custom A* runner offline for graph/cost experiments.
- Full in-game engine replacement remains feasible but expensive. It requires
extracting/owning the full drivable graph, mapping live start/target points,
computing the path, and converting the result back into Cyberpunk route
handles/records. Revisit only if native relaxation cannot support the desired
model.
## 2026-06-27 Momentum/Corridor Direction
- The user reframed the target objective: player GPS should optimize for
keeping speed and momentum, not for legal driving or traffic-sim behavior.
The player often ignores speed limits, stop signs, and normal traffic flow;
in a fast car, any long clean corridor can be a high-speed corridor.
- Highway preference is still a useful proxy, and likely valuable for
AutoDrive, but it is not the true goal for manual player routing. Short
highway hops can lose time on ramps, deceleration, awkward merges, and
airtime. Some side streets, especially long straight corridors around
Heywood, can be better than nearby highways.
- Real bad-route signatures to target:
stairstepping, repeated 90-degree turns, stop-start intersection chains,
short-segment churn, unnecessary ramp/on-off transitions, high-conflict
traffic areas, and airborne or steep offramp/hill segments where the car loses
acceleration.
- This means the next model should be a momentum/corridor cost model, not a
pure road-class model:
distance plus turn penalties, intersection/conflict penalties, short-edge
churn penalties, ramp transition penalties, grade/airtime risk penalties,
with bonuses for long straight corridor continuity and modest
highway/arterial continuity.
- The proven inline patch at `0x40bb98` only sees the current node flags. It can
prove and tune `Highway` preference, but it cannot distinguish staying
straight through a corridor from diving through a ramp, hairpin, or
intersection chain. That limitation explains why highway-only tuning has a
narrow useful range and can become pathological.
- Next RE target should be the edge expansion/relaxation cluster, especially
`0x40b304`, `0x40b540`, and `0x40ba58`, where the solver has current and
neighbor handles and assembles the tentative `g` cost. Identify live registers
and struct fields for current state, neighbor state, positions, predecessor or
inbound direction, node flags, and degree/intersection hints.
- Feasibility tiers:
- Proven/easy: road-class multiplier at `0x40bb98`.
- Very feasible next: additive penalties at edge relaxation for short edges,
intersections, highway/non-highway churn, and slope if endpoint positions
are visible.
- Biggest likely win: turn-angle or corridor-continuity penalties if
predecessor/current/neighbor positions or equivalent direction vectors are
accessible.
- Possible but harder: airtime/grade risk based on vertical deltas and road
curvature.
- Probably not worth first: true velocity/acceleration state in A*/Dijkstra,
because that expands solver state and risks breaking assumptions.
- Keep the traffic-sim/spatial road-class work as supplemental data. It can
still label highway, arterial, road, pavement, and unknown areas, but it
should feed a broader cost function rather than act as the whole objective.
- Suggested prototype order after compaction:
1. Static analyze the edge relaxation cluster around `0x40b304` and
`0x40ba58`.
2. Build a low-noise trace or inline probe around route-windowed calls only;
do not reintroduce pathological hot-loop logging.
3. First patch nonnegative additive costs only, so vanilla A*/Dijkstra
ordering remains sane.
4. Start with short-edge and turn/continuity penalties, then add ramp churn
and slope/airtime penalties if the required fields are available.
5. Validate on the fixed El Coyote city-center set plus long cross-town
routes: Violence, No-Tell Motel, The Gig/Cassius Rider, Aldecaldo/Badlands,
and the unfinished-highway cyberpsycho route. Also verify AutoDrive is not
accidentally given a different cost surface from manual driving.
## 2026-06-27 Tuning Status And Safe Installed State
- The mod is disabled on disk for the next game launch. Active
`EdgeWeightGPS.dll` was renamed to
`EdgeWeightGPS.live-tunable-92287bd.dll.disabled` in the Cyberpunk RED4ext
plugin directory. `solver_weights.bin` was reset to vanilla `1.0`.
- This does not unload the DLL from a currently running game process; it only
guarantees the next cold start has no active EdgeWeightGPS plugin.
- Latest committed live-tunable solver patch before this note:
`92287bd Add live-tunable GPS solver highway weight`.
- Live tuning results from the El Coyote / city-center route set:
- `0.80`: plugin loaded and patched, but route handles were identical to
vanilla for side job and Claire; Sinnerman/custom changed only packed
metadata on the same handles.
- `0.70`: still effectively identical at the handle level. Side and Claire
matched vanilla/0.80; Sinnerman and custom were metadata-only changes.
- `0.55`: visibly crossed the threshold. User reported the custom pin did the
funky city-center hairpin again. Archived log shows post-reload route
records changing into 37-49 record alternatives, not just metadata tweaks.
- Interpretation: the useful tuning threshold for this start/target set is
between `0.70` and `0.55`, but `0.55` is already too aggressive for at least
the custom pin. Next candidate should be around `0.62` or `0.65`, then test a
wider set of long routes before choosing a default.
- New evidence logs:
`../logs/EdgeWeightGPS_solver080_3548.log`,
`../logs/EdgeWeightGPS_solver070_3900.log`,
`../logs/EdgeWeightGPS_solver055_hairpin_4156.log`.
## 2026-06-26 Confirmed Solver-Cost Patch
- We have unequivocally found the player GPS route-cost lever.
- The crashing RED4ext detour on `0x40bb40` has been replaced by an inline
patch at the road-tail block `0x40bb98`. The patch preserves vanilla
`node+0x93` behavior, checks `node+0x88 & 0x4000` for `Highway`, and then
multiplies highway lane cost by a tunable float.
- This inline patch avoids the register-clobber crash from the C++ detour.
Static disassembly showed the optimized caller reusing volatile state after
calling the tiny vanilla multiplier helper.
- The proof build used highway multiplier `0.35` and visibly changed player
map routes. It also caused over-aggressive behavior, including a bad custom
pin hairpin around the city-center roundabout, proving the hook is real but
that `0.35` is too low.
- The vanilla A/B build disabled only the inline multiplier patch and restored
obviously different route choices. User confirmed the custom pin returned to
the straight city-center roundabout route, while the `0.35` build took the
wrong hairpin.
- The live-tunable build enables the inline patch with default highway
multiplier `0.80` and polls
`red4ext/plugins/EdgeWeightGPS/solver_weights.bin` every 500 ms. The file is
exactly one little-endian float32 highway multiplier.
- The inline patch is deliberately broad across the vanilla road-tail branch:
reaching `0x40bb98` already means vanilla selected road-style modes `0/2/4`,
so we do not hard-gate on `solver+0xc4 == 2`. This avoids creating a manual
drive/autodrive disparity. Pedestrian mode `1` uses a different vanilla
branch and is not changed by this road-tail patch.
- Preset writer:
`../tools/write_solver_weights.py`. Preset binaries live in
`../presets/solver_weights/`: `vanilla`, `mild`, `default`, `strong`,
`proof-highway-cheap`, and `highway-expensive`.
- Evidence logs:
`../logs/EdgeWeightGPS_inline_highway035_changed_routes_1449.log` and
`../logs/EdgeWeightGPS_vanilla_ab_2120.log`.
## 2026-06-26 Static Update
- Installed RED4ext state is safe: the game plugin directory contains
`EdgeWeightGPS.dll.disabled`, not an active `EdgeWeightGPS.dll`.
- Latest committed source before this handoff update:
`7c2ef33 Hook full GPS solver node weights`.
- Current source has `kEnableGpsTrafficEdgeWeightPatch = false` and
`kEnableGpsLocalSearchHooks = false`.
- The real route search is confirmed at `0x44f054`, called from
`0x44cc7c`. It is an A*/Dijkstra-style loop: validate packed handles, push
start state, pop best open-list state, traverse adjacent handles, call
provider filter slot `+0x08`, call provider edge-cost slot `+0x10`, update
predecessor/cost, then materialize handles through `0x44eb68`.
- Both base and filtered cost-provider vtables point slot `+0x10` at
`0x44f838`. The provider vtable RVAs are still `0x2ae6120` (base) and
`0x2ae60f8` (filtered).
- `0x44f838` computes geometric edge distance and multiplies by
`provider[0x08 + ((neighborPoint[0x13] & 0x3f) * 4)]`.
- Base provider constructor `0x451158` fills all 64 class multipliers with
`1.0`. Filtered provider constructor `0x44b9b4` changes the vtable and
`0x44bda4` copies route masks/special zones into the provider, but ordinary
GPS route edge cost is still effectively geometric distance.
- `0x44f7bc` is the heuristic helper, not edge cost. It returns distance to the
target scaled by the constant at `0x1431ef3a0` unless the special route-shape
helper supplies an adjusted distance.
- `0x44eb68` only walks predecessor links and writes packed handles. The richer
final route records are produced afterward by `0x44cc7c`/query result code.
- The packed handles resolve into `VAND` navigation blobs from
`base\worlds\03_night_city\_compiled\default\navigation_*.streamingsector`,
not directly into `all.traffic_persistent`. Final route records can still be
joined to `worldTrafficLanePersistent.nodeRefHash`, but that is downstream of
the search.
- Added `../tools/analyze_vand_navigation.py` to decode VAND blobs from extracted
streamingsector JSON. On the three extracted samples:
`files=3 blobs=300 points=5059 coords=5046`, all masks were `0x0003`, and
dominant classes were `1`, `4`, `5`, `3`.
- Practical implication: traffic `maxSpeed` and `all.lane_connections`
probabilities are not the edge-cost surface. The next viable patch should
either hook `0x44f838` and classify edges spatially against precomputed
highway/arterial corridors, or patch the navigation VAND graph/classes after
extracting the relevant streamingsector resources.
## 2026-06-26 Spatial Edge-Cost Prototype
- Added `../tools/generate_spatial_edge_grid.py`, which combines
`../work/raw-segment-json/all.traffic_persistent.json` lane flags with
`../work/traffic-companions/json/all.lane_polygons.json` polygons.
- Generated
`red4ext/EdgeWeightGPS/src/GeneratedSpatialRoadGrid.hpp`. The grid is
332 x 361 cells at 32 m/cell, origin `(-4640, -7392)`, with final cell
counts `H=7574`, `R=19617`, `G=20`, `P=996`, `unknown=91645`.
- Added disabled-by-default runtime plumbing behind
`kEnableGpsSpatialEdgeWeightPatch = false`. When enabled, it attaches only
`GPSRouteProducer 0x44cc7c` and `GPSEdgeCost 0x44f838` unless the old verbose
local-search probe is also enabled.
- The patch reads search-state vectors as `(world X, height, world Y)`, samples
the current endpoint, neighbor endpoint, and midpoint, chooses the strongest
spatial road class, then applies a multiplier after native `0x44f838`
returns. Current test multipliers are highway `0.62`, road `1.0`,
GPS-only `1.20`, pavement `1.35`, unknown `1.05`.
- The patch intentionally does not rewrite VAND point class bits. Static
materialization code branches on those bits later, so changing them in data is
riskier than adjusting cost at the edge-cost vtable slot.
- Fixed `DetourGpsEdgeCost` logging: native `0x44f838` indexes the provider
cost table by neighbor point class, not source point class.
- Build verification passed in the Fedora toolbox:
`toolbox run -c 2077 ../tools/build_red4ext_shim.sh`.
- The resulting DLL remains uninstalled. Game install still has only
`EdgeWeightGPS.dll.disabled`, not an active plugin DLL.
- Follow-up live-tuning support adds
`red4ext/plugins/EdgeWeightGPS/spatial_weights.bin`: five little-endian
float32 values in highway, road, GPSOnly, pavement, unknown order. The plugin
polls this file on route-producer entry, so changing it and replotting a route
applies new weights without rebuild/relaunch.
- `../tools/write_spatial_weights.py` can write the active file or generate
presets. Generated presets live in `../work/spatial-weights/`:
`vanilla.bin`, `current.bin`, `highway-free.bin`,
`highway-expensive.bin`, and `surface-extreme.bin`.
Important caveat:
- Runtime logs show long visible GPS routes are decomposed into many
`0x44cc7c` local searches. The `ret_rva=0x70aa22` caller with
`query_f78=10` and `query_ptr98_rva=0x8d76c4` mostly produces tiny connector
searches, not the whole route. Do not gate the spatial patch only on that
caller unless a later test proves it covers the desired route segment.
- Live inversion test log:
`../logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`.
The plugin reloaded highway-free weights at `+74681ms`
(`H=0.05`, all others `19.0`), then highway-expensive weights at `+235135ms`
(`H=19.0`, all others `0.05`). The four repeated map routes after the flip
produced final `GPSQueryResultFetch 0x7094b8` route records that were exactly
identical to the pre-flip route records:
route 3 vs 7, 4 vs 8, 5 vs 9, and 6 vs 10 all had identical lane handles and
packed metadata.
- Practical conclusion: the spatial `0x44f838` detour is active and changes
many local route-producer edge costs, but it does not change the final
selected world-map route records for the tested player GPS routes. Treat this
hook as a local-search/connector lever, not the decisive full-route weighting
surface.
## Current Installed State
- Active RED4ext test plugin is installed:
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`.
- Older DLLs are preserved disabled as:
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled`
and `EdgeWeightGPS.dd1423b.dll.disabled`.
- Source defaults enable the inline road-tail patch:
`kEnableGpsNodeMultiplierInlinePatch = true`.
- Source defaults do not enable the old full-function detour:
`kEnableGpsMultiplierHooks = false`.
- Current behavior patch is the inline `0x40bb98` code-cave patch. It preserves
vanilla road cost except for highway lanes, whose cost is multiplied by the
current `solver_weights.bin` float. Installed default is `0.80`.
- `solver_weights.bin` lives beside the DLL and is hot-polled every 500 ms.
- The plugin log was truncated immediately before installing this build.
- Latest archived test log:
`../logs/EdgeWeightGPS_vanilla_ab_2120.log`.
- A cold restart is required after installing a new DLL; changing
`solver_weights.bin` after that is hot-reloaded.
## 2026-06-26 Full Async Solver Findings
- Static route pipeline:
`0x8d20d4` map route submit -> `0x70a42c` query manager ->
`0x70a570` dispatch -> `0x8d17d8`/`0x8d1880` async enqueue.
- Worker loop around `0x126c06` consumes queued route requests from
`routeSystem+0x47c0`.
- Worker calls either `0x818928` directly or calls `0x883cd8` first, then
`0x818928`. Successful results pass through `0x11f5f60`.
- `0x883cd8` resolves/projects start and end candidates with helpers including
`0x198fb8`, `0x886958`, and `0x197b04`, then calls `0x1caa7a0`.
- `0x1caa7a0` initializes the full async traffic solver: it sets
`solver+0x10 = 1`, stores route mode at `solver+0xc4`, sets route masks at
`solver+0xc0/+0xc2`, copies candidate arrays into `solver+0x70/+0x80`, and
calls `0x88367c`.
- `0x88367c` marks start candidate lane/node records with `node+0x9a |= 1`,
marks end candidates with `node+0x9a |= 2`, computes initial costs at
node-state `+0x10/+0x14`, and queues nodes into open list `solver+0xd0`.
- `0x818928` calls `0x8189f0`; when complete, `0x818ba8` builds the output
route records.
- `0x8189f0` advances with `0x40ade4`, then materializes output with
`0x818ba8`.
- `0x40ade4` is the true full-route solver advance loop. It pops items from
`solver+0xd0` while `solver+0xdc != 0`, calls expansion helpers including
`0x40b304` and `0x40b540`, then marks state byte `+0x22 = 2`.
- `0x40b304` and `0x40b540` expand neighbor lists from lane/node records at
`solver+0xf8 + index*0xa0`.
- Neighbor admissibility is `0x40b774`, which checks flags at `node+0x88`:
pass iff `(solver+0xc0 & flags88) != 0` and
`(solver+0xc2 & flags88) == 0`.
- Main cost formula in `0x40b304`:
`g = current.g + delta * 0x40bb40(solver,node) * directionMultiplier`;
heuristic is straight-line distance to the solver target position; `f = g+h`.
- `0x40ba58` is the relax/update helper. It writes candidate `f` to node-state
`+0x14`, `g` to `+0x10`, progress to `+0x18`, predecessor state to `+0x1e`,
marks state byte `+0x22 = 1`, and pushes to open list `solver+0xd0`.
- Vanilla `0x40bb40` is the key full-solver per-node multiplier. For driving
modes it treats `Road` (`0x0010`) as `1.0` or `1.2`, with an extra `1.1`
multiplier if byte `node+0x93 == 1`. It does not special-case `Highway`
(`0x4000`).
- Vanilla non-road fallback uses the float table at `0x3154d28`:
`10, 6, 2, 0, 4, 2.5, 1.5, 0`.
- Vanilla `0x40bb00` auxiliary multiplier returns `1.1` for most road cases,
or uses the table at `0x3154d38` (`4, 2.5, 1.5, 0`) for one mode-2/retry
branch.
- Practical inference: the full solver already has a real edge-cost surface,
but vanilla highways are merely roads. The installed build patches that exact
multiplier instead of the earlier local VAND search callback.
## New Toolbox Tools
The Fedora toolbox `2077` now has:
- `rizin` 0.7.4
- `python3-capstone` 5.0.5
- `python3-pefile` 2024.8.26
If adding Python-only tooling, create/use a venv and maintain `requirements.txt`
instead of one-off pip installs.
## Active Probe Configuration
In `red4ext/EdgeWeightGPS/src/Main.cpp`:
- `kEnableGpsMultiplierHooks = true`
- `kEnableGpsProviderClassPatch = false`
- `kEnableGpsProviderClassPatchTrace = false`
- `kEnableGpsTraceHooks = true`
- `kEnableGpsQueryLifecycleHooks = false`
- `kEnableGpsRouteJobLifecycleHooks = false`
- `kEnableGpsRouteJobStartTrace = false`
- `kEnableGpsQueryResultTraceHooks = true`
- `kEnableGpsSpatialEdgeWeightPatch = false`
- `kEnableGpsLocalSearchHooks = false`
- `kEnableRouteUiTraceHooks = false`
If rebuilt with the current defaults, active hooks are focused map-route submit,
final route-result fetch tracing, and the full solver multiplier hook at
`0x40bb00`/`0x40bb40`. The spatial edge-cost patch requires
`kEnableGpsSpatialEdgeWeightPatch = true`. The full local search/cost hooks below require
`kEnableGpsLocalSearchHooks = true`:
- query lifecycle:
- `GPSQuerySubmit 0x70a42c`
- `GPSQueryDispatch 0x70a570`
- `GPSQueryResultFetch 0x7094b8`
- `GPSQueryStatus 0xaa5704`
- `GPSSearch 0x44f054`
- `GPSRouteProducer 0x44cc7c`
- `GPSResolveHandle 0x44e1a8`
- `GPSEdgeCost 0x44f838`
- filtered provider filter `0x44ff68`
- base provider filter `0x450b08`
- full solver auxiliary multiplier `0x40bb00`
- full solver node multiplier `0x40bb40`
Async route-job hooks (`0x8d17d8`, `0x126b28`, `0x883cd8`,
`0x11f5f60`, `0x818ba8`) are split behind
`kEnableGpsRouteJobLifecycleHooks` and currently disabled to keep the next
run focused on solved route result records plus local search/cost stats.
The filter probe records pass/fail totals by GPS point class and by bits in
`point + 0x10`, tested against provider masks at `+0x108` and `+0x10a`.
## Why This Probe Exists
Data and behavior patches tested so far:
- Traffic `maxSpeed` patches affected NPC freeway speed but not GPS route
choice.
- Lane connection probability patches did not change GPS route choice.
- Global cost-table patch produced weird routing but mostly confirmed we were
near the solver, not a clean highway preference knob.
- Provider class override patches fired correctly but produced no perceptible
route change after preserving vanilla class `14`.
Static disassembly clarified the provider split:
- Provider vtable slot `+0x08` is an admissibility filter, not cost.
- Provider vtable slot `+0x10` is geometric edge cost, multiplying distance by
`provider[0x08 + class * 4]`.
- We patched only slot `+0x10` inputs. If slot `+0x08` filtering dominates the
candidate graph, those cost changes can fire and still not visibly steer GPS.
## Important Native Findings
GPS pipeline landmarks:
- shared query submit: `0x70a42c`
- query dispatch: `0x70a570`
- route producer: `0x44cc7c`
- local search loop: `0x44f054`
- packed-handle resolver: `0x44e1a8`
- edge cost: `0x44f838`
- query result fetch: `0x7094b8`
The search loop is A*/Dijkstra-like:
- initialize/open list with start node
- pop best node
- check destination handle
- traverse adjacent lane handles
- call provider filter
- call provider cost
- update candidate cost/best predecessor
Provider details:
- Base provider vtable RVA: `0x2ae6120`
- Filtered provider vtable RVA: `0x2ae60f8`
- Base provider constructor `0x451158` fills 64 class multipliers with `1.0`
and sets mask `+0x108` to `0xffff`.
- Filtered provider constructor `0x44b9b4` changes vtable to `0x2ae60f8`.
- Filtered provider commonly has class `14 = 0.05`; preserve this unless
deliberately testing it.
Route result records:
- `0x7094b8` output records are 0x28-byte route segment records.
- `h00` in those records matches `worldTrafficLanePersistent.nodeRefHash`.
- Route records can be joined to `../work/raw-segment-json/all.traffic_persistent.json`.
- The low byte of route-record `u08` is not the same as the search point class.
- The log's human wall timestamp has a millisecond rollover bug around second
boundaries. Use the `+Nms` elapsed field for ordering and durations.
Packed-handle resolver:
- `0x44e1a8` decodes the packed route handle used by the search/materialization
side:
- low 20 bits: point index
- bits 20..47: segment index
- high bits: generation/check value
- It resolves the handle into a 0x68-byte segment record and a 0x14-byte point
record. The point record's `+0x13 & 0x3f` is the search-side class consumed by
`0x44f838`.
- Live logging corrected the selected post-call return RVAs to:
- `0x44cb9e`: 0x38 intermediate-record builder. It writes packed handle,
`point+0x10` mask, `point+0x13` class, and coordinates from
`segment+0x18`.
- `0x44dd97`: geometry/materialization path. It walks the `segment+0x28`,
`segment+0x30`, and `segment+0x38` arrays for the resolved point.
- The current probe opens a five-second resolver trace window before the
original `0x70a42c` submitter runs when the caller is `0x8d20d4` and
`query_fcc=5`. Inside that window it logs selected resolver callsites with
per-return-site caps instead of spending the whole budget on startup noise.
- Each resolver line includes the decoded handle, segment/point pointers,
segment pointer fields `+0x08` through `+0x38`, raw segment bytes, raw point
bytes, raw `segment+0x08` metadata, the `segment+0x28` point-index record,
and small raw dumps from `segment+0x20`, `+0x30`, and `+0x38`. The goal is to
determine whether the selected-path segment still carries, or points to, the
traffic lane hash/resource flags before the final 0x28 route records are
emitted.
## Latest 23:08 Test Result
The user clicked:
- 23:08 continue on main menu
- 23:30 space to continue
- 23:46 map open
- 23:56 side job
- 24:06 Sinnerman
- 24:14 Claire
- 24:21 custom
- 24:30 Aldecaldo camp
- 24:47 far gig east
- 25:03 Violence
- 25:10 cyberpsycho unfinished highway
Use:
```bash
python3 ../tools/summarize_gps_route_records.py \
--traffic-json ../work/raw-segment-json/all.traffic_persistent.json \
../logs/EdgeWeightGPS_query_route_probe_2308.log
```
Important result table:
- qid 1: startup/minimap route, 18 records, 50 ms, 1216.5 pavement length.
- qid 2: side job, 12 records, 32 ms, 578.6 pavement length.
- qid 3: Sinnerman, 23 records, 45 ms, 897.4 pavement, 160.4 highway,
89.8 road.
- qid 4: Claire, 18 records, 34 ms, 1216.5 pavement.
- qid 5: custom, 17 records, 44 ms, 1006.3 pavement, 241.0 highway,
38.0 road.
- qid 6: Aldecaldo camp, 80 records, 325 ms, 5853.5 road, 1492.9 highway,
1111.5 pavement, 24.6 gpsonly.
- qid 7: far east gig, 81 records, 144 ms, 5086.2 road, 1523.0 highway,
1111.5 pavement, 24.6 gpsonly.
- qid 8: Violence, 55 records, 97 ms, 1991.5 pavement, 358.5 highway,
86.1 road.
- qid 9: cyberpsycho unfinished highway, 58 records, 147 ms, 2657.4 pavement,
519.0 highway, 113.2 road, 56.7 gpsonly.
All 362 route-record handles matched traffic lane hashes in the extracted
resource.
Local search/provider aggregate from this run:
- 159 searches, 4036 provider filter calls, only 3 filter failures.
- Filter pass classes: `3:3114`, `5:451`, `15:310`, `1:116`, `4:42`.
- Edge source classes: `3:3244`, `5:487`, `15:318`, `1:117`, `4:58`.
- Edge return RVAs: `0x44f457:4033`, `0x44f629:151`,
`0x8d74d3:30`, `0x8d76b0:10`.
Inference:
- Provider vtable slot `+0x08` filtering is almost not pruning these route
searches, so it is not the dominant reason class-cost patches failed to
visibly steer GPS.
- Search-side edge classes are only `{1,3,4,5,15}` in this run. Final emitted
route-record classes include `{0,1,2,3,4,5,7,8,9}` and class 7/8/9 are
highway-heavy. Therefore final route-record `u08` low byte and search point
`point+0x13` class are different domains.
## Latest 46:50 Resolver Test Result
Archived log:
`../logs/EdgeWeightGPS_resolve_handle_probe_4650.log`.
User timing:
- 46:50 Continue on main menu
- 47:23 Space to continue
- 47:35 map open
- 47:43 side job
- 47:51 Sinnerman
- 47:57 Claire
- 48:09 custom
- 48:2x Aldecaldo camp
- 48:57 game cold / `OnExit`
Route summary:
- routes=6, records=170, matched route records to lane hashes=170/170.
- qid 1: startup/minimap, 18 records, 43 ms, 1216.5 pavement.
- qid 2: side job, 12 records, 34 ms, 578.6 pavement.
- qid 3: Sinnerman, 23 records, 45 ms, 897.4 pavement, 160.4 highway,
89.8 road.
- qid 4: Claire, 18 records, 35 ms, 1216.5 pavement.
- qid 5: custom, 19 records, 45 ms, 1006.3 pavement, 343.4 highway,
38.0 road.
- qid 6: Aldecaldo, 80 records, 340 ms, 5853.5 road, 1492.9 highway,
1111.5 pavement, 24.6 gpsonly.
Resolver sample findings:
- The first resolver probe captured only the startup guard window because the
guessed return RVAs were post-call-off by a few bytes.
- It still proved `GPSResolveHandle 0x44e1a8` attached successfully.
- Actual resolver returns in the first 64 logged samples:
`0x44dd97:57`, `0x44cb9e:7`.
- Resolver point classes in those samples: `4:60`, `5:4`.
- The 0x68 segment header contains generation/counts/pointers; final
`nodeRefHash` values are not inline in those 0x68 bytes.
- Static disassembly shows `segment+0x10` is the 20-byte point array,
`segment+0x18` is the coordinate array, and the materializer indexes
`segment+0x28` by `pointIndex*12`.
## Next Work
- Pivot away from the spatial `0x44f838` cost detour for world-map routing.
It is proven active but does not alter final selected route records under
extreme inverse weights.
- Statically disassemble the caller chain around the full map-route submit and
result path: `0x8d20d4`, `0x70a42c`, `0x70a570`, `0x7094b8`, `0x520783`,
and the async route-service cluster around `0x8d17d8` through `0x8d49xx`.
- Identify where the final 0x28 route records are selected or copied before
`0x7094b8` returns them. The current evidence says that is closer to the real
full-route weighting/selection surface than the local `0x44cc7c` searches.
- Avoid post-`0x7094b8` rewriting unless every upstream option fails; that would
likely only change displayed path records and risks desynchronizing route
instructions from the actual planner.
## Useful Commands
Build/install:
```bash
toolbox run -c 2077 ./tools/build_red4ext_shim.sh
toolbox run -c 2077 ./tools/install_red4ext_shim.sh
```
Clear plugin log:
```bash
truncate -s 0 '/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log'
```
Inspect current plugin log:
```bash
tail -n 240 '/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log'
```
Disassemble with rizin in toolbox:
```bash
toolbox run -c 2077 rizin -q -A '/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/Cyberpunk 2077/bin/x64/Cyberpunk2077.exe'
```
## Caution
- Do not revert user changes or old untracked logs unless explicitly asked.
- Commit early/often.
- Do not install Python packages one by one with pip; use `requirements.txt`.
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 671 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 941 KiB

+108
View File
@@ -0,0 +1,108 @@
# GPS Momentum Field Tests
Current patch surface: fixed additive penalty on ordinary GPS solver edge
expansion, patched at the two ordinary relaxation callsites feeding
`0x40ba58`. Live tuning is through `momentum_weights.bin`.
## 2026-06-27 North Watson To Dogtown/Badlands
Starting context: player in North Watson near the motel/Cassius area. The two
main comparison routes fit in the same map viewport:
- The Damned / Dogtown, south into Pacifica.
- Fuel Station fast travel point in the southwest Badlands/Biotechnica flats.
Screenshots:
- `../logs/screenshots/the-damned-and-fuel-station-0.webp`
- `../logs/screenshots/the-damned-and-fuel-station-8.webp`
- `../logs/screenshots/the-damned-and-fuel-station-80.webp`
Telemetry log:
- `../logs/EdgeWeightGPS_live_momentum_ab_8_0_80.log`
Results:
| Route | Penalty | Expansion calls | Route records | Observed route |
| --- | ---: | ---: | ---: | --- |
| The Damned | 8 | 1,057,410 | 78 | Similar to vanilla; threads city blocks and a side highway. |
| The Damned | 0 | 1,110,243 | 87 | Similar visible corridor, slightly more route-record churn. |
| The Damned | 80 | 1,010,035 | 70 | Visibly smoother highway corridor, avoids City Center stair-stepping. |
| Fuel Station | 8 | 296,976 | 89 | Uses City Center roundabout/city threading. |
| Fuel Station | 0 | about 308k-314k | 90-92 | Similar visible corridor to 8. |
| Fuel Station | 80 | about 345k-347k | 77-78 | Converges onto the smoother highway corridor before splitting south. |
Interpretation:
- `0` and `8` are close visually in this location, despite small telemetry
changes.
- `80` is a strong proof value: it changes the coarse corridor and reduces
route-record count for the tested long routes.
- This supports the main hypothesis that a fixed per-segment additive penalty
can optimize for smoother player-driving corridors, not merely highway class.
## 2026-06-27 Broad 80 Smoke
Telemetry log:
- `../logs/EdgeWeightGPS_momentum80_broad_smoke.log`
- `../logs/EdgeWeightGPS_momentum80_drive_validation.log`
User reported no bad routes after probing:
- Claire routes differently than nearby Sinnerman, choosing a smooth Japantown
highway leg.
- Sinnerman still cuts through City Center, plausibly because that corridor is
appropriate for that destination.
- Short local routing to Cassius remains fine.
- Heywood routes remain fine and may avoid some stair-stepping.
- Routes near highways but not traffic-feasible still detour appropriately.
- One NCPD bounty used a road the user had not previously seen GPS select, and
it looked like a good fit.
Interpretation:
- No obvious local-route breakage was found at `80`.
- `80` was not immediately pathological in the sampled routes and later became
the working default after drive validation.
- Higher values still need caution; `160` later proved too high.
Drive validation at `80`:
- The Damned / Dogtown route drove cleanly in the Outlaw at sustained high
speed.
- The route surfaced a back/elevated highway through Japantown/Westbrook that
the user had not seen vanilla GPS select before.
- Live minimap recalculation after a deliberate detour still worked.
- Claire route also drove cleanly. One ramp/hill surprised the driver, but the
issue was road unfamiliarity at full speed, not bad routing.
Conclusion after the drive test: `80` is the working default.
## 2026-06-27 40/160 Bounds
Telemetry log:
- `../logs/EdgeWeightGPS_momentum40_160_tuning.log`
At `40`, the highlighted routes improved only partially:
- Claire still used the Sinnerman/City Center path instead of the smoother outer
road.
- Sinnerman remained sensible.
- The near-highway case remained acceptable.
- The NCPD bounty took the smoother outer City Center road, but retained a
Watson stair-step that `80` avoided.
At `160`, overcorrection appeared:
- Claire showed a questionable hairpin.
- The Damned produced a fallback/straight-line style route instead of a usable
road route.
- The Gig/Cassius local access got worse, asking for a backtrack and hairpin
instead of a simple nearby approach.
- NCPD bounty regressed to stair-stepping.
Conclusion: `160` is too high. The useful bracket is roughly `40 < default <
160`, with `80` currently best validated by map inspection and driving.
+435
View File
@@ -0,0 +1,435 @@
# GPS Routing Research Notes
Current date: 2026-06-27.
This note summarizes the research pass prompted by the realization that "prefer
highways" is a proxy, not the goal. The actual player-facing goal is a route
that feels fast and drivable in Cyberpunk 2077, especially when the player is
driving aggressively and ignoring normal traffic rules.
The conclusion is that the next patch should not be another broad highway
multiplier. Production route engines and routing papers treat route quality as
multi-criteria: edge traversal cost, transition/turn cost, road hierarchy,
intersection delay, and user preferences are separate signals. For manual
Cyberpunk driving, the best analogue is a momentum/corridor model: prefer
routes that preserve speed and minimize decision points, sharp turns,
short-segment churn, and awkward ramp transitions.
## Sources Reviewed
- Bast et al., "Route Planning in Transportation Networks":
https://arxiv.org/abs/1504.05140
- Jiang and Liu, "Computing the Fewest-turn Map Directions based on the
Connectivity of Natural Roads": https://arxiv.org/abs/1003.3536
- Sacharidis and Bouros, "Routing Directions: Keeping it Fast and Simple":
https://arxiv.org/abs/1309.4396
- Hlineny and Moris, "Generalized Maneuvers in Route Planning":
https://arxiv.org/abs/1107.0798
- Dibbelt, Strasser, and Wagner, "Fast Exact Shortest Path and Distance Queries
on Road Networks with Parametrized Costs": https://arxiv.org/abs/1509.03165
- OSRM profile docs:
https://github.com/Project-OSRM/osrm-backend/blob/master/docs/profiles.md
- OSRM car profile:
https://github.com/Project-OSRM/osrm-backend/blob/master/profiles/car.lua
- GraphHopper profile docs:
https://github.com/graphhopper/graphhopper/blob/master/docs/core/profiles.md
- Valhalla turn-by-turn API costing docs:
https://valhalla.github.io/valhalla/api/turn-by-turn/api-reference/
- Valhalla auto costing implementation:
https://github.com/valhalla/valhalla/blob/master/src/sif/autocost.cc
- RoutingKit README:
https://github.com/RoutingKit/RoutingKit
- OSRM license:
https://github.com/Project-OSRM/osrm-backend/blob/master/LICENSE.TXT
- Valhalla license:
https://github.com/valhalla/valhalla/blob/master/COPYING
- GraphHopper license:
https://github.com/graphhopper/graphhopper/blob/master/LICENSE.txt
## High-Level Findings
### There Is No Single "Good GPS" Objective
The route-planning survey by Bast et al. frames road routing as shortest-path
search over nonnegative edge weights, then shows that most practical complexity
comes from speed, preprocessing, traffic, and multiple criteria. It explicitly
notes there is no single best route-planning method because systems are judged
by different tradeoffs: query time, preprocessing effort, space, robustness to
changing inputs, and model quality.
For our mod, that means "shortest distance" and "prefer highways" are both too
thin. A better route is the minimum of a cost function we choose. The game
already appears to run an A*/Dijkstra-style solver with a geometric heuristic
and nonnegative edge costs. Our task is not to replace that algorithm; it is to
feed it a better cost surface.
### Production Engines Separate Edge Cost From Transition Cost
OSRM profiles define way speed/rate/weight separately from turn processing.
The docs say speed should estimate actual travel time, while `rate` or `weight`
should encode preference; changing speed to express preference skews duration
estimates. OSRM also has a `process_turn` stage that can assign turn penalties
by angle, traffic signals, obstacles, U-turns, road classes, and intersection
context.
Valhalla does the same separation. Its auto costing computes edge cost from
time, distance preference, density, surface, tolls, alley/service/track factors,
and highway preference. Transition cost then adds turn/intersection behavior:
OSRM-style turn duration, stop impact, turn type, ramp transition cost,
roundabout cost, and U-turn penalties. This is exactly the split we should
mirror: road class is only one part of the edge cost; turn and transition costs
are a separate part of the route's feel.
GraphHopper's profile model reinforces this. It exposes road prioritization,
turn costs, speed, priority, and `distance_influence` as separate tuning
surfaces. Its docs also warn that reusing preprocessed heuristic data can
require new weights to be greater than or equal to base weights to preserve
correctness. That maps to our A* concern: negative bonuses and broad discounts
can make a geometric heuristic less trustworthy. Nonnegative additive penalties
are safer than "make good edges cheaper" as a first serious patch.
### Human-Friendly Routes Minimize Turns And Decision Points
Jiang and Liu's fewest-turn paper is directly relevant even though Cyberpunk is
not normal driving. The paper argues that people often choose routes by road
continuity rather than segment-by-segment geometric distance. It highlights
fewer turns as lower cognitive burden and explicitly connects fewer turns to
fewer slow-down/speed-up events.
The important concept is "natural roads": sequences of segments joined by good
continuity. A curve along a ring road is not necessarily a "turn" in the human
navigation sense; changing from one road/corridor to another is the turn. The
paper used a 45-degree deflection threshold when generating natural roads, but
the exact threshold is less important than the idea: penalize route changes and
poor continuity, not curvature by itself.
Sacharidis and Bouros extend this into a useful tradeoff model. They define
route length and route complexity separately, with complexity as turn/road-change
cost. They then discuss near-fastest routes that are as simple as possible and
near-simplest routes that are as fast as possible. This is a good conceptual
target for us: do not minimize turns at all costs, and do not minimize distance
at all costs. Prefer a near-fast route that is much simpler and smoother.
### Maneuvers Are State-Dependent
Hlineny and Moris model maneuvers such as turn prohibitions, traffic light
delays, roundabouts, and multi-edge restrictions. Their important point for us
is that a maneuver depends on how a vertex was reached, not only the current
vertex. A plain Dijkstra state of "best cost to node" is insufficient when
cost depends on a sequence of prior edges. Their M-Dijkstra expands state to
vertex-plus-context.
We probably should not implement a full context-expanded solver inside a game
binary patch. But the paper explains why our next hook needs predecessor or
incoming-direction information. A turn penalty computed only from the current
node flags is inadequate. The local RE already found the game keeps predecessor
state at solver-state `+0x1e`, and the relax call receives current state,
neighbor state, and candidate state. That is enough for a practical one-step
turn/corridor approximation without redesigning the whole solver.
### Speedups Are Mostly Not The Problem Here
Modern routing engines use A*, bidirectional search, contraction hierarchies,
landmarks, arc flags, and related preprocessing to answer large road-network
queries quickly. This matters academically, but not as the primary mod target.
Night City's graph is small enough that the game already computes paths during
play. The player's complaint is not "the route takes too long to compute"; it is
"the route is dumb."
That said, we should respect solver assumptions. The game uses a straight-line
heuristic in the full async solver. If we add only nonnegative penalties to `g`
and to the candidate `f = g + h`, the heuristic remains conservative relative
to the original distance-like base. If we add negative bonuses or deep highway
discounts, we may make the heuristic too optimistic or otherwise distort
ordering. The proof highway multiplier worked, but the 0.55/0.35 tests already
showed how quickly discounts become pathological.
## Open-Source Routing Engines
It is viable to use open-source routing software, but there are three different
levels of "use":
- Use an engine's ideas and cost model.
- Use an engine offline to preprocess or classify Night City.
- Link or run an engine as the actual in-game route planner.
The first two are practical. The last one is possible, but much more invasive
than patching the native solver.
### Candidate Engines And Libraries
RoutingKit is the most interesting native-library candidate. It is a C++ route
planning library under a BSD-2-Clause license. Its README emphasizes
customizable contraction hierarchy support, flexible arc weights, and
millisecond-or-better queries on continental-scale data. It exposes direct
graph, index, and query APIs. If we wanted a true replacement solver inside a
RED4ext DLL, RoutingKit is the most plausible starting point.
OSRM is a high-performance C++ routing engine and service under a permissive
BSD-style license. It has excellent production lessons: profile-based cost
modeling, turn processing, road classes, and CH/MLD preprocessing. However, it
is built around its own extraction/preprocessing pipeline and OpenStreetMap-like
data. Embedding OSRM directly would likely mean generating OSRM-compatible data
from Cyberpunk resources, running preprocessing, shipping those artifacts, then
calling libosrm or a local service.
Valhalla is a C++ routing engine under the MIT license. Its costing model is
especially useful because auto routing separates edge cost from transition cost,
includes highway preference as a mild factor, and explicitly handles ramps,
U-turns, stop impact, density, alleys, service roads, surfaces, and closures.
Direct embedding has the same issue as OSRM: Valhalla expects its own graph
tiles and attribution model.
GraphHopper is Apache-2.0 and has a strong custom model/profile system, but it
is Java. It is useful as a design reference and potentially as an offline
analysis tool, but bundling a JVM or running a Java service beside Cyberpunk is
not a good first mod architecture.
Generic graph libraries such as Boost.Graph or LEMON are options if we only
need Dijkstra/A* and want to own the data model ourselves. They are lighter than
OSRM/Valhalla but do not bring road-routing domain logic; we would still write
the road/corridor cost model.
### Integration Problem
External engines need a graph they own. Cyberpunk's GPS solver operates on
internal route/node records, packed handles, and final route records. Linking an
engine does not solve either boundary.
To replace the solver, we need:
- Extract or observe the full drivable graph: directed edges, coordinates,
flags/classes, turn/intersection topology.
- Convert that graph into the engine or custom graph format.
- Map live start and target positions to graph nodes.
- Compute a route.
- Convert the chosen path back into handles/records the game expects, or hook
late enough to draw and consume a custom route.
- Keep manual GPS, AutoDrive, pedestrian, quest-pin, and custom-pin behavior
sane.
This is a bigger RE surface than modifying native edge relaxation. It may be
worth it if the native solver proves too rigid, but it is not the cheapest next
step.
### Practical Ways To Use Engines
Best near-term:
- Use Valhalla, OSRM, and GraphHopper as cost-model references.
- Implement their proven split inside the native solver hook: edge cost plus
transition cost plus mode/user preference.
- Use additive nonnegative penalties first.
Best offline/precompute:
- Extract VAND/navigation and traffic companion data.
- Build a standalone graph in the repo.
- Use RoutingKit or a small custom A* to experiment rapidly outside the game.
- Generate baked labels: corridor id, natural-road id, intersection complexity,
ramp/connector classification, slope/airtime risk, and road-class
confidence.
- Feed those labels back into the RED4ext patch as compact lookup tables.
Possible long-term replacement:
- Use RoutingKit or a custom solver in-game.
- Hook full solver output building around `0x818ba8` or later result
materialization.
- Emit game-native route records from our computed node/handle path.
This replacement path is feasible only after we can round-trip a native route:
decode a vanilla route into graph handles, reproduce it externally, then inject
the same route back without changing behavior.
### Recommendation
Do not link a full production engine yet. Use RoutingKit or a small custom graph
runner offline to prototype and validate the cost function, then patch the
native solver relaxation/cost surface. The native patch has hard game
integration for free: target selection, start projection, route output,
minimap/world-map drawing, and AutoDrive consumers.
Revisit full engine integration if:
- Predecessor/current/neighbor geometry is inaccessible.
- Native route output cannot express the desired route.
- The cost model requires expanded solver state that the game's one-label node
state cannot support.
## Implications For Cyberpunk 2077
### Manual Player GPS Should Optimize Momentum
A real GPS assumes legal speed, stop signs, lights, congestion, safety, and
human compliance. A Cyberpunk player in a Caliburn does not. The manual-driving
cost model should assume:
- Posted speed is weak evidence. The player can exceed it.
- Traffic simulation metadata is useful but secondary. The player often cuts
through or around traffic.
- Highway classification is useful but not decisive. Short freeway hops can be
worse than a straight arterial or side-street corridor.
- Route smoothness matters because every hard turn, ramp dive, or intersection
chain costs player speed and control.
- Roads with good continuity should be preferred even if they are not highways.
### AutoDrive Should Remain More Traffic-Like
AutoDrive behaves more like an NPC/legal driver than the player does. It should
benefit more from road hierarchy, speed limits, traffic-sim classes, and
avoiding odd local shortcuts. Manual drive and AutoDrive probably should share
the same hook site if possible, but they may need different parameter presets.
The previous warning still stands: do not accidentally apply a manual-only
surface to AutoDrive while leaving manual GPS on another surface, or vice versa,
unless the mode split is deliberate and documented.
## Recommended Cost Model
The next prototype should use additive penalties at the solver edge-relaxation
site rather than more highway discounts.
Base:
```text
candidate_g =
vanilla_g
+ short_segment_penalty
+ turn_or_continuity_penalty
+ intersection_complexity_penalty
+ ramp_transition_penalty
+ grade_or_airtime_risk_penalty
+ optional_road_class_penalty
```
Where:
- `vanilla_g` is the game's current `current.g + delta * nodeMultiplier *
directionMultiplier`.
- `short_segment_penalty` discourages stair-stepping through many tiny edges.
- `turn_or_continuity_penalty` is based on predecessor/current/neighbor angle,
not on road class alone.
- `intersection_complexity_penalty` approximates stop-start risk and decision
points, probably from node degree, flags, or short connector density.
- `ramp_transition_penalty` applies when moving highway <-> non-highway through
a short/angled connector.
- `grade_or_airtime_risk_penalty` applies when vertical delta or local shape
indicates a steep launch/drop. This is lower priority until we prove the
height fields are stable.
- `optional_road_class_penalty` can still mildly prefer highways/arterials, but
should be subordinate to continuity.
Avoid negative "bonuses" in the first real version. If a road is desirable, make
its alternatives pay an added cost. This preserves a safer A*/Dijkstra-style
cost surface and avoids the pathological over-attraction seen with highway
discounts.
## Candidate Patch Sites
The proven but blunt hook:
- `0x40bb98`: road-tail multiplier block in `0x40bb40`.
- It sees `solver` and `node` and can inspect flags such as `Highway`.
- It cannot see predecessor/current/neighbor geometry, so it cannot distinguish
a good corridor from a bad ramp hairpin.
The better next hook:
- `0x40b304` and `0x40b540`: neighbor expansion helpers.
- They compute vanilla tentative `g`, straight-line heuristic `h`, and then
call `0x40ba58`.
- At the `0x40ba58` callsites, the live context includes solver pointer,
current state, neighbor state, current node, neighbor node, candidate state,
route mode, progress/delta, and enough vector data for one-step geometry.
The likely patch shape:
- Inline patch at the relax path, not a C detour on a tiny helper.
- Adjust candidate `g` and candidate `f` by the same nonnegative penalty before
vanilla `0x40ba58` compares against `neighbor_state+0x14` and writes
`neighbor_state+0x10`.
- Keep the first build low-noise. Logging every edge expansion is pathological;
route-window sampling or aggregate counters are enough.
## First Prototype Parameters
Start conservative. The goal is to prove the model changes routes in the right
direction without causing highway hairpins or search blowups.
Suggested first-pass terms:
- Short segment churn:
- If edge distance/progress delta is under roughly 25-40 meters, add a small
fixed penalty or a penalty proportional to the missing length.
- Turn continuity:
- If predecessor position is available, compute normalized vectors
`prev -> current` and `current -> neighbor`.
- No penalty for very straight movement.
- Mild penalty for shallow deflection.
- Stronger penalty for 60-120 degree turns.
- Very strong penalty for U-turn-like reversals unless near origin/destination.
- Corridor continuation:
- Treat same-road or good-continuity transitions as neutral, not discounted.
- A curved ring/highway should stay cheap if it is continuous.
- Ramp churn:
- Penalize highway/non-highway transitions when the connector is short and the
turn angle is high.
- Do not penalize a long smooth ramp the same way.
- Intersection complexity:
- Penalize nodes with many outgoing options or multiple short connectors if
the relevant fields can be identified.
- Slope/airtime:
- Start as logging-only unless height deltas clearly correlate with known bad
places. Add as a later penalty.
## Testing Plan
Keep the route set from previous testing:
- El Coyote / city-center custom pin, because it exposed the bad hairpin.
- Side job, Sinnerman, and Claire from the fixed car save.
- Violence / No-Tell Motel cross-city routes.
- The Gig / Cassius Rider long Watson route.
- Aldecaldo / Badlands routes.
- Cyberpsycho sighting on the unfinished highway.
Add tests targeted at the new model:
- A straight long side-street corridor in Heywood vs a short freeway hop.
- A route with several 90-degree stair-step alternatives.
- A known suspended-highway offramp or hilly road that causes airtime at speed.
- AutoDrive on the same destination, to check whether its behavior remains sane.
## Practical Next Step
The static pass around `0x40b304`, `0x40b540`, and `0x40ba58` is complete
enough for the first prototype:
- `0x40ba58` has four direct callers: `0x40b175`, `0x40b4ac`, `0x40b6d5`,
and `0x40bca7`.
- The ordinary adjacency walkers are the two clean first patch sites:
`0x40b4ac` from `0x40b304`, and `0x40b6d5` from `0x40b540`.
- At both ordinary sites, the live context contains solver, current state,
neighbor state, current node, neighbor node, current progress, neighbor
progress, vanilla `g`, and vanilla `f`.
- A disabled-by-default RED4ext prototype now patches the two ordinary sites by
adding a fixed nonnegative per-edge penalty before calling vanilla
`0x40ba58`.
Remaining static work before the full momentum model:
- Confirm candidate vector layout at `0x40b8f0`/state allocation.
- Confirm route-mode values at `solver+0xc4` for manual driving vs AutoDrive.
- Identify a cheap way to detect road-class transition from current/neighbor
node flags.
- Decode predecessor geometry from `state+0x1e` well enough to compute
predecessor/current/neighbor turn angle.
- Decide whether the later turn/ramp model should also patch the special/helper
relax paths (`0x40b175`, `0x40bca7`) or keep them vanilla.
Next implementation step is to enable and test the smallest additive prototype
with route-result comparisons. If the fixed per-edge penalty moves paths in the
right direction and remains stable, extend it into a live-tunable cost file and
then add turn/continuity penalties. Keep highway multiplier support available as
a diagnostic knob, but do not use it as the primary default behavior.
+401
View File
@@ -0,0 +1,401 @@
# RED4ext logging shim
`EdgeWeightGPS` is a RED4ext plugin used to probe native GPS/mappin code paths
without changing gameplay data.
It writes `EdgeWeightGPS.log` beside the installed DLL:
```text
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log
```
Current behavior:
- Logs plugin load/unload.
- Logs the RED4ext plugin handle and SDK pointer value passed to `Main`.
- Registers Running game-state callbacks so route tests can be timestamped.
- Hooks selected native wrappers and cores around `GPSSystem`, mappin tracking,
world-map mappin selection, and map path framing.
- Hooks `JournalManager.TrackEntry` at RVA `0x5944fc`, which is the native
handoff used by quest/objective world-map route plotting.
- Dumps the `JournalManager` listener array at offsets `0x210`/`0x21c` and the
listener vtable slots `0x28`, `0x30`, and `0x50`, matching the indirect calls
made by the native `TrackEntry` implementation.
- Hooks the non-default journal listener callbacks seen during route plotting:
`0xea89a8`, `0xea8958`, `0xe63f80`, `0xe63e6c`, `0xe63f00`,
`0x8d136c`, `0x431a34`, `0x55a4e4`, and `0x14de238`.
- For those listener callbacks, logs the listener object, event pointer, common
object fields, and vtable slots on candidate nested owner/service objects.
- Hooks the route handoff found from the journal listener bridge:
`0x598250`, `0x13763d8`, `0xaa62d0`, `0xaa6330`, `0x27abd7c`, and
`0x5625a4`.
- Logs mappin route-event fields, active/deactive route keys, the mappin
active-route map at `system + 0x1a0`, and the route observer list at
`system + 0x280`.
- Hooks the route observer callbacks reached by route activation/deactivation:
`0xaa6610`, `0xaa6628`, `0xaa63e0`, `0x27b10c0`, `0x295d4a0`, and
`0x286a85c`.
- Logs the route entry pointer and route object pointer passed to those
observers, including route object vtable slots and common fields such as the
active byte at offset `0x84`, the service lookup key at offset `0x8c`, and
the runtime observer1 service-owner path used before its vtable `0x220`
lookup.
- Hooks observer1's generic service lookup at `0x287c44`, filters it to the
runtime type pointer at `.data` RVA `0x342f6a8`, logs the returned service
object and slot `0x220`, then dynamically hooks that service `0x220` route
lookup to log its route-id output handle.
- The observer1 service branch was later identified as a false positive:
`0x287c44` returns the `JournalManager` object (`vtable 0x1430f0890`) and
the dynamic slot `0x220` resolves route IDs to readable journal/UI metadata
strings such as `internet`, `home`, `clubs`, and `arasaka`. It is now left in
the source but no longer attached in the active probe.
- Hooks the GPS query lifecycle found from the `RunGPSQuery`/`UpdateGPSQuery`
native registration cluster:
`0x29bd128` (`RunGPSQuery` body), `0x29bd254` (`UpdateGPSQuery` body),
`0x70a42c` (shared query submitter), `0x70a570` (low-level query dispatch),
`0x7094b8` (query result/path fetch), and `0xaa5704` (query status check).
- Logs query endpoints, returned query IDs, shared submitter return RVAs, query
state fields, status values, result-fetch success, and summarized path
buffers/point counts.
- The active probe now records query IDs returned from `0x70a42c` and always
logs result/status polling for those tracked IDs. Startup polling of query
IDs `0`/`1` is sampled only briefly so it cannot exhaust the route-click log
budget.
- Resolves the native mappin system when one of those paths fires, logs relevant
vtable slot addresses, and temporarily hooks the route-adjacent slots.
Active build note:
- The currently installed build is active as
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`.
- Source defaults enable the stable inline solver-cost patch at `0x40bb98`
(`kEnableGpsNodeMultiplierInlinePatch = true`) and keep the old full-function
`0x40bb40` C++ detour disabled (`kEnableGpsMultiplierHooks = false`).
- The inline patch preserves vanilla road cost except for highway lanes in the
road-tail branch. Highway lanes are multiplied by the live value in
`solver_weights.bin`, defaulting to `0.80`.
- The patch is intentionally not hard-gated on `solver+0xc4 == 2`; the vanilla
branch already limits it to road-style modes `0/2/4`, which keeps manual
drive and autodrive-like callers from diverging while leaving pedestrian mode
`1` alone.
- `solver_weights.bin` lives beside the DLL and is exactly one little-endian
float32. The plugin polls it every 500 ms from the Running game-state update.
`../tools/write_solver_weights.py` writes the installed file or generates preset
binaries under `../presets/solver_weights/`.
- The async route-job hooks are split behind `kEnableGpsRouteJobLifecycleHooks`
and are disabled in the active probe; this keeps the log focused on
`0x70a42c` submissions, `0x7094b8` result records, and local
search/provider-cost stats.
- `kEnableGpsSpatialEdgeWeightPatch` is a disabled-by-default implementation
path. When enabled, it hooks `GPSRouteProducer` (`0x44cc7c`) and
`GPSEdgeCost` (`0x44f838`), samples a generated traffic-lane spatial grid
using the search-state coordinates, and applies highway/road/pavement
multipliers to returned edge costs.
- When the spatial patch is enabled, the plugin hot-reloads
`spatial_weights.bin` from the same directory as the DLL. The file is exactly
five little-endian float32 values in this order:
`highway`, `road`, `GPSOnly`, `pavement`, `unknown`.
- `../tools/write_spatial_weights.py` writes that file directly, or can generate
named preset files under `../work/spatial-weights/` for live copy-over testing.
The prepared presets are:
`vanilla`, `current`, `highway-free`, `highway-expensive`, and
`surface-extreme`.
- The old verbose local-search probe is still available behind
`kEnableGpsLocalSearchHooks`. It hooks `GPSSearch` (`0x44f054`),
`GPSResolveHandle` (`0x44e1a8`), `GPSEdgeCost` (`0x44f838`), and the two
cost-provider filters `0x44ff68`/`0x450b08`.
- The filter probe records pass/fail counts by point class and by the
`point + 0x10` mask bits tested against provider masks at `+0x108`/`+0x10a`.
This is meant to identify whether class/mask filtering, rather than the edge
multiplier table, is dominating route choice.
- The resolver probe logs selected packed-handle resolutions from the
search/materialization corridor. The selected post-call return sites are
`0x44cb9e` (0x38 intermediate-record builder) and `0x44dd97`
(geometry/materialization path). For full-map GPS queries from caller
`0x8d20d4` with `query_fcc=5`, it opens a five-second resolver trace window,
decodes point index/segment index/generation bits, then dumps the resolved
segment/point records plus small raw slices behind segment pointer fields.
The purpose is to see whether route materialization can reach final lane
hashes/resource-side road classes before the final 0x28 records are emitted.
Current route-probe focus:
- `FrameMappinPath` wrapper/core: `0x27c4314`, `0x27bc1ec`
- `SetSelectedMappin` wrappers/core: `0x27c4a38`, `0x27c4944`,
`0x27c49c4`, `0x27c1684`
- `TrackCustomPositionMappin` wrapper/core: `0x27c4aac`, `0x27c2318`
- mappin-system slots `0x1f0`, `0x280`, and `0x2f0`
- `JournalManager.TrackEntry` implementation: `0x5944fc`
- non-default `TrackEntry` listener callbacks listed above
- journal/mappin route bridge candidate: `0x598250`
- mappin route-event enqueue: `0x13763d8`
- mappin route-event handler: `0xaa62d0`
- mappin route activate/deactivate: `0xaa6330`, `0x27abd7c`
- mappin route observer callbacks: `0xaa6610`, `0xaa6628`, `0xaa63e0`,
`0x27b10c0`, `0x295d4a0`, `0x286a85c`
- observer1 service lookup and returned service route lookup:
`0x287c44`, dynamic service vtable slot `0x220` (disabled after being
classified as journal metadata)
- route-build candidate called by the bridge: `0x5625a4`
- GPS query lifecycle: `0x29bd128`, `0x29bd254`, `0x70a42c`, `0x70a570`,
`0x7094b8`, `0xaa5704`
Quest/objective pins did not fire the mappin tracking hooks in live tests. The
REDscript decompile shows that those pins call `JournalManager.TrackEntry`
instead, so the current useful runtime question is which native listener reacts
to tracked-entry changes.
Most recent controlled test:
- `06:31:43`: user hit Continue / GPS tick logged.
- `06:32:02`: automatic `TrackEntry` during load, no route input.
- `06:32:27`: map opened.
- `06:32:44`, `06:32:50`, `06:32:56`: deliberate quest/objective route plots
produced `JournalManager::TrackEntry` calls from return RVA `0x26ac34e`.
- After map open, the journal listener count rose to 254. Most listener entries
dispatch to no-op `0x14a700`; the non-default callbacks above are the current
drill-down targets.
Newest controlled test:
- User clock `01:05`: Continue on the main menu. The log saw
`GPSSystem/Tick`.
- User clock `01:27`: Space to continue. The log saw automatic
`JournalManager.TrackEntry`, a dense `JournalRouteBridge` burst, and thirty
`RouteBuildCandidate 0x5625a4` calls. About 5.5 seconds later the mappin route
activation/deactivation functions fired.
- User clock `01:52`: map open. Hovering icons produced the expected
`SetSelectedMappin` bursts.
- Deliberate quest route clicks produced `JournalManager.TrackEntry`, route
event enqueue calls for old-route-off/new-route-on, and route event handler
calls roughly 11-18 ms later.
- Custom pin routing used the separate custom-position mappin path, then the
shared route activate/deactivate helper.
Latest observer1 probe result:
- The `Observer1ServiceLookup` hook fired, but it proved observer1 is not route
solving. It returned the same `JournalManager` vtable seen in earlier journal
traces, and its slot `0x220` resolved numeric route IDs into journal/UI
category strings. That branch is closed as marker metadata.
Current static lead:
- `RunGPSQuery` and `UpdateGPSQuery` are registered native thunks at
`0x29bd5ac` and `0x29bd6c8`. Their deeper bodies are `0x29bd128` and
`0x29bd254`.
- `RunGPSQuery` submits a query through a subsystem reached via an object field
at `+0x130`, returning a query ID or `-1`.
- `UpdateGPSQuery` fetches a completed query result through `0x7094b8`, copies a
path point buffer, and writes the resulting point array for script/UI
consumption.
- The shared submitter `0x70a42c` is also used by non-GPS navigation callers,
so return RVAs and query IDs are important for separating map GPS from traffic
or AI path requests.
Latest GPS-query finding:
- During a controlled route test, the normal world-map GPS path did not call
the script-native `RunGPSQuery`/`UpdateGPSQuery` bodies.
- Each deliberate quest/custom route click called the shared submitter
`0x70a42c` from return RVA `0x8d20d4`. In the 2026-06-20 19:03 run, the
deliberately plotted routes returned query IDs `17`, `18`, `19`, and `20`
for the side job, Sinnerman, Claire's Garage, and a custom pin.
- Each submitted route produced three `0x70a570` dispatches: current/player
position, a nearby snapped/lane position, then the destination position.
- The dense log stream immediately after Space-to-Continue is repeated
`0x7094b8` result polling for startup/minimap route queries, matching the HUD
route initialization delay.
- `GPSQueryResultFetch 0x7094b8` returning `1` is the route-solve completion
signal. The caller at return RVA `0x52069c` starts handling a completed
result, then the caller at return RVA `0x520783` drains result records.
The visible route record appears in the object passed as `outPath`: offset
`0x30` is a packed point count (`N/N` on the first drain record, then `N`),
and offset `0x28` looks like the route point array pointer. The deliberate
routes produced the familiar `11`, `16`, `15`, and `14` point-like counts in
the 2026-06-20 19:03 run, and `11`, `16`, `15`, `11` in the 19:16 map
routine where the custom pin was different.
- Static disassembly confirms `0xaa5704` takes `(manager, queryId)` and returns
a small status code; one caller checks for value `1`. Runtime logging shows
this is HUD/display lifecycle polling rather than solve completion: it polls
the currently displayed query once per second and pauses when the minimap is
not rendered.
- The current installed probe adds a read-only dump of result-object fields
around offsets `0x20` through `0x5f` on successful active-route fetches.
The field at `outPath + 0x28` is the data pointer for an internal route
element vector, but live data does not decode as plain `Vector3`/`Vector4`
coordinates.
Latest route-result findings:
- User clock `26:38`: Continue on the main menu.
- User clock `27:01`: Space to continue, with the car in a different position
after a previous drive.
- User clock `27:21`: map opened.
- User clock `28:06`: normal route-click routine complete.
- Same three quest destinations from the shifted start produced different
result counts: side job `12`, Sinnerman `23`, Claire's Garage `18`, and the
custom pin `17`.
- Static disassembly of the `0x520783` result-drain caller shows `0x7094b8`
drains one route result record at a time from an internal vector, then copies
that record into `outPath`.
- The copied route-result subobject contains a vector at `outPath + 0x28`.
Its live count is the dword at `outPath + 0x34`; in the latest run this
cleanly matched the visible routes: side job `12`, Sinnerman `23`, Claire's
Garage `18`, and custom pin `17`.
- The vector elements are 0x28-byte records, not pointers. `0x41be2c` calls
`0x41be94` with `(data, data + count * 40)`. The active probe logs each
route element as a compact 40-byte record tuple:
`h00,u08hex,u0c,u10,u14,h18,h18lowFloat,h18highFloat,h20`.
- A nearby helper at `0x41c508` does iterate an array of 8-byte pointers at
offset `+0x28`, but that is a different route-adjacent object type, not the
`0x7094b8` output record captured in `outPath`.
Latest route-element decode:
- User clock `45:37`: Continue on the main menu.
- User clock `46:05`: Space to continue.
- User clock `46:15`: map opened and the usual route-click routine was run.
- The startup/minimap route and the later explicit Claire's Garage map route
produced identical 18-record `ptr28` sequences, so the same solved route
object feeds both HUD startup and deliberate map plotting.
- The four deliberate map routes completed as route result IDs `2` through `5`:
side job `12` records / final span end `68`, Sinnerman `23` records / final
span end `188`, Claire's Garage `18` records / final span end `86`, custom
pin `14` records / final span end `78`.
- Within every route, `u10` and `u14` are monotonically increasing start/end
indexes into a flattened point/span buffer. The final `u14` equals
`gpsResult_u20` for every route.
- `h00` is a stable per-segment handle: common route prefixes share identical
`h00` sequences, and the custom pin and Claire's Garage routes share their
first ten solved segments before diverging.
- `u08` is packed metadata. Values appear byte-structured, for example
`0x00020202`, `0x01020203`, `0x02020103`, and `0x03020003`, rather than a
simple scalar weight.
- `h18` splits into two 32-bit floats. The high half is consistently a sane
road-scale float, often in the `20` to `230` range, and is likely segment
length/cost-like output. The low half is usually zero or a tiny value, with
non-zero values appearing around the start segment.
- `h20` has been zero in all captured full-map GPS result records.
Route-record/resource correlation:
- The `h00` field in the 0x28-byte route-result records matches
`worldTrafficLanePersistent.nodeRefHash`. In the current route logs, every
unique route handle checked matched a lane hash in the raw
`all.traffic_persistent` resource.
- This lets us join emitted route segments back to resource-side lane metadata:
`flags`, `maxSpeed`, `length`, and `playerGPSInfo`.
- The packed `u08` metadata is not a clean copy of resource-side lane flags.
Its low byte commonly appears as `2`, `3`, `4`, `5`, `8`, `9`, etc., while
the resource categories are bitflag bundles such as `Road`, `Highway`,
`GPSOnly`, `Intersection`, and `Pavement`.
- A joined sample from `EdgeWeightGPS_cost_table_mild_2121.log` showed mixed
resource categories per low-byte class: class `2` was mostly pavement but
included highway lanes, class `8` was split between pavement and highway, and
class `1` was mostly road. This means the final route record's low byte is
useful metadata, but it is not by itself the class multiplier index from
`0x44f838`.
- The next better lever is still the search-side cost provider table keyed by
`(*(routePoint + 0x13) & 0x3f)`. To tune it intelligently, we need either the
provider initialization site or a way to join search-side route points back to
`nodeRefHash`/lane flags before the edge cost is returned.
Latest full-route join:
- `../logs/EdgeWeightGPS_query_route_probe_2308.log` contains nine solved route
results from the 23:08 user test. All 362 emitted route records matched
`worldTrafficLanePersistent.nodeRefHash` in
`../work/raw-segment-json/all.traffic_persistent.json`.
- The log's wall timestamp currently wraps milliseconds without incrementing
the displayed second. Use the `+Nms` elapsed field when comparing submit and
result times.
- Representative solved route composition:
- side job: 12 records, 32 ms, 578.6 pavement length.
- Sinnerman: 23 records, 45 ms, 897.4 pavement, 160.4 highway, 89.8 road.
- Claire: 18 records, 34 ms, 1216.5 pavement.
- custom highway-ish pin: 17 records, 44 ms, 1006.3 pavement,
241.0 highway, 38.0 road.
- Aldecaldo camp: 80 records, 325 ms, 5853.5 road, 1492.9 highway,
1111.5 pavement, 24.6 gpsonly.
- far east gig: 81 records, 144 ms, 5086.2 road, 1523.0 highway,
1111.5 pavement, 24.6 gpsonly.
- Violence: 55 records, 97 ms, 1991.5 pavement, 358.5 highway,
86.1 road.
- cyberpsycho unfinished highway: 58 records, 147 ms, 2657.4 pavement,
519.0 highway, 113.2 road, 56.7 gpsonly.
- Search/provider aggregate in the same log: 159 searches, 4036 provider
filter calls, only 3 filter failures. Filter slot `+0x08` is therefore
almost never pruning this test graph.
- Search-side point classes observed by `0x44f838` are `{1,3,4,5,15}`. Final
route-record low-byte classes are `{0,1,2,3,4,5,7,8,9}`, and route-record
classes 7/8/9 are highway-heavy. These are different domains, which explains
why provider point-class tuning did not map cleanly to highway preference.
- Later static analysis tied the search-side segment/point records to `VAND`
blobs in compiled navigation streamingsector resources, not directly to
`all.traffic_persistent`. The traffic lane hash join happens downstream in
the result/materialization path.
- `../tools/analyze_vand_navigation.py` decodes those `VAND` blobs from extracted
streamingsector JSON. In the three extracted samples, all masks were `0x0003`
and the dominant point classes were `1`, `4`, `5`, and `3`, matching the live
edge-cost trace.
Current static producer lead:
- `0x70a908` packages the route endpoints and query settings, then calls
`0x44cc7c`.
- `0x44cc7c` is now the main producer corridor, not merely a generic unknown
helper. It allocates large scratch state, projects the query endpoints, and
calls deeper pathfinding routines that should decide route cost before the
`0x7094b8` fetch/drain path copies final result records.
- Direct xrefs confirm `0x41be94` has only the result-copy caller
`0x41be69`; patching there would alter copied/displayed records after route
choice. The cost patch needs to happen upstream of the `0x44cc7c` result
construction path.
- `0x44f054` is the strongest route-planning lead so far. It validates the
packed start/target lane handles, initializes a search-state table and open
list, pushes the start state, repeatedly pops the best state, checks for the
destination handle, traverses adjacency lists, and writes predecessor,
accumulated-cost, and priority fields for improved neighbor states. This is
the native GPS graph search loop.
- The search-state record is 0x20 bytes. Offsets `+0x00/+0x04/+0x08` are a
world position, `+0x0c` is accumulated path cost, `+0x10` is priority
(`cost + heuristic`), `+0x14` stores open/closed flags and the predecessor
index, and `+0x18` stores the packed lane handle.
- `0x44f7bc` is the heuristic helper. It returns world-space distance to the
target scaled by the constant at `0x1431ef3a0` (`0.9990000129`), unless a
route-shape helper supplies a shorter adjusted distance.
- The search loop calls a strategy object's vtable slot `+0x08` as an edge
admissibility predicate and slot `+0x10` as the edge-cost callback. For the
base/class-filter strategies, slot `+0x10` resolves to `0x44f838`.
- `0x44f838` computes the geometric edge distance and multiplies it by
`provider[0x08 + classId * 4]`, where `classId` is
`(*(routePoint + 0x13) & 0x3f)`. The GPS planner is therefore weighted, but
by a compact baked road-class table, not by traffic `maxSpeed` or lane
connection probabilities.
- The read-only local-search probe can still hook `0x44f054` and `0x44f838` to
log the live provider vtable, the 64 class multipliers, start/target handles,
and a capped sample of edge-cost calls with point class IDs, masks, handles,
and returned costs.
- The new spatial edge-cost path is implemented but disabled by default. Its
generated grid is built from traffic lane polygons/flags, not from VAND point
classes, so it can bias the search toward highway cells without rewriting
VAND metadata that later materialization code branches on.
Autodrive finding:
- User clock `28:28` and `28:48`: enabling autodrive did not use the full
world-map GPS caller. It submitted repeated `0x70a42c` queries from return
RVA `0x8ed760`, with `query_fcc=4`, near-current vehicle positions, and
result fetches from return RVA `0x8ed7df`.
- These autodrive queries appear to be short local vehicle navigation requests
using the same query service, separate from the full player GPS map route
caller at return RVA `0x8d20d4` with `query_fcc=5`.
Build and install from the Fedora toolbox:
```bash
toolbox run -c 2077 ./tools/install_red4ext_shim.sh
```
This shim is read-only. It does not enable any of the archived traffic data patches.
+51
View File
@@ -0,0 +1,51 @@
# Tooling
The Fedora toolbox container is expected to be named `2077`.
Installed inside that toolbox:
- .NET SDK 8, 9, and 10
- GCC/G++, CMake, make
- `jq`, `ripgrep`
- WolvenKit CLI NuGet tool `wolvenkit.cli` 8.18.1
- `rizin` 0.7.4
- `python3-capstone` 5.0.5
- `python3-pefile` 2024.8.26
The WolvenKit command is:
```bash
toolbox run --container 2077 bash -lc '$HOME/.dotnet/tools/cp77tools --help'
```
## Discover Traffic Resources
```bash
../tools/discover_traffic_resources.sh \
"/path/to/Cyberpunk 2077/archive/pc/content" \
traffic-resources.txt
```
This lists archive paths matching traffic/persistent/lane naming. The regex is
intentionally broad because CDPR naming can vary between base game and DLC
archives.
## Build Patch Archive
```bash
../tools/build_lane_weight_archive.sh \
"/path/to/Cyberpunk 2077" \
"/path/to/Cyberpunk 2077/archive/pc/content" \
../work/lane-weight-build
```
The script performs:
1. `cp77tools extract` for traffic lane resources
2. `cp77tools convert serialize` to JSON
3. `../tools/patch_traffic_lanes.py`
4. `cp77tools convert deserialize` back to CR2W
5. `cp77tools pack` into an archive
Copy the resulting archive from `../work/lane-weight-build/05_packed` into
`Cyberpunk 2077/archive/pc/mod` for manual testing.
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,142 @@
Version=1
EventType=REDEngineErrorReport
EventTime=0
ReportIdentifier=ffffffff-ffffffff-00000001-00000000
Sig[0].Name=StackHash
Sig[0].Value=0x0000000000000000
Sig[1].Name=ErrorReason
Sig[1].Value=Unhandled exception
Sig[2].Name=InternalVersion
Sig[2].Value=3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release
DynamicSig[1].Name=OS Version
DynamicSig[1].Value=10.0.19045.2.0.0.0.1
LoadedModule[0]=Cyberpunk2077.exe
LoadedModule[1]=ntdll.dll
LoadedModule[2]=kernel32.dll
LoadedModule[3]=kernelbase.dll
LoadedModule[4]=USER32.dll
LoadedModule[5]=advapi32.dll
LoadedModule[6]=msvcrt.dll
LoadedModule[7]=rpcrt4.dll
LoadedModule[8]=cryptbase.dll
LoadedModule[9]=ucrtbase.dll
LoadedModule[10]=sechost.dll
LoadedModule[11]=gdi32.dll
LoadedModule[12]=win32u.dll
LoadedModule[13]=SHELL32.dll
LoadedModule[14]=shlwapi.dll
LoadedModule[15]=shcore.dll
LoadedModule[16]=dbghelp.dll
LoadedModule[17]=sl.interposer.dll
LoadedModule[18]=ole32.dll
LoadedModule[19]=combase.dll
LoadedModule[20]=coml2.dll
LoadedModule[21]=MSVCP140.dll
LoadedModule[22]=VCRUNTIME140.dll
LoadedModule[23]=VCRUNTIME140_1.dll
LoadedModule[24]=REDGalaxy64.dll
LoadedModule[25]=WS2_32.dll
LoadedModule[26]=CRYPT32.dll
LoadedModule[27]=bcrypt.dll
LoadedModule[28]=WININET.dll
LoadedModule[29]=mpr.dll
LoadedModule[30]=IPHLPAPI.DLL
LoadedModule[31]=dnsapi.dll
LoadedModule[32]=nsi.dll
LoadedModule[33]=MSWSOCK.dll
LoadedModule[34]=libxell.dll
LoadedModule[35]=dxgi.dll
LoadedModule[36]=SETUPAPI.dll
LoadedModule[37]=cfgmgr32.dll
LoadedModule[38]=VERSION.dll
LoadedModule[39]=libxess_fg.dll
LoadedModule[40]=XINPUT9_1_0.dll
LoadedModule[41]=libxess.dll
LoadedModule[42]=bink2w64.dll
LoadedModule[43]=WINMM.dll
LoadedModule[44]=redlexer_native.dll
LoadedModule[45]=PhysX3Common_x64.dll
LoadedModule[46]=PhysX3CharacterKinematic_x64.dll
LoadedModule[47]=PxFoundation_x64.dll
LoadedModule[48]=PhysX3Cooking_x64.dll
LoadedModule[49]=PhysX3_x64.dll
LoadedModule[50]=ffx_backend_dx12_x64.dll
LoadedModule[51]=ffx_fsr3_x64.dll
LoadedModule[52]=ffx_fsr3upscaler_x64.dll
LoadedModule[53]=ffx_opticalflow_x64.dll
LoadedModule[54]=ffx_frameinterpolation_x64.dll
LoadedModule[55]=libcurl.dll
LoadedModule[56]=WLDAP32.dll
LoadedModule[57]=Normaliz.dll
LoadedModule[58]=icuin.dll
LoadedModule[59]=icuuc.dll
LoadedModule[60]=icudt.dll
LoadedModule[61]=POWRPROF.dll
LoadedModule[62]=oo2ext_7_win64.dll
LoadedModule[63]=HID.DLL
LoadedModule[64]=amd_ags_x64.dll
LoadedModule[65]=vulkan-1.dll
LoadedModule[66]=winevulkan.dll
LoadedModule[67]=OLEAUT32.dll
LoadedModule[68]=imm32.dll
LoadedModule[69]=VERSION.dll
LoadedModule[70]=cyber_engine_tweaks.asi
LoadedModule[71]=MSVCP140_ATOMIC_WAIT.dll
LoadedModule[72]=D3DCOMPILER_47.dll
LoadedModule[73]=winmm.dll
LoadedModule[74]=msacm32.dll
LoadedModule[75]=RED4ext.dll
LoadedModule[76]=ArchiveXL.dll
LoadedModule[77]=Codeware.dll
LoadedModule[78]=EdgeWeightGPS.dll
LoadedModule[79]=input_loader.dll
LoadedModule[80]=mod_settings.dll
LoadedModule[81]=NewGamePlus.dll
LoadedModule[82]=RedData.dll
LoadedModule[83]=RedFileSystem.dll
LoadedModule[84]=TweakXL.dll
LoadedModule[85]=secur32.dll
LoadedModule[86]=Kerberos.dll
LoadedModule[87]=MSV1_0.dll
LoadedModule[88]=netapi32.dll
LoadedModule[89]=netutils.dll
LoadedModule[90]=wbemprox.dll
LoadedModule[91]=winspool.drv
LoadedModule[92]=compstui.dll
LoadedModule[93]=comctl32.dll
LoadedModule[94]=winex11.drv
LoadedModule[95]=uxtheme.dll
LoadedModule[96]=GameServicesSteam.dll
LoadedModule[97]=steam_api64.dll
LoadedModule[98]=netprofm.dll
LoadedModule[99]=steamclient64.dll
LoadedModule[100]=lsteamclient.dll
LoadedModule[101]=imagehlp.dll
LoadedModule[102]=PSAPI.DLL
LoadedModule[103]=gameoverlayrenderer64.dll
LoadedModule[104]=cryptnet.dll
LoadedModule[105]=WINTRUST.DLL
LoadedModule[106]=rsaenh.dll
LoadedModule[107]=GfnRuntimeSdk.dll
LoadedModule[108]=gdiplus.dll
LoadedModule[109]=scc_lib.dll
LoadedModule[110]=bcryptprimitives.dll
LoadedModule[111]=CChromaEditorLibrary64.dll
LoadedModule[112]=mfc140u.dll
LoadedModule[113]=msasn1.dll
LoadedModule[114]=wldp.dll
LoadedModule[115]=wineopenxr.dll
LoadedModule[116]=sl.common.dll
LoadedModule[117]=d3d12.dll
LoadedModule[118]=sl.pcl.dll
LoadedModule[119]=sl.reflex.dll
LoadedModule[120]=GFSDK_Aftermath_Lib.x64.dll
LoadedModule[121]=d3d12core.dll
LoadedModule[122]=amdxc64.dll
LoadedModule[123]=amd_fidelityfx_dx12.dll
LoadedModule[124]=mmdevapi.dll
LoadedModule[125]=winepulse.drv
LoadedModule[126]=winealsa.drv
LoadedModule[127]=Wtsapi32.dll
LoadedModule[128]=xinput1_4.dll
AppName=Cyberpunk2077.exe
@@ -0,0 +1,4 @@
Error reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x71.
File: <Unknown>(0)
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,19 @@
2026-06-27 04:46:36.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff0620000 sdk=0x7f3b4558 runtime=2.3.1
2026-06-27 04:46:36.000 +0ms registered Running game-state callbacks
2026-06-27 04:46:36.008 +8ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 04:46:36.015 +15ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 04:46:36.023 +23ms hook attach GPSAuxMultiplier 0x40bb00 target=0x14040bb00 rva=0x40bb00 result=ok original=0x1018c0540
2026-06-27 04:46:36.030 +30ms hook attach GPSNodeMultiplier 0x40bb40 target=0x14040bb40 rva=0x40bb40 result=ok original=0x1018c05a0
2026-06-27 04:46:54.894 +17894ms GameState Running OnEnter app=0x31fb80
2026-06-27 04:46:54.919 +17919ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 04:46:54.926 +17926ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 04:46:54.933 +17933ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 04:46:54.939 +17939ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 04:46:54.946 +17946ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 04:48:02.702 +85702ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1505df0 query=0x794bfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:48:02.703 +85703ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 04:48:02.703 +85703ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1505df0 query=0x794bfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:48:02.704 +85704ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
2026-06-27 04:48:02.723 +85723ms hook GPSNodeMultiplier 0x40bb40 call=0 signatureCount=1 new=1 job=0x18ced5880 node=0x15a3628de0 mode=2 retry=0 flagsC0=0x8000018 c8=0x0 node86=0x0 flags88=0x31 node8c=0x102 node8e=0x2 node90=0x0 node93=0x1 value=1.1 ret_rva=0x40b35d
2026-06-27 04:48:02.724 +85724ms hook GPSAuxMultiplier 0x40bb00 call=0 signatureCount=1 new=1 job=0x18ced5880 node=0x15a3628de0 mode=2 retry=0 flagsC0=0x8000018 c8=0x0 node86=0x0 flags88=0x31 node8c=0x102 node8e=0x2 node90=0x0 node93=0x1 value=4 ret_rva=0x40b5fc
2026-06-27 04:48:02.724 +85724ms hook GPSAuxMultiplier 0x40bb00 call=1 signatureCount=1 new=1 job=0x18ced5880 node=0x15ecd7ab0 mode=2 retry=0 flagsC0=0x8000018 c8=0x0 node86=0x0 flags88=0x3 node8c=0xc node8e=0x8146 node90=0x45 node93=0x0 value=1 ret_rva=0x40bc4a
@@ -0,0 +1,145 @@
Registered crash info file...
InternalVersion: 3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release
!!!CRASHED!!!
Error Reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8.
File: <Unknown>
Line: 0
"uptimeSeconds":85
"stopThreadID":444
"exceptionCode":0xC0000005
"processID":384
"Engine/CommitFailedErrorCode@1#TID=0":"0"
"ResourceLoaderThrottler/PreviousSpeed@1957442#TID=0":"Flood"
"ResourceLoaderThrottler/CurrentSpeed@1957443#TID=0":"Stream"
"ResourceLoaderThrottler/NumThrottleTokensAcquired@1965886#TID=0":"1"
"ResourceLoaderThrottler/NumThrottleTokensSoftLimit@1965885#TID=0":"2"
"Gpu/RayTracing/Enabled@256#TID=0":"false"
"Configuration/Name@2#TID=0":"FINAL"
"Configuration/Name2@3#TID=0":"FINAL"
"Game/Patch@7#TID=0":"2.31"
"Game/TransformAnimator/Components@1965278#TID=0":"315"
"Game/TransformAnimator/RunningComponents@1965277#TID=0":"271"
"Game/TransformAnimator/AddedRunningComponents@1965272#TID=0":"0"
"Game/TransformAnimator/RemovedRunningAnimations@1965276#TID=0":"0"
"Game/TransformAnimator/RotatingMeshNodes@1965275#TID=0":"120"
"Game/TransformAnimator/AddedRotatingMeshNodes@1965273#TID=0":"0"
"Game/TransformAnimator/RemovedRotatingMeshNodes@1965274#TID=0":"0"
"Game/SessionDesc/WorldName@734904#TID=0":"03_night_city"
"Game/SessionDesc/IsValid@734905#TID=0":"true"
"Game/SessionDesc/IsLoadingSavedSession@734906#TID=0":"true"
"Game/SessionDesc/IsJoiningRemoteSession@734907#TID=0":"false"
"Game/SessionDesc/HostName@734908#TID=0":""
"Game/SessionDesc/GameRulesConfig@734909#TID=0":"None"
"Game/SessionDesc/SpawnLocalPlayer@734910#TID=0":"false"
"Game/SessionDesc/SpawnPoint@734911#TID=0":"Position=[0, 0, 0, 0] Rotation=[Roll:0, Pitch:0, Yaw:0]"
"Game/SessionDesc/SpawnRecordId@734912#TID=0":"<0x0000001C15982ADF>"
"Game/SessionDesc/Gender@734913#TID=0":"None"
"GameSessionDesc/UseSpecifiedStartPoint@734914#TID=0":"false"
"GameSessionDesc/IsSpectator@734915#TID=0":"false"
"GameSessionDesc/SpawnTags@734916#TID=0":""
"Game/SessionDesc/IsStreamingTestRequested@734917#TID=0":"false"
"Game/SessionDesc/IsBenchmark@734918#TID=0":"false"
"Game/GameEffects/RunningEffects@1965644#TID=0":"1"
"Game/GameEffects/AddedEffects@1965643#TID=0":"0"
"Game/GameEffects/TerminatingEffects@1965645#TID=0":"0"
"Game/Interactions/DialogVisualizerTotalCount@1965587#TID=0":"0"
"Game/Interactions/DeviceVisualizerTotalCount@1965588#TID=0":"0"
"Game/Interactions/LootVisualizerTotalCount@1965589#TID=0":"0"
"Game/Interactions/HotSpots/CurrentCount@1965594#TID=0":"401"
"Game/Interactions/HotSpots/MaxCount@1965595#TID=0":"549"
"Game/Interactions/HotSpots/LastFrameAddedCount@1965590#TID=0":"0"
"Game/Interactions/HotSpots/MaxAddedCount@1965591#TID=0":"586"
"Game/Interactions/HotSpots/LastFrameRemovedCount@1965592#TID=0":"0"
"Game/Interactions/HotSpots/MaxRemovedCount@1965593#TID=0":"153"
"Game/Interactions/UniqueLayersCurrentCount@1965596#TID=0":"3258"
"Game/Interactions/UniqueLayersMaxCount@1965597#TID=0":"4763"
"Game/Interactions/EventsLastFrameCount@1965585#TID=0":"0"
"Game/Interactions/EventsMaxCount@1965586#TID=0":"25"
"Game/PlayerStateMachine/numberOfStateMachines@1876614#TID=0":"10"
"Game/TransactionSystem/NumberOfItemsInPlayersInventory@875005#TID=0":"620"
"Game/TransactionSystem/NumberOfItemsInPlayersStash@1100779#TID=0":"813"
"Game/StatsSystem/NumberOfStatsBundles@1964601#TID=0":"2346"
"Game/StatPoolsSystem/MaxNumberOfStatPoolListenersOnObject@1871770#TID=0":"10"
"Game/StatsSystem/MaxNumberOfStatModifiersOfStatTypeOnObject@1872327#TID=0":"99"
"Game/StatsSystem/NameOfMaxNumberOfStatModifiersOnObjectStatType@1872328#TID=0":"StaminaRatio"
"Game/mounting/MountingFacility/numberOfGameplayMounts@1875653#TID=0":"1"
"Game/mounting/MountingFacility/numberOfMountEvents@1875500#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPrePooledOwners@875089#TID=0":"1"
"Game/ItemFactorySystemPool/numberOfPrePooledItems@734708#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPostPooledItems@734706#TID=0":"0"
"Game/ItemFactorySystem/numberOfOwnerDatas@875090#TID=0":"1"
"Game/ItemFactorySystem/numberOfItemsWithNoOwner@734705#TID=0":"0"
"Game/ItemFactorySystem/numberOfCachedOwners@875088#TID=0":"1"
"Game/ItemFactorySystem/numberOfCachedItems@1173764#TID=0":"7"
"Game/ItemFactorySystem/numberOfUncachedOwners@1939940#TID=0":"103"
"Game/ItemFactorySystem/numberOfUncachedItems@1940626#TID=0":"125"
"Game/StatPoolsSystem/MaxNumberOfUnassignedStatPoolListeners@1874750#TID=0":"5221"
"Game/StatsSystem/MaxNumberOfStatsListenersOnObject@1874399#TID=0":"207"
"Game/StatsSystem/MaxNumberOfStatsCallbackData@1866328#TID=0":"267"
"Game/mounting/LowLevelSystem/numberOfAssociations@1875321#TID=0":"14"
"Game/ItemFactorySystemLowLevel/numberOfSpawnRequests@1940627#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfReleaseRequests@1910870#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfCancelRequests@734740#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfAppearanceChangeRequests@1890818#TID=0":"0"
"Game/Population/AlwaysSpawned@1965415#TID=0":"18"
"Game/Population/Attached@1965416#TID=0":"216"
"Game/Population/Registered@1965417#TID=0":"4459"
"Game/Population/InBucket@1965418#TID=0":"996"
"Game/Population/VisQueries@1965419#TID=0":"1992"
"Rendering/AsyncCompute@1965829#TID=0":"true"
"Game/LoadingStage@1957441#TID=0":"Finished"
"Session/GameDefinitionName@734695#TID=0":""
"Engine/OOM@4#TID=0":"false"
"GlobalMode/IsClosing@5#TID=0":"false"
"GlobalMode/IsGame@17#TID=0":"true"
"Jobs/InitParam/MaxLatentJobs@8#TID=0":"131072"
"Jobs/InitParam/MaxCriticalPathJobs@9#TID=0":"65536"
"Jobs/InitParam/MaxImmediateJobs@10#TID=0":"2048"
"Jobs/InitParam/WorkerThreadStackSizeKB@11#TID=0":"1024"
"Jobs/InitParam/MaxThreads@12#TID=0":"27"
"Jobs/InitParam/AllJobsCriticalPath@14#TID=0":"false"
"Jobs/InitParam/UseJobDebugger@13#TID=0":"false"
"Jobs/Dispatcher/NumDispatcherThreads@15#TID=0":"11"
"Jobs/Dispatcher/MaxHWConcurrency@16#TID=0":"12"
"Gpu/Device/Name@251#TID=0":"AMD Radeon RX 7900 XT (RADV NAVI31)"
"Gpu/Device/Vendor@252#TID=0":"AMD"
"Gpu/Device/DriverVersion@253#TID=0":"Radeon software 99.10.2"
"Gpu/Device/TotalMemoryMB@250#TID=0":"20464"
"Gpu/Device/UsedMemoryMB@1965887#TID=0":"5610"
"Engine/SafeInit@46167#TID=0":"Finished"
"Engine/IsHeadless@228#TID=0":"false"
"Engine/VersionWatermark@227#TID=0":"3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release Aug 27 2025 17:30:27 (FINAL) Total memory: 11931475968 bytes [EP1]"
"Engine/InitParams/InteropStartingPort@213#TID=0":"0"
"Engine/InitParams/RenderPreset@214#TID=0":"1"
"Engine/InitParams/QualityLevelName@215#TID=0":"None"
"Engine/InitParams/TextureQualityLevelName@216#TID=0":"High"
"Engine/InitParams/WatchdogTimeoutSecondsOverride@217#TID=0":"0"
"Engine/InitParams/ScriptsSilentCompilation@218#TID=0":"false"
"Engine/InitParams/ScriptsSilentValidation@219#TID=0":"false"
"Engine/InitParams/TweakDBSilentValidation@220#TID=0":"false"
"Engine/InitParams/PvdDumpToFile@221#TID=0":"false"
"Engine/InitParams/ProfilerEnabled@222#TID=0":"false"
"Engine/InitParams/ShowVersionWatermark@223#TID=0":"true"
"Engine/InitParams/WindowCaption@224#TID=0":""
"Engine/PC/SystemName@225#TID=0":"Windows 10 Pro"
"Engine/PC/SystemVersion@226#TID=0":"10.0.19045"
"Engine/Scripts/PrimaryBlobModifiedDate@235#TID=0":"134020895866810433"
"Engine/Scripts/FallbackBlobModifiedDate@236#TID=0":"0"
"Engine/Scripts/BlobPathUsed@237#TID=0":"Loaded"
"Engine/Scripts/ShouldCompileScripts@233#TID=0":"true"
"Engine/Scripts/CompileScriptsSuccess@234#TID=0":"false"
"Engine/Scripts/Loaded@238#TID=0":"true"
"Telemetry/PlaythroughID@851686#TID=0":"69e857a3ebf988d1"
"Telemetry/VisitID@47432#TID=0":"028374c6-ce86-4670-b93e-6d5f15b4f849"
"Streaming/LastObserverPosition@1965625#TID=0":"[-1569, 1213, 18]"
"Streaming/IsLastObserverPositionValid@1965626#TID=0":"true"
"Streaming/IsTeleporting@1965627#TID=0":"false"
"Streaming/DebugLastTeleportDistance@1965628#TID=0":"0.000000"
"Streaming/MountState@851679#TID=0":"Mounted"
"Streaming/Observer/0/LastObserverPosition@1965622#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/LastObserverVelocityOffsetPosition@1965623#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/UseStreamingOcclusion@1965624#TID=0":"false"
"##CrashDump##/DumpCrashDataSeconds":"0"
@@ -0,0 +1,4 @@
Error reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8.
File: <Unknown>(0)
@@ -0,0 +1,15 @@
2026-06-27 04:57:44.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6fffeff10000 sdk=0x7f3a8598 runtime=2.3.1
2026-06-27 04:57:44.000 +0ms registered Running game-state callbacks
2026-06-27 04:57:44.007 +7ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 04:57:44.013 +13ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 04:57:44.020 +20ms hook attach GPSNodeMultiplier 0x40bb40 target=0x14040bb40 rva=0x40bb40 result=ok original=0x1018c0540
2026-06-27 04:58:00.276 +16276ms GameState Running OnEnter app=0x31fb80
2026-06-27 04:58:00.296 +16296ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 04:58:00.303 +16303ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 04:58:00.310 +16310ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 04:58:00.317 +16317ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 04:58:00.324 +16324ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 04:58:50.737 +66737ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a19e3230 query=0x79a7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1076365316/0x40280804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:58:50.737 +66737ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 04:58:50.737 +66737ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a19e3230 query=0x79a7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:58:50.738 +66738ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
@@ -0,0 +1,145 @@
Registered crash info file...
InternalVersion: 3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release
!!!CRASHED!!!
Error Reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>
Line: 0
"uptimeSeconds":66
"stopThreadID":440
"exceptionCode":0xC0000005
"processID":372
"Engine/CommitFailedErrorCode@1#TID=0":"0"
"ResourceLoaderThrottler/PreviousSpeed@2265378#TID=0":"Flood"
"ResourceLoaderThrottler/CurrentSpeed@2265379#TID=0":"Stream"
"ResourceLoaderThrottler/NumThrottleTokensAcquired@2274777#TID=0":"1"
"ResourceLoaderThrottler/NumThrottleTokensSoftLimit@2274776#TID=0":"2"
"Gpu/RayTracing/Enabled@256#TID=0":"false"
"Configuration/Name@2#TID=0":"FINAL"
"Configuration/Name2@3#TID=0":"FINAL"
"Game/Patch@7#TID=0":"2.31"
"Game/TransformAnimator/Components@2273842#TID=0":"315"
"Game/TransformAnimator/RunningComponents@2273841#TID=0":"271"
"Game/TransformAnimator/AddedRunningComponents@2273839#TID=0":"0"
"Game/TransformAnimator/RemovedRunningAnimations@2273840#TID=0":"0"
"Game/TransformAnimator/RotatingMeshNodes@2273845#TID=0":"120"
"Game/TransformAnimator/AddedRotatingMeshNodes@2273843#TID=0":"0"
"Game/TransformAnimator/RemovedRotatingMeshNodes@2273844#TID=0":"0"
"Game/SessionDesc/WorldName@1652742#TID=0":"03_night_city"
"Game/SessionDesc/IsValid@1652743#TID=0":"true"
"Game/SessionDesc/IsLoadingSavedSession@1652744#TID=0":"true"
"Game/SessionDesc/IsJoiningRemoteSession@1652745#TID=0":"false"
"Game/SessionDesc/HostName@1652746#TID=0":""
"Game/SessionDesc/GameRulesConfig@1652747#TID=0":"None"
"Game/SessionDesc/SpawnLocalPlayer@1652748#TID=0":"false"
"Game/SessionDesc/SpawnPoint@1652749#TID=0":"Position=[0, 0, 0, 0] Rotation=[Roll:0, Pitch:0, Yaw:0]"
"Game/SessionDesc/SpawnRecordId@1652750#TID=0":"<0x0000001C15982ADF>"
"Game/SessionDesc/Gender@1652751#TID=0":"None"
"GameSessionDesc/UseSpecifiedStartPoint@1652752#TID=0":"false"
"GameSessionDesc/IsSpectator@1652753#TID=0":"false"
"GameSessionDesc/SpawnTags@1652754#TID=0":""
"Game/SessionDesc/IsStreamingTestRequested@1652755#TID=0":"false"
"Game/SessionDesc/IsBenchmark@1652756#TID=0":"false"
"Game/GameEffects/RunningEffects@2274516#TID=0":"1"
"Game/GameEffects/AddedEffects@2274514#TID=0":"1"
"Game/GameEffects/TerminatingEffects@2274517#TID=0":"0"
"Game/Interactions/DialogVisualizerTotalCount@2274452#TID=0":"0"
"Game/Interactions/DeviceVisualizerTotalCount@2274453#TID=0":"0"
"Game/Interactions/LootVisualizerTotalCount@2274454#TID=0":"0"
"Game/Interactions/HotSpots/CurrentCount@2274459#TID=0":"405"
"Game/Interactions/HotSpots/MaxCount@2274460#TID=0":"537"
"Game/Interactions/HotSpots/LastFrameAddedCount@2274455#TID=0":"0"
"Game/Interactions/HotSpots/MaxAddedCount@2274456#TID=0":"574"
"Game/Interactions/HotSpots/LastFrameRemovedCount@2274457#TID=0":"0"
"Game/Interactions/HotSpots/MaxRemovedCount@2274458#TID=0":"137"
"Game/Interactions/UniqueLayersCurrentCount@2274461#TID=0":"3310"
"Game/Interactions/UniqueLayersMaxCount@2274462#TID=0":"4656"
"Game/Interactions/EventsLastFrameCount@2274448#TID=0":"0"
"Game/Interactions/EventsMaxCount@2274449#TID=0":"25"
"Game/PlayerStateMachine/numberOfStateMachines@2189469#TID=0":"10"
"Game/TransactionSystem/NumberOfItemsInPlayersInventory@1789459#TID=0":"620"
"Game/TransactionSystem/NumberOfItemsInPlayersStash@1985440#TID=0":"813"
"Game/StatsSystem/NumberOfStatsBundles@2272267#TID=0":"2353"
"Game/StatPoolsSystem/MaxNumberOfStatPoolListenersOnObject@2184289#TID=0":"10"
"Game/StatsSystem/MaxNumberOfStatModifiersOfStatTypeOnObject@2184714#TID=0":"99"
"Game/StatsSystem/NameOfMaxNumberOfStatModifiersOnObjectStatType@2184715#TID=0":"StaminaRatio"
"Game/mounting/MountingFacility/numberOfGameplayMounts@2188012#TID=0":"1"
"Game/mounting/MountingFacility/numberOfMountEvents@2187875#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPrePooledOwners@1789591#TID=0":"1"
"Game/ItemFactorySystemPool/numberOfPrePooledItems@1652545#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPostPooledItems@1652543#TID=0":"0"
"Game/ItemFactorySystem/numberOfOwnerDatas@1789592#TID=0":"1"
"Game/ItemFactorySystem/numberOfItemsWithNoOwner@1652542#TID=0":"0"
"Game/ItemFactorySystem/numberOfCachedOwners@1789590#TID=0":"1"
"Game/ItemFactorySystem/numberOfCachedItems@2056880#TID=0":"7"
"Game/ItemFactorySystem/numberOfUncachedOwners@2260587#TID=0":"106"
"Game/ItemFactorySystem/numberOfUncachedItems@2261219#TID=0":"128"
"Game/StatPoolsSystem/MaxNumberOfUnassignedStatPoolListeners@2186733#TID=0":"5199"
"Game/StatsSystem/MaxNumberOfStatsListenersOnObject@2186374#TID=0":"207"
"Game/StatsSystem/MaxNumberOfStatsCallbackData@2178955#TID=0":"267"
"Game/mounting/LowLevelSystem/numberOfAssociations@2187600#TID=0":"14"
"Game/ItemFactorySystemLowLevel/numberOfSpawnRequests@2261222#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfReleaseRequests@2241688#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfCancelRequests@1652577#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfAppearanceChangeRequests@2202666#TID=0":"0"
"Game/Population/AlwaysSpawned@2274267#TID=0":"18"
"Game/Population/Attached@2274268#TID=0":"220"
"Game/Population/Registered@2274269#TID=0":"4460"
"Game/Population/InBucket@2274270#TID=0":"998"
"Game/Population/VisQueries@2274271#TID=0":"1996"
"Rendering/AsyncCompute@2274743#TID=0":"true"
"Game/LoadingStage@2265377#TID=0":"Finished"
"Session/GameDefinitionName@1652532#TID=0":""
"Engine/OOM@4#TID=0":"false"
"GlobalMode/IsClosing@5#TID=0":"false"
"GlobalMode/IsGame@17#TID=0":"true"
"Jobs/InitParam/MaxLatentJobs@8#TID=0":"131072"
"Jobs/InitParam/MaxCriticalPathJobs@9#TID=0":"65536"
"Jobs/InitParam/MaxImmediateJobs@10#TID=0":"2048"
"Jobs/InitParam/WorkerThreadStackSizeKB@11#TID=0":"1024"
"Jobs/InitParam/MaxThreads@12#TID=0":"27"
"Jobs/InitParam/AllJobsCriticalPath@14#TID=0":"false"
"Jobs/InitParam/UseJobDebugger@13#TID=0":"false"
"Jobs/Dispatcher/NumDispatcherThreads@15#TID=0":"11"
"Jobs/Dispatcher/MaxHWConcurrency@16#TID=0":"12"
"Gpu/Device/Name@251#TID=0":"AMD Radeon RX 7900 XT (RADV NAVI31)"
"Gpu/Device/Vendor@252#TID=0":"AMD"
"Gpu/Device/DriverVersion@253#TID=0":"Radeon software 99.10.2"
"Gpu/Device/TotalMemoryMB@250#TID=0":"20464"
"Gpu/Device/UsedMemoryMB@2274778#TID=0":"5659"
"Engine/SafeInit@47621#TID=0":"Finished"
"Engine/IsHeadless@228#TID=0":"false"
"Engine/VersionWatermark@227#TID=0":"3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release Aug 27 2025 17:30:27 (FINAL) Total memory: 11526561792 bytes [EP1]"
"Engine/InitParams/InteropStartingPort@213#TID=0":"0"
"Engine/InitParams/RenderPreset@214#TID=0":"1"
"Engine/InitParams/QualityLevelName@215#TID=0":"None"
"Engine/InitParams/TextureQualityLevelName@216#TID=0":"High"
"Engine/InitParams/WatchdogTimeoutSecondsOverride@217#TID=0":"0"
"Engine/InitParams/ScriptsSilentCompilation@218#TID=0":"false"
"Engine/InitParams/ScriptsSilentValidation@219#TID=0":"false"
"Engine/InitParams/TweakDBSilentValidation@220#TID=0":"false"
"Engine/InitParams/PvdDumpToFile@221#TID=0":"false"
"Engine/InitParams/ProfilerEnabled@222#TID=0":"false"
"Engine/InitParams/ShowVersionWatermark@223#TID=0":"true"
"Engine/InitParams/WindowCaption@224#TID=0":""
"Engine/PC/SystemName@225#TID=0":"Windows 10 Pro"
"Engine/PC/SystemVersion@226#TID=0":"10.0.19045"
"Engine/Scripts/PrimaryBlobModifiedDate@235#TID=0":"134020895866810433"
"Engine/Scripts/FallbackBlobModifiedDate@236#TID=0":"0"
"Engine/Scripts/BlobPathUsed@237#TID=0":"Loaded"
"Engine/Scripts/ShouldCompileScripts@233#TID=0":"true"
"Engine/Scripts/CompileScriptsSuccess@234#TID=0":"false"
"Engine/Scripts/Loaded@238#TID=0":"true"
"Telemetry/PlaythroughID@1768662#TID=0":"69e857a3ebf988d1"
"Telemetry/VisitID@49206#TID=0":"ddd6ed0f-b130-41dc-b1af-cbb1e6b4797e"
"Streaming/LastObserverPosition@2274492#TID=0":"[-1569, 1213, 18]"
"Streaming/IsLastObserverPositionValid@2274493#TID=0":"true"
"Streaming/IsTeleporting@2274494#TID=0":"false"
"Streaming/DebugLastTeleportDistance@2274495#TID=0":"0.000000"
"Streaming/MountState@1768639#TID=0":"Mounted"
"Streaming/Observer/0/LastObserverPosition@2274489#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/LastObserverVelocityOffsetPosition@2274490#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/UseStreamingOcclusion@2274491#TID=0":"false"
"##CrashDump##/DumpCrashDataSeconds":"0"
@@ -0,0 +1,4 @@
Error reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>(0)
@@ -0,0 +1,15 @@
2026-06-27 04:53:16.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6fffeff10000 sdk=0x725e9e78 runtime=2.3.1
2026-06-27 04:53:16.001 +1ms registered Running game-state callbacks
2026-06-27 04:53:16.009 +9ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 04:53:16.016 +16ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 04:53:16.023 +23ms hook attach GPSNodeMultiplier 0x40bb40 target=0x14040bb40 rva=0x40bb40 result=ok original=0x1018c0540
2026-06-27 04:53:33.116 +17116ms GameState Running OnEnter app=0x31fb80
2026-06-27 04:53:33.147 +17147ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 04:53:33.154 +17154ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 04:53:33.161 +17161ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 04:53:33.168 +17168ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 04:53:33.174 +17174ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 04:54:03.208 +47208ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x199001390 query=0x79cbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2043348996/0x79cb0804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3741,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:54:03.208 +47208ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 04:54:03.208 +47208ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x199001390 query=0x79cbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3741,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:54:03.208 +47208ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
@@ -0,0 +1,145 @@
Registered crash info file...
InternalVersion: 3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release
!!!CRASHED!!!
Error Reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>
Line: 0
"uptimeSeconds":47
"stopThreadID":424
"exceptionCode":0xC0000005
"processID":372
"Engine/CommitFailedErrorCode@1#TID=0":"0"
"ResourceLoaderThrottler/PreviousSpeed@883287#TID=0":"Flood"
"ResourceLoaderThrottler/CurrentSpeed@883288#TID=0":"Stream"
"ResourceLoaderThrottler/NumThrottleTokensAcquired@891857#TID=0":"1"
"ResourceLoaderThrottler/NumThrottleTokensSoftLimit@891856#TID=0":"2"
"Gpu/RayTracing/Enabled@256#TID=0":"false"
"Configuration/Name@2#TID=0":"FINAL"
"Configuration/Name2@3#TID=0":"FINAL"
"Game/Patch@7#TID=0":"2.31"
"Game/TransformAnimator/Components@891262#TID=0":"315"
"Game/TransformAnimator/RunningComponents@891261#TID=0":"271"
"Game/TransformAnimator/AddedRunningComponents@891258#TID=0":"0"
"Game/TransformAnimator/RemovedRunningAnimations@891259#TID=0":"0"
"Game/TransformAnimator/RotatingMeshNodes@891260#TID=0":"120"
"Game/TransformAnimator/AddedRotatingMeshNodes@891256#TID=0":"0"
"Game/TransformAnimator/RemovedRotatingMeshNodes@891257#TID=0":"0"
"Game/SessionDesc/WorldName@271043#TID=0":"03_night_city"
"Game/SessionDesc/IsValid@271044#TID=0":"true"
"Game/SessionDesc/IsLoadingSavedSession@271045#TID=0":"true"
"Game/SessionDesc/IsJoiningRemoteSession@271046#TID=0":"false"
"Game/SessionDesc/HostName@271047#TID=0":""
"Game/SessionDesc/GameRulesConfig@271048#TID=0":"None"
"Game/SessionDesc/SpawnLocalPlayer@271049#TID=0":"false"
"Game/SessionDesc/SpawnPoint@271050#TID=0":"Position=[0, 0, 0, 0] Rotation=[Roll:0, Pitch:0, Yaw:0]"
"Game/SessionDesc/SpawnRecordId@271051#TID=0":"<0x0000001C15982ADF>"
"Game/SessionDesc/Gender@271052#TID=0":"None"
"GameSessionDesc/UseSpecifiedStartPoint@271053#TID=0":"false"
"GameSessionDesc/IsSpectator@271054#TID=0":"false"
"GameSessionDesc/SpawnTags@271055#TID=0":""
"Game/SessionDesc/IsStreamingTestRequested@271056#TID=0":"false"
"Game/SessionDesc/IsBenchmark@271057#TID=0":"false"
"Game/GameEffects/RunningEffects@891660#TID=0":"1"
"Game/GameEffects/AddedEffects@891659#TID=0":"0"
"Game/GameEffects/TerminatingEffects@891661#TID=0":"1"
"Game/Interactions/DialogVisualizerTotalCount@891598#TID=0":"0"
"Game/Interactions/DeviceVisualizerTotalCount@891599#TID=0":"0"
"Game/Interactions/LootVisualizerTotalCount@891600#TID=0":"0"
"Game/Interactions/HotSpots/CurrentCount@891605#TID=0":"406"
"Game/Interactions/HotSpots/MaxCount@891606#TID=0":"539"
"Game/Interactions/HotSpots/LastFrameAddedCount@891601#TID=0":"0"
"Game/Interactions/HotSpots/MaxAddedCount@891602#TID=0":"577"
"Game/Interactions/HotSpots/LastFrameRemovedCount@891603#TID=0":"0"
"Game/Interactions/HotSpots/MaxRemovedCount@891604#TID=0":"139"
"Game/Interactions/UniqueLayersCurrentCount@891607#TID=0":"3323"
"Game/Interactions/UniqueLayersMaxCount@891608#TID=0":"4682"
"Game/Interactions/EventsLastFrameCount@891596#TID=0":"0"
"Game/Interactions/EventsMaxCount@891597#TID=0":"25"
"Game/PlayerStateMachine/numberOfStateMachines@801419#TID=0":"10"
"Game/TransactionSystem/NumberOfItemsInPlayersInventory@406887#TID=0":"620"
"Game/TransactionSystem/NumberOfItemsInPlayersStash@606182#TID=0":"813"
"Game/StatsSystem/NumberOfStatsBundles@890653#TID=0":"2355"
"Game/StatPoolsSystem/MaxNumberOfStatPoolListenersOnObject@796426#TID=0":"10"
"Game/StatsSystem/MaxNumberOfStatModifiersOfStatTypeOnObject@796901#TID=0":"99"
"Game/StatsSystem/NameOfMaxNumberOfStatModifiersOnObjectStatType@796902#TID=0":"StaminaRatio"
"Game/mounting/MountingFacility/numberOfGameplayMounts@800175#TID=0":"1"
"Game/mounting/MountingFacility/numberOfMountEvents@800036#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPrePooledOwners@407020#TID=0":"1"
"Game/ItemFactorySystemPool/numberOfPrePooledItems@270847#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPostPooledItems@270845#TID=0":"0"
"Game/ItemFactorySystem/numberOfOwnerDatas@407021#TID=0":"1"
"Game/ItemFactorySystem/numberOfItemsWithNoOwner@270844#TID=0":"0"
"Game/ItemFactorySystem/numberOfCachedOwners@407019#TID=0":"1"
"Game/ItemFactorySystem/numberOfCachedItems@699885#TID=0":"7"
"Game/ItemFactorySystem/numberOfUncachedOwners@889000#TID=0":"107"
"Game/ItemFactorySystem/numberOfUncachedItems@891619#TID=0":"127"
"Game/StatPoolsSystem/MaxNumberOfUnassignedStatPoolListeners@799211#TID=0":"5207"
"Game/StatsSystem/MaxNumberOfStatsListenersOnObject@798882#TID=0":"207"
"Game/StatsSystem/MaxNumberOfStatsCallbackData@790981#TID=0":"267"
"Game/mounting/LowLevelSystem/numberOfAssociations@799839#TID=0":"14"
"Game/ItemFactorySystemLowLevel/numberOfSpawnRequests@891620#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfReleaseRequests@830096#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfCancelRequests@270879#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfAppearanceChangeRequests@813221#TID=0":"0"
"Game/Population/AlwaysSpawned@891420#TID=0":"18"
"Game/Population/Attached@891421#TID=0":"221"
"Game/Population/Registered@891422#TID=0":"4462"
"Game/Population/InBucket@891423#TID=0":"1001"
"Game/Population/VisQueries@891424#TID=0":"2002"
"Rendering/AsyncCompute@891839#TID=0":"true"
"Game/LoadingStage@883286#TID=0":"Finished"
"Session/GameDefinitionName@270834#TID=0":""
"Engine/OOM@4#TID=0":"false"
"GlobalMode/IsClosing@5#TID=0":"false"
"GlobalMode/IsGame@17#TID=0":"true"
"Jobs/InitParam/MaxLatentJobs@8#TID=0":"131072"
"Jobs/InitParam/MaxCriticalPathJobs@9#TID=0":"65536"
"Jobs/InitParam/MaxImmediateJobs@10#TID=0":"2048"
"Jobs/InitParam/WorkerThreadStackSizeKB@11#TID=0":"1024"
"Jobs/InitParam/MaxThreads@12#TID=0":"27"
"Jobs/InitParam/AllJobsCriticalPath@14#TID=0":"false"
"Jobs/InitParam/UseJobDebugger@13#TID=0":"false"
"Jobs/Dispatcher/NumDispatcherThreads@15#TID=0":"11"
"Jobs/Dispatcher/MaxHWConcurrency@16#TID=0":"12"
"Gpu/Device/Name@251#TID=0":"AMD Radeon RX 7900 XT (RADV NAVI31)"
"Gpu/Device/Vendor@252#TID=0":"AMD"
"Gpu/Device/DriverVersion@253#TID=0":"Radeon software 99.10.2"
"Gpu/Device/TotalMemoryMB@250#TID=0":"20464"
"Gpu/Device/UsedMemoryMB@891858#TID=0":"5614"
"Engine/SafeInit@48012#TID=0":"Finished"
"Engine/IsHeadless@228#TID=0":"false"
"Engine/VersionWatermark@227#TID=0":"3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release Aug 27 2025 17:30:27 (FINAL) Total memory: 11598729216 bytes [EP1]"
"Engine/InitParams/InteropStartingPort@213#TID=0":"0"
"Engine/InitParams/RenderPreset@214#TID=0":"1"
"Engine/InitParams/QualityLevelName@215#TID=0":"None"
"Engine/InitParams/TextureQualityLevelName@216#TID=0":"High"
"Engine/InitParams/WatchdogTimeoutSecondsOverride@217#TID=0":"0"
"Engine/InitParams/ScriptsSilentCompilation@218#TID=0":"false"
"Engine/InitParams/ScriptsSilentValidation@219#TID=0":"false"
"Engine/InitParams/TweakDBSilentValidation@220#TID=0":"false"
"Engine/InitParams/PvdDumpToFile@221#TID=0":"false"
"Engine/InitParams/ProfilerEnabled@222#TID=0":"false"
"Engine/InitParams/ShowVersionWatermark@223#TID=0":"true"
"Engine/InitParams/WindowCaption@224#TID=0":""
"Engine/PC/SystemName@225#TID=0":"Windows 10 Pro"
"Engine/PC/SystemVersion@226#TID=0":"10.0.19045"
"Engine/Scripts/PrimaryBlobModifiedDate@235#TID=0":"134020895866810433"
"Engine/Scripts/FallbackBlobModifiedDate@236#TID=0":"0"
"Engine/Scripts/BlobPathUsed@237#TID=0":"Loaded"
"Engine/Scripts/ShouldCompileScripts@233#TID=0":"true"
"Engine/Scripts/CompileScriptsSuccess@234#TID=0":"false"
"Engine/Scripts/Loaded@238#TID=0":"true"
"Telemetry/PlaythroughID@386977#TID=0":"69e857a3ebf988d1"
"Telemetry/VisitID@49737#TID=0":"25e0da41-9ece-4bbb-b389-692e511be993"
"Streaming/LastObserverPosition@891639#TID=0":"[-1569, 1213, 18]"
"Streaming/IsLastObserverPositionValid@891640#TID=0":"true"
"Streaming/IsTeleporting@891641#TID=0":"false"
"Streaming/DebugLastTeleportDistance@891642#TID=0":"0.000000"
"Streaming/MountState@386954#TID=0":"Mounted"
"Streaming/Observer/0/LastObserverPosition@891636#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/LastObserverVelocityOffsetPosition@891637#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/UseStreamingOcclusion@891638#TID=0":"false"
"##CrashDump##/DumpCrashDataSeconds":"0"
@@ -0,0 +1,4 @@
Error reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>(0)
@@ -0,0 +1,15 @@
2026-06-27 05:03:11.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff0570000 sdk=0x7f9fcf48 runtime=2.3.1
2026-06-27 05:03:11.001 +1ms registered Running game-state callbacks
2026-06-27 05:03:11.008 +8ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 05:03:11.015 +15ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 05:03:11.029 +29ms hook attach GPSNodeMultiplier 0x40bb40 target=0x14040bb40 rva=0x40bb40 result=ok original=0x1018c0540
2026-06-27 05:03:28.861 +16861ms GameState Running OnEnter app=0x31fb80
2026-06-27 05:03:28.887 +16887ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 05:03:28.894 +16894ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 05:03:28.901 +16901ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 05:03:28.907 +16907ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 05:03:28.914 +16914ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 05:04:00.752 +48752ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a2e157d0 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:04:00.752 +48752ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 05:04:00.752 +48752ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a2e157d0 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3737,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:04:00.752 +48752ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
@@ -0,0 +1,145 @@
Registered crash info file...
InternalVersion: 3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release
!!!CRASHED!!!
Error Reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>
Line: 0
"uptimeSeconds":48
"stopThreadID":448
"exceptionCode":0xC0000005
"processID":368
"Engine/CommitFailedErrorCode@1#TID=0":"0"
"ResourceLoaderThrottler/PreviousSpeed@908858#TID=0":"Flood"
"ResourceLoaderThrottler/CurrentSpeed@908859#TID=0":"Stream"
"ResourceLoaderThrottler/NumThrottleTokensAcquired@916696#TID=0":"1"
"ResourceLoaderThrottler/NumThrottleTokensSoftLimit@916695#TID=0":"2"
"Gpu/RayTracing/Enabled@256#TID=0":"false"
"Configuration/Name@2#TID=0":"FINAL"
"Configuration/Name2@3#TID=0":"FINAL"
"Game/Patch@7#TID=0":"2.31"
"Game/TransformAnimator/Components@916123#TID=0":"315"
"Game/TransformAnimator/RunningComponents@916122#TID=0":"271"
"Game/TransformAnimator/AddedRunningComponents@916120#TID=0":"0"
"Game/TransformAnimator/RemovedRunningAnimations@916121#TID=0":"0"
"Game/TransformAnimator/RotatingMeshNodes@916126#TID=0":"120"
"Game/TransformAnimator/AddedRotatingMeshNodes@916124#TID=0":"0"
"Game/TransformAnimator/RemovedRotatingMeshNodes@916125#TID=0":"0"
"Game/SessionDesc/WorldName@276998#TID=0":"03_night_city"
"Game/SessionDesc/IsValid@276999#TID=0":"true"
"Game/SessionDesc/IsLoadingSavedSession@277000#TID=0":"true"
"Game/SessionDesc/IsJoiningRemoteSession@277001#TID=0":"false"
"Game/SessionDesc/HostName@277002#TID=0":""
"Game/SessionDesc/GameRulesConfig@277003#TID=0":"None"
"Game/SessionDesc/SpawnLocalPlayer@277004#TID=0":"false"
"Game/SessionDesc/SpawnPoint@277005#TID=0":"Position=[0, 0, 0, 0] Rotation=[Roll:0, Pitch:0, Yaw:0]"
"Game/SessionDesc/SpawnRecordId@277006#TID=0":"<0x0000001C15982ADF>"
"Game/SessionDesc/Gender@277007#TID=0":"None"
"GameSessionDesc/UseSpecifiedStartPoint@277008#TID=0":"false"
"GameSessionDesc/IsSpectator@277009#TID=0":"false"
"GameSessionDesc/SpawnTags@277010#TID=0":""
"Game/SessionDesc/IsStreamingTestRequested@277011#TID=0":"false"
"Game/SessionDesc/IsBenchmark@277012#TID=0":"false"
"Game/GameEffects/RunningEffects@916520#TID=0":"1"
"Game/GameEffects/AddedEffects@916518#TID=0":"1"
"Game/GameEffects/TerminatingEffects@916521#TID=0":"0"
"Game/Interactions/DialogVisualizerTotalCount@916461#TID=0":"0"
"Game/Interactions/DeviceVisualizerTotalCount@916462#TID=0":"0"
"Game/Interactions/LootVisualizerTotalCount@916463#TID=0":"0"
"Game/Interactions/HotSpots/CurrentCount@916468#TID=0":"405"
"Game/Interactions/HotSpots/MaxCount@916469#TID=0":"528"
"Game/Interactions/HotSpots/LastFrameAddedCount@916464#TID=0":"0"
"Game/Interactions/HotSpots/MaxAddedCount@916465#TID=0":"566"
"Game/Interactions/HotSpots/LastFrameRemovedCount@916466#TID=0":"0"
"Game/Interactions/HotSpots/MaxRemovedCount@916467#TID=0":"128"
"Game/Interactions/UniqueLayersCurrentCount@916470#TID=0":"3310"
"Game/Interactions/UniqueLayersMaxCount@916471#TID=0":"4539"
"Game/Interactions/EventsLastFrameCount@916459#TID=0":"0"
"Game/Interactions/EventsMaxCount@916460#TID=0":"25"
"Game/PlayerStateMachine/numberOfStateMachines@827197#TID=0":"10"
"Game/TransactionSystem/NumberOfItemsInPlayersInventory@422220#TID=0":"620"
"Game/TransactionSystem/NumberOfItemsInPlayersStash@621662#TID=0":"813"
"Game/StatsSystem/NumberOfStatsBundles@915530#TID=0":"2353"
"Game/StatPoolsSystem/MaxNumberOfStatPoolListenersOnObject@822465#TID=0":"10"
"Game/StatsSystem/MaxNumberOfStatModifiersOfStatTypeOnObject@823059#TID=0":"99"
"Game/StatsSystem/NameOfMaxNumberOfStatModifiersOnObjectStatType@823060#TID=0":"StaminaRatio"
"Game/mounting/MountingFacility/numberOfGameplayMounts@826118#TID=0":"1"
"Game/mounting/MountingFacility/numberOfMountEvents@825990#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPrePooledOwners@422304#TID=0":"1"
"Game/ItemFactorySystemPool/numberOfPrePooledItems@276804#TID=0":"0"
"Game/ItemFactorySystemPool/numberOfPostPooledItems@276802#TID=0":"0"
"Game/ItemFactorySystem/numberOfOwnerDatas@422305#TID=0":"1"
"Game/ItemFactorySystem/numberOfItemsWithNoOwner@276801#TID=0":"0"
"Game/ItemFactorySystem/numberOfCachedOwners@422303#TID=0":"1"
"Game/ItemFactorySystem/numberOfCachedItems@696725#TID=0":"7"
"Game/ItemFactorySystem/numberOfUncachedOwners@913876#TID=0":"106"
"Game/ItemFactorySystem/numberOfUncachedItems@914747#TID=0":"128"
"Game/StatPoolsSystem/MaxNumberOfUnassignedStatPoolListeners@825246#TID=0":"5172"
"Game/StatsSystem/MaxNumberOfStatsListenersOnObject@824938#TID=0":"207"
"Game/StatsSystem/MaxNumberOfStatsCallbackData@817039#TID=0":"267"
"Game/mounting/LowLevelSystem/numberOfAssociations@825781#TID=0":"14"
"Game/ItemFactorySystemLowLevel/numberOfSpawnRequests@914748#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfReleaseRequests@825658#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfCancelRequests@276836#TID=0":"0"
"Game/ItemFactorySystemLowLevel/numberOfAppearanceChangeRequests@840034#TID=0":"0"
"Game/Population/AlwaysSpawned@916330#TID=0":"18"
"Game/Population/Attached@916331#TID=0":"220"
"Game/Population/Registered@916332#TID=0":"4459"
"Game/Population/InBucket@916333#TID=0":"997"
"Game/Population/VisQueries@916334#TID=0":"1994"
"Rendering/AsyncCompute@916665#TID=0":"true"
"Game/LoadingStage@908857#TID=0":"Finished"
"Session/GameDefinitionName@276791#TID=0":""
"Engine/OOM@4#TID=0":"false"
"GlobalMode/IsClosing@5#TID=0":"false"
"GlobalMode/IsGame@17#TID=0":"true"
"Jobs/InitParam/MaxLatentJobs@8#TID=0":"131072"
"Jobs/InitParam/MaxCriticalPathJobs@9#TID=0":"65536"
"Jobs/InitParam/MaxImmediateJobs@10#TID=0":"2048"
"Jobs/InitParam/WorkerThreadStackSizeKB@11#TID=0":"1024"
"Jobs/InitParam/MaxThreads@12#TID=0":"27"
"Jobs/InitParam/AllJobsCriticalPath@14#TID=0":"false"
"Jobs/InitParam/UseJobDebugger@13#TID=0":"false"
"Jobs/Dispatcher/NumDispatcherThreads@15#TID=0":"11"
"Jobs/Dispatcher/MaxHWConcurrency@16#TID=0":"12"
"Gpu/Device/Name@251#TID=0":"AMD Radeon RX 7900 XT (RADV NAVI31)"
"Gpu/Device/Vendor@252#TID=0":"AMD"
"Gpu/Device/DriverVersion@253#TID=0":"Radeon software 99.10.2"
"Gpu/Device/TotalMemoryMB@250#TID=0":"20464"
"Gpu/Device/UsedMemoryMB@916697#TID=0":"5608"
"Engine/SafeInit@47935#TID=0":"Finished"
"Engine/IsHeadless@228#TID=0":"false"
"Engine/VersionWatermark@227#TID=0":"3.0.5294808 P4CL: 9778208 Stream: //R6.Root/R6.Release Aug 27 2025 17:30:27 (FINAL) Total memory: 11711623168 bytes [EP1]"
"Engine/InitParams/InteropStartingPort@213#TID=0":"0"
"Engine/InitParams/RenderPreset@214#TID=0":"1"
"Engine/InitParams/QualityLevelName@215#TID=0":"None"
"Engine/InitParams/TextureQualityLevelName@216#TID=0":"High"
"Engine/InitParams/WatchdogTimeoutSecondsOverride@217#TID=0":"0"
"Engine/InitParams/ScriptsSilentCompilation@218#TID=0":"false"
"Engine/InitParams/ScriptsSilentValidation@219#TID=0":"false"
"Engine/InitParams/TweakDBSilentValidation@220#TID=0":"false"
"Engine/InitParams/PvdDumpToFile@221#TID=0":"false"
"Engine/InitParams/ProfilerEnabled@222#TID=0":"false"
"Engine/InitParams/ShowVersionWatermark@223#TID=0":"true"
"Engine/InitParams/WindowCaption@224#TID=0":""
"Engine/PC/SystemName@225#TID=0":"Windows 10 Pro"
"Engine/PC/SystemVersion@226#TID=0":"10.0.19045"
"Engine/Scripts/PrimaryBlobModifiedDate@235#TID=0":"134020895866810433"
"Engine/Scripts/FallbackBlobModifiedDate@236#TID=0":"0"
"Engine/Scripts/BlobPathUsed@237#TID=0":"Loaded"
"Engine/Scripts/ShouldCompileScripts@233#TID=0":"true"
"Engine/Scripts/CompileScriptsSuccess@234#TID=0":"false"
"Engine/Scripts/Loaded@238#TID=0":"true"
"Telemetry/PlaythroughID@393001#TID=0":"69e857a3ebf988d1"
"Telemetry/VisitID@49233#TID=0":"16cb284d-6d0f-4c08-966d-6e23557e7428"
"Streaming/LastObserverPosition@916499#TID=0":"[-1569, 1213, 18]"
"Streaming/IsLastObserverPositionValid@916500#TID=0":"true"
"Streaming/IsTeleporting@916501#TID=0":"false"
"Streaming/DebugLastTeleportDistance@916502#TID=0":"0.000000"
"Streaming/MountState@392989#TID=0":"Mounted"
"Streaming/Observer/0/LastObserverPosition@916496#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/LastObserverVelocityOffsetPosition@916497#TID=0":"[-1569, 1213, 18]"
"Streaming/Observer/0/UseStreamingOcclusion@916498#TID=0":"false"
"##CrashDump##/DumpCrashDataSeconds":"0"
@@ -0,0 +1,4 @@
Error reason: Unhandled exception
Expression: EXCEPTION_ACCESS_VIOLATION (0xC0000005)
Message: The thread attempted to read inaccessible data at 0x8C.
File: <Unknown>(0)
File diff suppressed because one or more lines are too long
@@ -0,0 +1,26 @@
2026-06-20 21:45:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05a0000 sdk=0x7f643b88 runtime=2.3.1
2026-06-20 21:45:17.000 +0ms registered Running game-state callbacks
2026-06-20 21:45:17.007 +7ms hook attach GPSRouteJobStart 0x818928 target=0x140818928 rva=0x818928 result=ok original=0x1018c0480
2026-06-20 21:45:35.547 +18547ms GameState Running OnEnter app=0x31fb80
2026-06-20 21:45:35.589 +18589ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-20 21:45:35.596 +18596ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-20 21:45:35.602 +18602ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-20 21:45:35.609 +18609ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-20 21:45:35.616 +18616ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-20 21:46:27.606 +70606ms gps-cost-table-patch applied patchCall=0 routeJobStartCall=0 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:46:27.608 +70608ms gps-cost-table-patch restored patchCall=1 routeJobStartCall=0 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:46:54.160 +97160ms gps-cost-table-patch applied patchCall=2 routeJobStartCall=4 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:46:54.162 +97162ms gps-cost-table-patch restored patchCall=3 routeJobStartCall=4 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:46:59.760 +102760ms gps-cost-table-patch applied patchCall=4 routeJobStartCall=5 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:46:59.761 +102761ms gps-cost-table-patch restored patchCall=5 routeJobStartCall=5 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:01.982 +103982ms gps-cost-table-patch applied patchCall=6 routeJobStartCall=6 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:01.984 +103984ms gps-cost-table-patch restored patchCall=7 routeJobStartCall=6 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.118 +106118ms gps-cost-table-patch applied patchCall=8 routeJobStartCall=7 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.121 +106121ms gps-cost-table-patch restored patchCall=9 routeJobStartCall=7 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.132 +106132ms gps-cost-table-patch applied patchCall=10 routeJobStartCall=8 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.135 +106135ms gps-cost-table-patch restored patchCall=11 routeJobStartCall=8 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.146 +106146ms gps-cost-table-patch applied patchCall=12 routeJobStartCall=9 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.149 +106149ms gps-cost-table-patch restored patchCall=13 routeJobStartCall=9 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.161 +106161ms gps-cost-table-patch applied patchCall=14 routeJobStartCall=10 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:47:03.164 +106164ms gps-cost-table-patch restored patchCall=15 routeJobStartCall=10 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
2026-06-20 21:48:04.374 +167374ms GameState Running OnExit app=0x31fb80
@@ -0,0 +1,105 @@
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,906 @@
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
2026-06-27 09:35:22.127 +725127ms hook GPSQuerySubmit 0x70a42c call=15 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:22.133 +725133ms hook GPSQuerySubmit result call=15 queryId=15 manager_nextIdD4=16/0x10
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124845 queryId=15 tracked=1 perQueryCall=4 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:23.178 +725178ms gps-momentum-summary queryId=15 resultFetchCall=5 submitCall=15 submitRetRva=0x8d20d4 callsA=14348 callsB=15057 callsTotal=29405 fixedPenalty=80 penaltyTotal=2.3524e+06 globalCallsA=3699988 globalCallsB=3941451 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124846 queryId=15 tracked=1 perQueryCall=5 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124847 queryId=15 tracked=1 perQueryCall=6 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit 0x70a42c call=16 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit result call=16 queryId=16 manager_nextIdD4=17/0x11
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125111 queryId=16 tracked=1 perQueryCall=4 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:24.540 +726540ms gps-momentum-summary queryId=16 resultFetchCall=5 submitCall=16 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3712712 globalCallsB=3954874 gpsResultRouteCount=12 gpsResult=0x7993fbb0 gpsResult_routeData=0x196a5cdb0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125112 queryId=16 tracked=1 perQueryCall=5 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc0000000c
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125113 queryId=16 tracked=1 perQueryCall=6 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc
2026-06-27 09:35:24.120 +727120ms hook GPSQuerySubmit 0x70a42c call=17 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:24.121 +727121ms hook GPSQuerySubmit result call=17 queryId=17 manager_nextIdD4=18/0x12
2026-06-27 09:35:25.174 +727174ms hook GPSQueryResultFetch 0x7094b8 call=125242 queryId=17 tracked=1 perQueryCall=5 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:35:25.175 +727175ms gps-momentum-summary queryId=17 resultFetchCall=6 submitCall=17 submitRetRva=0x8d20d4 callsA=13285 callsB=13963 callsTotal=27248 fixedPenalty=80 penaltyTotal=2.17984e+06 globalCallsA=3725997 globalCallsB=3968837 gpsResultRouteCount=14 gpsResult=0x31db50 gpsResult_routeData=0x5a3705e80 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125243 queryId=17 tracked=1 perQueryCall=6 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe0000000e
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125244 queryId=17 tracked=1 perQueryCall=7 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit 0x70a42c call=18 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit result call=18 queryId=18 manager_nextIdD4=19/0x13
2026-06-27 09:35:25.859 +727859ms hook GPSQueryResultFetch 0x7094b8 call=125388 queryId=18 tracked=1 perQueryCall=3 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:25.860 +727860ms gps-momentum-summary queryId=18 resultFetchCall=4 submitCall=18 submitRetRva=0x8d20d4 callsA=3731 callsB=3872 callsTotal=7603 fixedPenalty=80 penaltyTotal=608240 globalCallsA=3729728 globalCallsB=3972709 gpsResultRouteCount=11 gpsResult=0x79d3fbb0 gpsResult_routeData=0x185de6d00 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125389 queryId=18 tracked=1 perQueryCall=4 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb0000000b
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125390 queryId=18 tracked=1 perQueryCall=5 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb
2026-06-27 09:35:26.267 +728267ms hook GPSQuerySubmit 0x70a42c call=19 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:26.268 +728268ms hook GPSQuerySubmit result call=19 queryId=19 manager_nextIdD4=20/0x14
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125483 queryId=19 tracked=1 perQueryCall=3 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:26.297 +728297ms gps-momentum-summary queryId=19 resultFetchCall=4 submitCall=19 submitRetRva=0x8d20d4 callsA=2922 callsB=3076 callsTotal=5998 fixedPenalty=80 penaltyTotal=479840 globalCallsA=3732650 globalCallsB=3975785 gpsResultRouteCount=10 gpsResult=0x79b3fbb0 gpsResult_routeData=0x18eebaaf0 gpsResult_routeCapacity=10 gpsResult_routeCount=10 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125484 queryId=19 tracked=1 perQueryCall=4 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa0000000a
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125485 queryId=19 tracked=1 perQueryCall=5 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit 0x70a42c call=20 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit result call=20 queryId=20 manager_nextIdD4=21/0x15
2026-06-27 09:35:26.054 +729054ms hook GPSQueryResultFetch 0x7094b8 call=125642 queryId=20 tracked=1 perQueryCall=3 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:26.054 +729054ms gps-momentum-summary queryId=20 resultFetchCall=4 submitCall=20 submitRetRva=0x8d20d4 callsA=7698 callsB=8002 callsTotal=15700 fixedPenalty=80 penaltyTotal=1.256e+06 globalCallsA=3740348 globalCallsB=3983787 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125643 queryId=20 tracked=1 perQueryCall=4 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125644 queryId=20 tracked=1 perQueryCall=5 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:35:27.937 +729937ms hook GPSQuerySubmit 0x70a42c call=21 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276198404/0x87ac0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:27.938 +729938ms hook GPSQuerySubmit result call=21 queryId=21 manager_nextIdD4=22/0x16
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125824 queryId=21 tracked=1 perQueryCall=3 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:27.969 +729969ms gps-momentum-summary queryId=21 resultFetchCall=4 submitCall=21 submitRetRva=0x8d20d4 callsA=3713 callsB=3882 callsTotal=7595 fixedPenalty=80 penaltyTotal=607600 globalCallsA=3744061 globalCallsB=3987669 gpsResultRouteCount=12 gpsResult=0x795efbb0 gpsResult_routeData=0x1a6925b60 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125825 queryId=21 tracked=1 perQueryCall=4 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc0000000c
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125826 queryId=21 tracked=1 perQueryCall=5 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit 0x70a42c call=22 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit result call=22 queryId=22 manager_nextIdD4=23/0x17
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126042 queryId=22 tracked=1 perQueryCall=3 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:35:28.003 +731003ms gps-momentum-summary queryId=22 resultFetchCall=4 submitCall=22 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3746004 globalCallsB=3989703 gpsResultRouteCount=7 gpsResult=0x31db50 gpsResult_routeData=0x1ac9cc650 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126043 queryId=22 tracked=1 perQueryCall=4 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x700000007
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126044 queryId=22 tracked=1 perQueryCall=5 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x7
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit 0x70a42c call=23 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit result call=23 queryId=23 manager_nextIdD4=24/0x18
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126449 queryId=23 tracked=1 perQueryCall=4 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:30.908 +732908ms gps-momentum-summary queryId=23 resultFetchCall=5 submitCall=23 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=3746503 globalCallsB=3990225 gpsResultRouteCount=5 gpsResult=0x794efbb0 gpsResult_routeData=0x19681caa0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126450 queryId=23 tracked=1 perQueryCall=5 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x500000005
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126451 queryId=23 tracked=1 perQueryCall=6 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126452 queryId=23 tracked=1 perQueryCall=7 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
2026-06-27 09:35:33.123 +736123ms hook GPSQuerySubmit 0x70a42c call=24 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:33.124 +736124ms hook GPSQuerySubmit result call=24 queryId=24 manager_nextIdD4=25/0x19
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127149 queryId=24 tracked=1 perQueryCall=3 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:34.156 +736156ms gps-momentum-summary queryId=24 resultFetchCall=4 submitCall=24 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3748446 globalCallsB=3992259 gpsResultRouteCount=7 gpsResult=0x795efbb0 gpsResult_routeData=0x1809282d0 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127150 queryId=24 tracked=1 perQueryCall=4 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x700000007
2026-06-27 09:35:34.157 +736157ms hook GPSQueryResultFetch 0x7094b8 call=127151 queryId=24 tracked=1 perQueryCall=5 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x7
2026-06-27 09:35:42.127 +745127ms hook GPSQuerySubmit 0x70a42c call=25 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:42.128 +745128ms hook GPSQuerySubmit result call=25 queryId=25 manager_nextIdD4=26/0x1a
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129108 queryId=25 tracked=1 perQueryCall=4 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:43.167 +745167ms gps-momentum-summary queryId=25 resultFetchCall=5 submitCall=25 submitRetRva=0x8d20d4 callsA=10197 callsB=10643 callsTotal=20840 fixedPenalty=80 penaltyTotal=1.6672e+06 globalCallsA=3758643 globalCallsB=4002902 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5bd3033e0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129109 queryId=25 tracked=1 perQueryCall=5 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129110 queryId=25 tracked=1 perQueryCall=6 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit 0x70a42c call=26 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit result call=26 queryId=26 manager_nextIdD4=27/0x1b
2026-06-27 09:35:43.609 +745609ms hook GPSQueryResultFetch 0x7094b8 call=129205 queryId=26 tracked=1 perQueryCall=4 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:43.610 +745610ms gps-momentum-summary queryId=26 resultFetchCall=5 submitCall=26 submitRetRva=0x8d20d4 callsA=9943 callsB=10437 callsTotal=20380 fixedPenalty=80 penaltyTotal=1.6304e+06 globalCallsA=3768586 globalCallsB=4013339 gpsResultRouteCount=20 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bdf2c270 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129206 queryId=26 tracked=1 perQueryCall=5 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1400000014
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129207 queryId=26 tracked=1 perQueryCall=6 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x14
2026-06-27 09:35:44.021 +747021ms hook GPSQuerySubmit 0x70a42c call=27 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:44.022 +747022ms hook GPSQuerySubmit result call=27 queryId=27 manager_nextIdD4=28/0x1c
2026-06-27 09:35:44.113 +747113ms hook GPSQueryResultFetch 0x7094b8 call=129515 queryId=27 tracked=1 perQueryCall=8 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:44.114 +747114ms gps-momentum-summary queryId=27 resultFetchCall=9 submitCall=27 submitRetRva=0x8d20d4 callsA=44200 callsB=46781 callsTotal=90981 fixedPenalty=80 penaltyTotal=7.27848e+06 globalCallsA=3812786 globalCallsB=4060120 gpsResultRouteCount=31 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a985f330 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129516 queryId=27 tracked=1 perQueryCall=9 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129517 queryId=27 tracked=1 perQueryCall=10 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:35:45.656 +747656ms hook GPSQuerySubmit 0x70a42c call=28 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:45.657 +747657ms hook GPSQuerySubmit result call=28 queryId=28 manager_nextIdD4=29/0x1d
2026-06-27 09:35:45.772 +747772ms hook GPSQueryResultFetch 0x7094b8 call=129649 queryId=28 tracked=1 perQueryCall=10 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:45.773 +747773ms gps-momentum-summary queryId=28 resultFetchCall=11 submitCall=28 submitRetRva=0x8d20d4 callsA=50704 callsB=53499 callsTotal=104203 fixedPenalty=80 penaltyTotal=8.33624e+06 globalCallsA=3863490 globalCallsB=4113619 gpsResultRouteCount=33 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59e138ee0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129650 queryId=28 tracked=1 perQueryCall=11 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2100000021
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129651 queryId=28 tracked=1 perQueryCall=12 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x21
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit 0x70a42c call=29 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit result call=29 queryId=29 manager_nextIdD4=30/0x1e
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129738 queryId=29 tracked=1 perQueryCall=6 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:46.226 +748226ms gps-momentum-summary queryId=29 resultFetchCall=7 submitCall=29 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=3886344 globalCallsB=4137637 gpsResultRouteCount=27 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd51c020 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129739 queryId=29 tracked=1 perQueryCall=7 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b0000001b
2026-06-27 09:35:46.227 +748227ms hook GPSQueryResultFetch 0x7094b8 call=129740 queryId=29 tracked=1 perQueryCall=8 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b
2026-06-27 09:35:46.662 +748662ms hook GPSQuerySubmit 0x70a42c call=30 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:46.663 +748663ms hook GPSQuerySubmit result call=30 queryId=30 manager_nextIdD4=31/0x1f
2026-06-27 09:35:46.718 +748718ms hook GPSQueryResultFetch 0x7094b8 call=129831 queryId=30 tracked=1 perQueryCall=5 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:46.719 +748719ms gps-momentum-summary queryId=30 resultFetchCall=6 submitCall=30 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3905083 globalCallsB=4157274 gpsResultRouteCount=23 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd77a1d0 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129832 queryId=30 tracked=1 perQueryCall=6 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1700000017
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129833 queryId=30 tracked=1 perQueryCall=7 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x17
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit 0x70a42c call=31 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit result call=31 queryId=31 manager_nextIdD4=32/0x20
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129930 queryId=31 tracked=1 perQueryCall=5 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:47.205 +749205ms gps-momentum-summary queryId=31 resultFetchCall=6 submitCall=31 submitRetRva=0x8d20d4 callsA=17164 callsB=17971 callsTotal=35135 fixedPenalty=80 penaltyTotal=2.8108e+06 globalCallsA=3922247 globalCallsB=4175245 gpsResultRouteCount=24 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ca92f0c0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129931 queryId=31 tracked=1 perQueryCall=6 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1800000018
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129932 queryId=31 tracked=1 perQueryCall=7 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x18
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit 0x70a42c call=32 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit result call=32 queryId=32 manager_nextIdD4=33/0x21
2026-06-27 09:35:47.016 +750016ms hook GPSQueryResultFetch 0x7094b8 call=130101 queryId=32 tracked=1 perQueryCall=5 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:47.016 +750016ms gps-momentum-summary queryId=32 resultFetchCall=6 submitCall=32 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3940986 globalCallsB=4194882 gpsResultRouteCount=23 gpsResult=0x79d3fbb0 gpsResult_routeData=0x596a4d890 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130102 queryId=32 tracked=1 perQueryCall=6 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1700000017
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130103 queryId=32 tracked=1 perQueryCall=7 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x17
2026-06-27 09:35:57.400 +759400ms hook GPSQuerySubmit 0x70a42c call=33 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:57.401 +759401ms hook GPSQuerySubmit result call=33 queryId=33 manager_nextIdD4=34/0x22
2026-06-27 09:35:57.442 +759442ms hook GPSQueryResultFetch 0x7094b8 call=132081 queryId=33 tracked=1 perQueryCall=4 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:57.442 +759442ms gps-momentum-summary queryId=33 resultFetchCall=5 submitCall=33 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3953710 globalCallsB=4208305 gpsResultRouteCount=12 gpsResult=0x7983fbb0 gpsResult_routeData=0x193232ce0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132082 queryId=33 tracked=1 perQueryCall=5 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc0000000c
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132083 queryId=33 tracked=1 perQueryCall=6 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit 0x70a42c call=34 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit result call=34 queryId=34 manager_nextIdD4=35/0x23
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132178 queryId=34 tracked=1 perQueryCall=6 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:57.925 +759925ms gps-momentum-summary queryId=34 resultFetchCall=7 submitCall=34 submitRetRva=0x8d20d4 callsA=24072 callsB=25316 callsTotal=49388 fixedPenalty=80 penaltyTotal=3.95104e+06 globalCallsA=3977782 globalCallsB=4233621 gpsResultRouteCount=19 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5be008000 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132179 queryId=34 tracked=1 perQueryCall=7 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132180 queryId=34 tracked=1 perQueryCall=8 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit 0x70a42c call=35 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit result call=35 queryId=35 manager_nextIdD4=36/0x24
2026-06-27 09:35:59.155 +761155ms hook GPSQueryResultFetch 0x7094b8 call=132428 queryId=35 tracked=1 perQueryCall=6 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:35:59.156 +761156ms gps-momentum-summary queryId=35 resultFetchCall=7 submitCall=35 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=4000636 globalCallsB=4257639 gpsResultRouteCount=27 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5ca177560 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132429 queryId=35 tracked=1 perQueryCall=7 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b0000001b
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132430 queryId=35 tracked=1 perQueryCall=8 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
2026-06-27 09:36:00.664 +762664ms hook GPSQueryResultFetch 0x7094b8 call=132742 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:00.665 +762665ms gps-momentum-summary queryId=36 resultFetchCall=8 submitCall=36 submitRetRva=0x8d20d4 callsA=28252 callsB=29593 callsTotal=57845 fixedPenalty=80 penaltyTotal=4.6276e+06 globalCallsA=4028888 globalCallsB=4287232 gpsResultRouteCount=28 gpsResult=0x7993fbb0 gpsResult_routeData=0x59aad5c20 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132743 queryId=36 tracked=1 perQueryCall=8 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132744 queryId=36 tracked=1 perQueryCall=9 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit 0x70a42c call=37 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit result call=37 queryId=37 manager_nextIdD4=38/0x26
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133096 queryId=37 tracked=1 perQueryCall=4 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:02.343 +764343ms gps-momentum-summary queryId=37 resultFetchCall=5 submitCall=37 submitRetRva=0x8d20d4 callsA=15129 callsB=15752 callsTotal=30881 fixedPenalty=80 penaltyTotal=2.47048e+06 globalCallsA=4044017 globalCallsB=4302984 gpsResultRouteCount=21 gpsResult=0x7983fbb0 gpsResult_routeData=0x594917790 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133097 queryId=37 tracked=1 perQueryCall=5 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1500000015
2026-06-27 09:36:02.344 +764344ms hook GPSQueryResultFetch 0x7094b8 call=133098 queryId=37 tracked=1 perQueryCall=6 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x15
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit 0x70a42c call=38 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit result call=38 queryId=38 manager_nextIdD4=39/0x27
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133352 queryId=38 tracked=1 perQueryCall=6 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:03.560 +765560ms gps-momentum-summary queryId=38 resultFetchCall=7 submitCall=38 submitRetRva=0x8d20d4 callsA=29965 callsB=31504 callsTotal=61469 fixedPenalty=80 penaltyTotal=4.91752e+06 globalCallsA=4073982 globalCallsB=4334488 gpsResultRouteCount=22 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5ae33c650 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133353 queryId=38 tracked=1 perQueryCall=7 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1600000016
2026-06-27 09:36:03.561 +765561ms hook GPSQueryResultFetch 0x7094b8 call=133354 queryId=38 tracked=1 perQueryCall=8 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x16
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit 0x70a42c call=39 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit result call=39 queryId=39 manager_nextIdD4=40/0x28
2026-06-27 09:36:04.366 +766366ms hook GPSQueryResultFetch 0x7094b8 call=133521 queryId=39 tracked=1 perQueryCall=8 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:04.366 +766366ms gps-momentum-summary queryId=39 resultFetchCall=9 submitCall=39 submitRetRva=0x8d20d4 callsA=31930 callsB=33528 callsTotal=65458 fixedPenalty=80 penaltyTotal=5.23664e+06 globalCallsA=4105912 globalCallsB=4368016 gpsResultRouteCount=24 gpsResult=0x795efbb0 gpsResult_routeData=0x595e1bbe0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133522 queryId=39 tracked=1 perQueryCall=9 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1800000018
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133523 queryId=39 tracked=1 perQueryCall=10 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x18
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit 0x70a42c call=40 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit result call=40 queryId=40 manager_nextIdD4=41/0x29
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133625 queryId=40 tracked=1 perQueryCall=6 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:04.874 +766874ms gps-momentum-summary queryId=40 resultFetchCall=7 submitCall=40 submitRetRva=0x8d20d4 callsA=23316 callsB=24499 callsTotal=47815 fixedPenalty=80 penaltyTotal=3.8252e+06 globalCallsA=4129228 globalCallsB=4392515 gpsResultRouteCount=25 gpsResult=0x795efbb0 gpsResult_routeData=0x5c634ddd0 gpsResult_routeCapacity=25 gpsResult_routeCount=25 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133626 queryId=40 tracked=1 perQueryCall=7 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1900000019
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133627 queryId=40 tracked=1 perQueryCall=8 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x19
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit 0x70a42c call=41 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit result call=41 queryId=41 manager_nextIdD4=42/0x2a
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133754 queryId=41 tracked=1 perQueryCall=7 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:05.514 +767514ms gps-momentum-summary queryId=41 resultFetchCall=8 submitCall=41 submitRetRva=0x8d20d4 callsA=28141 callsB=29493 callsTotal=57634 fixedPenalty=80 penaltyTotal=4.61072e+06 globalCallsA=4157369 globalCallsB=4422008 gpsResultRouteCount=29 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c557e970 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133755 queryId=41 tracked=1 perQueryCall=8 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d0000001d
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133756 queryId=41 tracked=1 perQueryCall=9 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d
2026-06-27 09:36:05.074 +768074ms hook GPSQuerySubmit 0x70a42c call=42 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:05.075 +768075ms hook GPSQuerySubmit result call=42 queryId=42 manager_nextIdD4=43/0x2b
2026-06-27 09:36:05.104 +768104ms hook GPSQueryResultFetch 0x7094b8 call=133871 queryId=42 tracked=1 perQueryCall=3 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:05.105 +768105ms gps-momentum-summary queryId=42 resultFetchCall=4 submitCall=42 submitRetRva=0x8d20d4 callsA=8784 callsB=9145 callsTotal=17929 fixedPenalty=80 penaltyTotal=1.43432e+06 globalCallsA=4166153 globalCallsB=4431153 gpsResultRouteCount=17 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa16a190 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133872 queryId=42 tracked=1 perQueryCall=4 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1100000011
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133873 queryId=42 tracked=1 perQueryCall=5 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x11
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit 0x70a42c call=43 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit result call=43 queryId=43 manager_nextIdD4=44/0x2c
2026-06-27 09:36:06.775 +768775ms hook GPSQueryResultFetch 0x7094b8 call=134008 queryId=43 tracked=1 perQueryCall=3 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:06.776 +768776ms gps-momentum-summary queryId=43 resultFetchCall=4 submitCall=43 submitRetRva=0x8d20d4 callsA=4614 callsB=4803 callsTotal=9417 fixedPenalty=80 penaltyTotal=753360 globalCallsA=4170767 globalCallsB=4435956 gpsResultRouteCount=13 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134009 queryId=43 tracked=1 perQueryCall=4 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134010 queryId=43 tracked=1 perQueryCall=5 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:06.117 +769117ms hook GPSQuerySubmit 0x70a42c call=44 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:06.118 +769118ms hook GPSQuerySubmit result call=44 queryId=44 manager_nextIdD4=45/0x2d
2026-06-27 09:36:07.148 +769148ms hook GPSQueryResultFetch 0x7094b8 call=134085 queryId=44 tracked=1 perQueryCall=3 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:07.149 +769149ms gps-momentum-summary queryId=44 resultFetchCall=4 submitCall=44 submitRetRva=0x8d20d4 callsA=5274 callsB=5528 callsTotal=10802 fixedPenalty=80 penaltyTotal=864160 globalCallsA=4176041 globalCallsB=4441484 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcee7f50 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134086 queryId=44 tracked=1 perQueryCall=4 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134087 queryId=44 tracked=1 perQueryCall=5 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134270 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:07.052 +770052ms gps-momentum-summary queryId=45 resultFetchCall=5 submitCall=45 submitRetRva=0x8d20d4 callsA=13737 callsB=14397 callsTotal=28134 fixedPenalty=80 penaltyTotal=2.25072e+06 globalCallsA=4189778 globalCallsB=4455881 gpsResultRouteCount=16 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcb66880 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134271 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1000000010
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134272 queryId=45 tracked=1 perQueryCall=6 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x10
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit 0x70a42c call=46 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit result call=46 queryId=46 manager_nextIdD4=47/0x2f
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134457 queryId=46 tracked=1 perQueryCall=4 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:08.960 +770960ms gps-momentum-summary queryId=46 resultFetchCall=5 submitCall=46 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=4190277 globalCallsB=4456403 gpsResultRouteCount=5 gpsResult=0x79e7fbb0 gpsResult_routeData=0x192926ac0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134458 queryId=46 tracked=1 perQueryCall=5 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x500000005
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134459 queryId=46 tracked=1 perQueryCall=6 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134460 queryId=46 tracked=1 perQueryCall=7 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit 0x70a42c call=47 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit result call=47 queryId=47 manager_nextIdD4=48/0x30
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134553 queryId=47 tracked=1 perQueryCall=4 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:09.414 +771414ms gps-momentum-summary queryId=47 resultFetchCall=5 submitCall=47 submitRetRva=0x8d20d4 callsA=5894 callsB=6155 callsTotal=12049 fixedPenalty=80 penaltyTotal=963920 globalCallsA=4196171 globalCallsB=4462558 gpsResultRouteCount=14 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b191ce90 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134554 queryId=47 tracked=1 perQueryCall=5 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe0000000e
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134555 queryId=47 tracked=1 perQueryCall=6 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
2026-06-27 09:36:09.415 +771415ms hook GPSQueryResultFetch 0x7094b8 call=134556 queryId=47 tracked=1 perQueryCall=7 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit 0x70a42c call=48 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit result call=48 queryId=48 manager_nextIdD4=49/0x31
2026-06-27 09:36:09.769 +771769ms hook GPSQueryResultFetch 0x7094b8 call=134631 queryId=48 tracked=1 perQueryCall=3 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:09.770 +771770ms gps-momentum-summary queryId=48 resultFetchCall=4 submitCall=48 submitRetRva=0x8d20d4 callsA=4751 callsB=4983 callsTotal=9734 fixedPenalty=80 penaltyTotal=778720 globalCallsA=4200922 globalCallsB=4467541 gpsResultRouteCount=13 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134632 queryId=48 tracked=1 perQueryCall=4 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134633 queryId=48 tracked=1 perQueryCall=5 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit 0x70a42c call=49 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit result call=49 queryId=49 manager_nextIdD4=50/0x32
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134806 queryId=49 tracked=1 perQueryCall=3 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:10.624 +772624ms gps-momentum-summary queryId=49 resultFetchCall=4 submitCall=49 submitRetRva=0x8d20d4 callsA=6693 callsB=6937 callsTotal=13630 fixedPenalty=80 penaltyTotal=1.0904e+06 globalCallsA=4207615 globalCallsB=4474478 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134807 queryId=49 tracked=1 perQueryCall=4 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:10.625 +772625ms hook GPSQueryResultFetch 0x7094b8 call=134808 queryId=49 tracked=1 perQueryCall=5 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit 0x70a42c call=50 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit result call=50 queryId=50 manager_nextIdD4=51/0x33
2026-06-27 09:36:11.989 +773989ms hook GPSQueryResultFetch 0x7094b8 call=135093 queryId=50 tracked=1 perQueryCall=3 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:11.990 +773990ms gps-momentum-summary queryId=50 resultFetchCall=4 submitCall=50 submitRetRva=0x8d20d4 callsA=7996 callsB=8328 callsTotal=16324 fixedPenalty=80 penaltyTotal=1.30592e+06 globalCallsA=4215611 globalCallsB=4482806 gpsResultRouteCount=15 gpsResult=0x793efbb0 gpsResult_routeData=0x595d8d1c0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135094 queryId=50 tracked=1 perQueryCall=4 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135095 queryId=50 tracked=1 perQueryCall=5 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1059260420/0x3f230804 query_f0c=1050273191/0x3e99e5a7 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135185 queryId=51 tracked=1 perQueryCall=4 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:12.422 +774422ms gps-momentum-summary queryId=51 resultFetchCall=5 submitCall=51 submitRetRva=0x8d20d4 callsA=8063 callsB=8392 callsTotal=16455 fixedPenalty=80 penaltyTotal=1.3164e+06 globalCallsA=4223674 globalCallsB=4491198 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3edcc90 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135186 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135187 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit 0x70a42c call=52 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit result call=52 queryId=52 manager_nextIdD4=53/0x35
2026-06-27 09:36:13.193 +775193ms hook GPSQueryResultFetch 0x7094b8 call=135347 queryId=52 tracked=1 perQueryCall=4 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:13.194 +775194ms gps-momentum-summary queryId=52 resultFetchCall=5 submitCall=52 submitRetRva=0x8d20d4 callsA=13309 callsB=13875 callsTotal=27184 fixedPenalty=80 penaltyTotal=2.17472e+06 globalCallsA=4236983 globalCallsB=4505073 gpsResultRouteCount=21 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c2b0cf50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135348 queryId=52 tracked=1 perQueryCall=5 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1500000015
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135349 queryId=52 tracked=1 perQueryCall=6 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x15
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit 0x70a42c call=53 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit result call=53 queryId=53 manager_nextIdD4=54/0x36
2026-06-27 09:36:13.456 +775456ms hook GPSQueryResultFetch 0x7094b8 call=135402 queryId=53 tracked=1 perQueryCall=3 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:13.457 +775457ms gps-momentum-summary queryId=53 resultFetchCall=4 submitCall=53 submitRetRva=0x8d20d4 callsA=9412 callsB=9760 callsTotal=19172 fixedPenalty=80 penaltyTotal=1.53376e+06 globalCallsA=4246395 globalCallsB=4514833 gpsResultRouteCount=18 gpsResult=0x796efbb0 gpsResult_routeData=0x5b7ed2350 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135403 queryId=53 tracked=1 perQueryCall=4 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135404 queryId=53 tracked=1 perQueryCall=5 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit 0x70a42c call=54 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit result call=54 queryId=54 manager_nextIdD4=55/0x37
2026-06-27 09:36:13.971 +775971ms hook GPSQueryResultFetch 0x7094b8 call=135513 queryId=54 tracked=1 perQueryCall=4 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:13.972 +775972ms gps-momentum-summary queryId=54 resultFetchCall=5 submitCall=54 submitRetRva=0x8d20d4 callsA=10685 callsB=11156 callsTotal=21841 fixedPenalty=80 penaltyTotal=1.74728e+06 globalCallsA=4257080 globalCallsB=4525989 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a3e3bdc0 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135514 queryId=54 tracked=1 perQueryCall=5 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135515 queryId=54 tracked=1 perQueryCall=6 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit 0x70a42c call=55 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit result call=55 queryId=55 manager_nextIdD4=56/0x38
2026-06-27 09:36:14.538 +776538ms hook GPSQueryResultFetch 0x7094b8 call=135630 queryId=55 tracked=1 perQueryCall=4 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:14.538 +776538ms gps-momentum-summary queryId=55 resultFetchCall=5 submitCall=55 submitRetRva=0x8d20d4 callsA=11831 callsB=12293 callsTotal=24124 fixedPenalty=80 penaltyTotal=1.92992e+06 globalCallsA=4268911 globalCallsB=4538282 gpsResultRouteCount=20 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5974151f0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135631 queryId=55 tracked=1 perQueryCall=5 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1400000014
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135632 queryId=55 tracked=1 perQueryCall=6 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x14
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit 0x70a42c call=56 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit result call=56 queryId=56 manager_nextIdD4=57/0x39
2026-06-27 09:36:14.869 +776869ms hook GPSQueryResultFetch 0x7094b8 call=135703 queryId=56 tracked=1 perQueryCall=4 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:36:14.870 +776870ms gps-momentum-summary queryId=56 resultFetchCall=5 submitCall=56 submitRetRva=0x8d20d4 callsA=13900 callsB=14543 callsTotal=28443 fixedPenalty=80 penaltyTotal=2.27544e+06 globalCallsA=4282811 globalCallsB=4552825 gpsResultRouteCount=22 gpsResult=0x31db50 gpsResult_routeData=0x597dc10d0 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135704 queryId=56 tracked=1 perQueryCall=5 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1600000016
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135705 queryId=56 tracked=1 perQueryCall=6 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x16
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit 0x70a42c call=57 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit result call=57 queryId=57 manager_nextIdD4=58/0x3a
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135824 queryId=57 tracked=1 perQueryCall=4 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:15.454 +777454ms gps-momentum-summary queryId=57 resultFetchCall=5 submitCall=57 submitRetRva=0x8d20d4 callsA=13497 callsB=14017 callsTotal=27514 fixedPenalty=80 penaltyTotal=2.20112e+06 globalCallsA=4296308 globalCallsB=4566842 gpsResultRouteCount=17 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a871b490 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135825 queryId=57 tracked=1 perQueryCall=5 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1100000011
2026-06-27 09:36:15.455 +777455ms hook GPSQueryResultFetch 0x7094b8 call=135826 queryId=57 tracked=1 perQueryCall=6 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x11
2026-06-27 09:36:16.639 +778639ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:16.640 +778640ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136089 queryId=58 tracked=1 perQueryCall=4 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:36:16.678 +778678ms gps-momentum-summary queryId=58 resultFetchCall=5 submitCall=58 submitRetRva=0x8d20d4 callsA=17440 callsB=18251 callsTotal=35691 fixedPenalty=80 penaltyTotal=2.85528e+06 globalCallsA=4313748 globalCallsB=4585093 gpsResultRouteCount=26 gpsResult=0x31db50 gpsResult_routeData=0x594b46d20 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136090 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a0000001a
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136091 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit 0x70a42c call=59 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit result call=59 queryId=59 manager_nextIdD4=60/0x3c
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136214 queryId=59 tracked=1 perQueryCall=5 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:36:17.233 +779233ms gps-momentum-summary queryId=59 resultFetchCall=6 submitCall=59 submitRetRva=0x8d20d4 callsA=22976 callsB=24139 callsTotal=47115 fixedPenalty=80 penaltyTotal=3.7692e+06 globalCallsA=4336724 globalCallsB=4609232 gpsResultRouteCount=31 gpsResult=0x31db50 gpsResult_routeData=0x5b18a4340 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136215 queryId=59 tracked=1 perQueryCall=6 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136216 queryId=59 tracked=1 perQueryCall=7 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit 0x70a42c call=60 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit result call=60 queryId=60 manager_nextIdD4=61/0x3d
2026-06-27 09:36:17.764 +779764ms hook GPSQueryResultFetch 0x7094b8 call=136333 queryId=60 tracked=1 perQueryCall=5 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:17.765 +779765ms gps-momentum-summary queryId=60 resultFetchCall=6 submitCall=60 submitRetRva=0x8d20d4 callsA=24008 callsB=25228 callsTotal=49236 fixedPenalty=80 penaltyTotal=3.93888e+06 globalCallsA=4360732 globalCallsB=4634460 gpsResultRouteCount=31 gpsResult=0x795efbb0 gpsResult_routeData=0x5cccdc980 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136334 queryId=60 tracked=1 perQueryCall=6 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136335 queryId=60 tracked=1 perQueryCall=7 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit 0x70a42c call=61 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit result call=61 queryId=61 manager_nextIdD4=62/0x3e
2026-06-27 09:36:18.215 +780215ms hook GPSQueryResultFetch 0x7094b8 call=136434 queryId=61 tracked=1 perQueryCall=6 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:18.215 +780215ms gps-momentum-summary queryId=61 resultFetchCall=7 submitCall=61 submitRetRva=0x8d20d4 callsA=25501 callsB=26881 callsTotal=52382 fixedPenalty=80 penaltyTotal=4.19056e+06 globalCallsA=4386233 globalCallsB=4661341 gpsResultRouteCount=33 gpsResult=0x796efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136435 queryId=61 tracked=1 perQueryCall=7 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2100000021
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136436 queryId=61 tracked=1 perQueryCall=8 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x21
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit 0x70a42c call=62 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit result call=62 queryId=62 manager_nextIdD4=63/0x3f
2026-06-27 09:36:18.737 +780737ms hook GPSQueryResultFetch 0x7094b8 call=136549 queryId=62 tracked=1 perQueryCall=7 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:18.738 +780738ms gps-momentum-summary queryId=62 resultFetchCall=8 submitCall=62 submitRetRva=0x8d20d4 callsA=26661 callsB=28128 callsTotal=54789 fixedPenalty=80 penaltyTotal=4.38312e+06 globalCallsA=4412894 globalCallsB=4689469 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136550 queryId=62 tracked=1 perQueryCall=8 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136551 queryId=62 tracked=1 perQueryCall=9 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit 0x70a42c call=63 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit result call=63 queryId=63 manager_nextIdD4=64/0x40
2026-06-27 09:36:19.168 +781168ms hook GPSQueryResultFetch 0x7094b8 call=136642 queryId=63 tracked=1 perQueryCall=6 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:19.169 +781169ms gps-momentum-summary queryId=63 resultFetchCall=7 submitCall=63 submitRetRva=0x8d20d4 callsA=30138 callsB=31587 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4443032 globalCallsB=4721056 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5ab288920 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136643 queryId=63 tracked=1 perQueryCall=7 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136644 queryId=63 tracked=1 perQueryCall=8 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit 0x70a42c call=64 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit result call=64 queryId=64 manager_nextIdD4=65/0x41
2026-06-27 09:36:19.665 +781665ms hook GPSQueryResultFetch 0x7094b8 call=136753 queryId=64 tracked=1 perQueryCall=6 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:19.665 +781665ms gps-momentum-summary queryId=64 resultFetchCall=7 submitCall=64 submitRetRva=0x8d20d4 callsA=30088 callsB=31637 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4473120 globalCallsB=4752693 gpsResultRouteCount=35 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a90c1400 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136754 queryId=64 tracked=1 perQueryCall=7 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136755 queryId=64 tracked=1 perQueryCall=8 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit 0x70a42c call=65 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit result call=65 queryId=65 manager_nextIdD4=66/0x42
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136934 queryId=65 tracked=1 perQueryCall=6 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:20.484 +782484ms gps-momentum-summary queryId=65 resultFetchCall=7 submitCall=65 submitRetRva=0x8d20d4 callsA=26129 callsB=27536 callsTotal=53665 fixedPenalty=80 penaltyTotal=4.2932e+06 globalCallsA=4499249 globalCallsB=4780229 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136935 queryId=65 tracked=1 perQueryCall=7 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:20.485 +782485ms hook GPSQueryResultFetch 0x7094b8 call=136936 queryId=65 tracked=1 perQueryCall=8 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit 0x70a42c call=66 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit result call=66 queryId=66 manager_nextIdD4=67/0x43
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137071 queryId=66 tracked=1 perQueryCall=6 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:20.091 +783091ms gps-momentum-summary queryId=66 resultFetchCall=7 submitCall=66 submitRetRva=0x8d20d4 callsA=25647 callsB=27040 callsTotal=52687 fixedPenalty=80 penaltyTotal=4.21496e+06 globalCallsA=4524896 globalCallsB=4807269 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137072 queryId=66 tracked=1 perQueryCall=7 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:20.092 +783092ms hook GPSQueryResultFetch 0x7094b8 call=137073 queryId=66 tracked=1 perQueryCall=8 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit 0x70a42c call=67 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit result call=67 queryId=67 manager_nextIdD4=68/0x44
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137194 queryId=67 tracked=1 perQueryCall=6 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:21.648 +783648ms gps-momentum-summary queryId=67 resultFetchCall=7 submitCall=67 submitRetRva=0x8d20d4 callsA=31448 callsB=32942 callsTotal=64390 fixedPenalty=80 penaltyTotal=5.1512e+06 globalCallsA=4556344 globalCallsB=4840211 gpsResultRouteCount=29 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137195 queryId=67 tracked=1 perQueryCall=7 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d0000001d
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137196 queryId=67 tracked=1 perQueryCall=8 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit 0x70a42c call=68 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit result call=68 queryId=68 manager_nextIdD4=69/0x45
2026-06-27 09:36:21.079 +784079ms hook GPSQueryResultFetch 0x7094b8 call=137291 queryId=68 tracked=1 perQueryCall=3 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:21.079 +784079ms gps-momentum-summary queryId=68 resultFetchCall=4 submitCall=68 submitRetRva=0x8d20d4 callsA=6959 callsB=7250 callsTotal=14209 fixedPenalty=80 penaltyTotal=1.13672e+06 globalCallsA=4563303 globalCallsB=4847461 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a0edc0f0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137292 queryId=68 tracked=1 perQueryCall=4 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137293 queryId=68 tracked=1 perQueryCall=5 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:22.450 +784450ms hook GPSQuerySubmit 0x70a42c call=69 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:22.451 +784451ms hook GPSQuerySubmit result call=69 queryId=69 manager_nextIdD4=70/0x46
2026-06-27 09:36:22.479 +784479ms hook GPSQueryResultFetch 0x7094b8 call=137382 queryId=69 tracked=1 perQueryCall=3 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:36:22.479 +784479ms gps-momentum-summary queryId=69 resultFetchCall=4 submitCall=69 submitRetRva=0x8d20d4 callsA=7268 callsB=7580 callsTotal=14848 fixedPenalty=80 penaltyTotal=1.18784e+06 globalCallsA=4570571 globalCallsB=4855041 gpsResultRouteCount=15 gpsResult=0x31db50 gpsResult_routeData=0x5aa16c540 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137383 queryId=69 tracked=1 perQueryCall=4 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137384 queryId=69 tracked=1 perQueryCall=5 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit 0x70a42c call=70 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit result call=70 queryId=70 manager_nextIdD4=71/0x47
2026-06-27 09:36:22.894 +784894ms hook GPSQueryResultFetch 0x7094b8 call=137477 queryId=70 tracked=1 perQueryCall=3 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:22.895 +784895ms gps-momentum-summary queryId=70 resultFetchCall=4 submitCall=70 submitRetRva=0x8d20d4 callsA=9187 callsB=9551 callsTotal=18738 fixedPenalty=80 penaltyTotal=1.49904e+06 globalCallsA=4579758 globalCallsB=4864592 gpsResultRouteCount=16 gpsResult=0x793efbb0 gpsResult_routeData=0x5968fc3b0 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137478 queryId=70 tracked=1 perQueryCall=4 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1000000010
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137479 queryId=70 tracked=1 perQueryCall=5 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x10
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit 0x70a42c call=71 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit result call=71 queryId=71 manager_nextIdD4=72/0x48
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137546 queryId=71 tracked=1 perQueryCall=4 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:23.194 +785194ms gps-momentum-summary queryId=71 resultFetchCall=5 submitCall=71 submitRetRva=0x8d20d4 callsA=15072 callsB=15677 callsTotal=30749 fixedPenalty=80 penaltyTotal=2.45992e+06 globalCallsA=4594830 globalCallsB=4880269 gpsResultRouteCount=17 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3ccfb30 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137547 queryId=71 tracked=1 perQueryCall=5 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1100000011
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137548 queryId=71 tracked=1 perQueryCall=6 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x11
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit 0x70a42c call=72 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit result call=72 queryId=72 manager_nextIdD4=73/0x49
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137623 queryId=72 tracked=1 perQueryCall=4 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:23.528 +785528ms gps-momentum-summary queryId=72 resultFetchCall=5 submitCall=72 submitRetRva=0x8d20d4 callsA=14828 callsB=15534 callsTotal=30362 fixedPenalty=80 penaltyTotal=2.42896e+06 globalCallsA=4609658 globalCallsB=4895803 gpsResultRouteCount=23 gpsResult=0x793efbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137624 queryId=72 tracked=1 perQueryCall=5 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1700000017
2026-06-27 09:36:23.529 +785529ms hook GPSQueryResultFetch 0x7094b8 call=137625 queryId=72 tracked=1 perQueryCall=6 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x17
2026-06-27 09:36:23.046 +786046ms hook GPSQuerySubmit 0x70a42c call=73 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:23.047 +786047ms hook GPSQuerySubmit result call=73 queryId=73 manager_nextIdD4=74/0x4a
2026-06-27 09:36:23.108 +786108ms hook GPSQueryResultFetch 0x7094b8 call=137752 queryId=73 tracked=1 perQueryCall=6 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:23.108 +786108ms gps-momentum-summary queryId=73 resultFetchCall=7 submitCall=73 submitRetRva=0x8d20d4 callsA=26099 callsB=27478 callsTotal=53577 fixedPenalty=80 penaltyTotal=4.28616e+06 globalCallsA=4635757 globalCallsB=4923281 gpsResultRouteCount=15 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137753 queryId=73 tracked=1 perQueryCall=7 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137754 queryId=73 tracked=1 perQueryCall=8 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:25.550 +787550ms hook GPSQuerySubmit 0x70a42c call=74 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:25.551 +787551ms hook GPSQuerySubmit result call=74 queryId=74 manager_nextIdD4=75/0x4b
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138071 queryId=74 tracked=1 perQueryCall=3 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:25.579 +787579ms gps-momentum-summary queryId=74 resultFetchCall=4 submitCall=74 submitRetRva=0x8d20d4 callsA=3601 callsB=3712 callsTotal=7313 fixedPenalty=80 penaltyTotal=585040 globalCallsA=4639358 globalCallsB=4926993 gpsResultRouteCount=11 gpsResult=0x796efbb0 gpsResult_routeData=0x187bf4680 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138072 queryId=74 tracked=1 perQueryCall=4 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb0000000b
2026-06-27 09:36:25.580 +787580ms hook GPSQueryResultFetch 0x7094b8 call=138073 queryId=74 tracked=1 perQueryCall=5 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb
2026-06-27 09:36:26.166 +788166ms hook GPSQuerySubmit 0x70a42c call=75 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:26.167 +788167ms hook GPSQuerySubmit result call=75 queryId=75 manager_nextIdD4=76/0x4c
2026-06-27 09:36:26.205 +788205ms hook GPSQueryResultFetch 0x7094b8 call=138210 queryId=75 tracked=1 perQueryCall=4 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:26.206 +788206ms gps-momentum-summary queryId=75 resultFetchCall=5 submitCall=75 submitRetRva=0x8d20d4 callsA=13756 callsB=14447 callsTotal=28203 fixedPenalty=80 penaltyTotal=2.25624e+06 globalCallsA=4653114 globalCallsB=4941440 gpsResultRouteCount=20 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5bd31f3a0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138211 queryId=75 tracked=1 perQueryCall=5 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1400000014
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138212 queryId=75 tracked=1 perQueryCall=6 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x14
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit 0x70a42c call=76 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit result call=76 queryId=76 manager_nextIdD4=77/0x4d
2026-06-27 09:36:26.988 +788988ms hook GPSQueryResultFetch 0x7094b8 call=138373 queryId=76 tracked=1 perQueryCall=3 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:26.989 +788989ms gps-momentum-summary queryId=76 resultFetchCall=4 submitCall=76 submitRetRva=0x8d20d4 callsA=8469 callsB=8836 callsTotal=17305 fixedPenalty=80 penaltyTotal=1.3844e+06 globalCallsA=4661583 globalCallsB=4950276 gpsResultRouteCount=15 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a5b42140 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138374 queryId=76 tracked=1 perQueryCall=4 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf0000000f
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138375 queryId=76 tracked=1 perQueryCall=5 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit 0x70a42c call=77 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit result call=77 queryId=77 manager_nextIdD4=78/0x4e
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138518 queryId=77 tracked=1 perQueryCall=4 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:28.237 +790237ms gps-momentum-summary queryId=77 resultFetchCall=5 submitCall=77 submitRetRva=0x8d20d4 callsA=15470 callsB=16205 callsTotal=31675 fixedPenalty=80 penaltyTotal=2.534e+06 globalCallsA=4677053 globalCallsB=4966481 gpsResultRouteCount=21 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138519 queryId=77 tracked=1 perQueryCall=5 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1500000015
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138520 queryId=77 tracked=1 perQueryCall=6 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x15
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit 0x70a42c call=78 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit result call=78 queryId=78 manager_nextIdD4=79/0x4f
2026-06-27 09:36:28.985 +790985ms hook GPSQueryResultFetch 0x7094b8 call=138683 queryId=78 tracked=1 perQueryCall=4 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:28.985 +790985ms gps-momentum-summary queryId=78 resultFetchCall=5 submitCall=78 submitRetRva=0x8d20d4 callsA=12146 callsB=12706 callsTotal=24852 fixedPenalty=80 penaltyTotal=1.98816e+06 globalCallsA=4689199 globalCallsB=4979187 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138684 queryId=78 tracked=1 perQueryCall=5 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138685 queryId=78 tracked=1 perQueryCall=6 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit 0x70a42c call=79 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit result call=79 queryId=79 manager_nextIdD4=80/0x50
2026-06-27 09:36:29.703 +791703ms hook GPSQueryResultFetch 0x7094b8 call=138834 queryId=79 tracked=1 perQueryCall=4 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:29.704 +791704ms gps-momentum-summary queryId=79 resultFetchCall=5 submitCall=79 submitRetRva=0x8d20d4 callsA=12393 callsB=12965 callsTotal=25358 fixedPenalty=80 penaltyTotal=2.02864e+06 globalCallsA=4701592 globalCallsB=4992152 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138835 queryId=79 tracked=1 perQueryCall=5 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138836 queryId=79 tracked=1 perQueryCall=6 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit 0x70a42c call=80 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit result call=80 queryId=80 manager_nextIdD4=81/0x51
2026-06-27 09:36:29.126 +792126ms hook GPSQueryResultFetch 0x7094b8 call=138925 queryId=80 tracked=1 perQueryCall=3 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:29.127 +792127ms gps-momentum-summary queryId=80 resultFetchCall=4 submitCall=80 submitRetRva=0x8d20d4 callsA=5700 callsB=5908 callsTotal=11608 fixedPenalty=80 penaltyTotal=928640 globalCallsA=4707292 globalCallsB=4998060 gpsResultRouteCount=13 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c1754160 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138926 queryId=80 tracked=1 perQueryCall=4 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138927 queryId=80 tracked=1 perQueryCall=5 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit 0x70a42c call=81 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit result call=81 queryId=81 manager_nextIdD4=82/0x52
2026-06-27 09:36:30.560 +792560ms hook GPSQueryResultFetch 0x7094b8 call=139018 queryId=81 tracked=1 perQueryCall=3 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:30.561 +792561ms gps-momentum-summary queryId=81 resultFetchCall=4 submitCall=81 submitRetRva=0x8d20d4 callsA=9347 callsB=9727 callsTotal=19074 fixedPenalty=80 penaltyTotal=1.52592e+06 globalCallsA=4716639 globalCallsB=5007787 gpsResultRouteCount=17 gpsResult=0x794efbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139019 queryId=81 tracked=1 perQueryCall=4 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1100000011
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139020 queryId=81 tracked=1 perQueryCall=5 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x11
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit 0x70a42c call=82 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit result call=82 queryId=82 manager_nextIdD4=83/0x53
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139099 queryId=82 tracked=1 perQueryCall=3 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:30.933 +792933ms gps-momentum-summary queryId=82 resultFetchCall=4 submitCall=82 submitRetRva=0x8d20d4 callsA=4498 callsB=4706 callsTotal=9204 fixedPenalty=80 penaltyTotal=736320 globalCallsA=4721137 globalCallsB=5012493 gpsResultRouteCount=13 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c4882660 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139100 queryId=82 tracked=1 perQueryCall=4 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139101 queryId=82 tracked=1 perQueryCall=5 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit 0x70a42c call=83 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit result call=83 queryId=83 manager_nextIdD4=84/0x54
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139372 queryId=83 tracked=1 perQueryCall=3 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:32.223 +794223ms gps-momentum-summary queryId=83 resultFetchCall=4 submitCall=83 submitRetRva=0x8d20d4 callsA=4642 callsB=4819 callsTotal=9461 fixedPenalty=80 penaltyTotal=756880 globalCallsA=4725779 globalCallsB=5017312 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3bd50b0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139373 queryId=83 tracked=1 perQueryCall=4 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139374 queryId=83 tracked=1 perQueryCall=5 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit 0x70a42c call=84 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit result call=84 queryId=84 manager_nextIdD4=85/0x55
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139443 queryId=84 tracked=1 perQueryCall=4 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:32.551 +794551ms gps-momentum-summary queryId=84 resultFetchCall=5 submitCall=84 submitRetRva=0x8d20d4 callsA=10870 callsB=11417 callsTotal=22287 fixedPenalty=80 penaltyTotal=1.78296e+06 globalCallsA=4736649 globalCallsB=5028729 gpsResultRouteCount=14 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a6c189f0 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139444 queryId=84 tracked=1 perQueryCall=5 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe0000000e
2026-06-27 09:36:32.552 +794552ms hook GPSQueryResultFetch 0x7094b8 call=139445 queryId=84 tracked=1 perQueryCall=6 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit 0x70a42c call=85 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit result call=85 queryId=85 manager_nextIdD4=86/0x56
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139538 queryId=85 tracked=1 perQueryCall=7 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:32.003 +795003ms gps-momentum-summary queryId=85 resultFetchCall=8 submitCall=85 submitRetRva=0x8d20d4 callsA=36538 callsB=38503 callsTotal=75041 fixedPenalty=80 penaltyTotal=6.00328e+06 globalCallsA=4773187 globalCallsB=5067232 gpsResultRouteCount=31 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b3065b50 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139539 queryId=85 tracked=1 perQueryCall=8 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:32.004 +795004ms hook GPSQueryResultFetch 0x7094b8 call=139540 queryId=85 tracked=1 perQueryCall=9 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit 0x70a42c call=86 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit result call=86 queryId=86 manager_nextIdD4=87/0x57
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141145 queryId=86 tracked=1 perQueryCall=8 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:40.776 +802776ms gps-momentum-summary queryId=86 resultFetchCall=9 submitCall=86 submitRetRva=0x8d20d4 callsA=36418 callsB=38286 callsTotal=74704 fixedPenalty=80 penaltyTotal=5.97632e+06 globalCallsA=4809605 globalCallsB=5105518 gpsResultRouteCount=31 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a3f5d390 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141146 queryId=86 tracked=1 perQueryCall=9 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:40.777 +802777ms hook GPSQueryResultFetch 0x7094b8 call=141147 queryId=86 tracked=1 perQueryCall=10 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:41.468 +803468ms hook GPSQuerySubmit 0x70a42c call=87 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:41.469 +803469ms hook GPSQuerySubmit result call=87 queryId=87 manager_nextIdD4=88/0x58
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141312 queryId=87 tracked=1 perQueryCall=8 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:41.553 +803553ms gps-momentum-summary queryId=87 resultFetchCall=9 submitCall=87 submitRetRva=0x8d20d4 callsA=36423 callsB=38263 callsTotal=74686 fixedPenalty=80 penaltyTotal=5.97488e+06 globalCallsA=4846028 globalCallsB=5143781 gpsResultRouteCount=31 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5ba81f5b0 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141313 queryId=87 tracked=1 perQueryCall=9 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141314 queryId=87 tracked=1 perQueryCall=10 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit 0x70a42c call=88 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit result call=88 queryId=88 manager_nextIdD4=89/0x59
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141377 queryId=88 tracked=1 perQueryCall=4 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:41.847 +803847ms gps-momentum-summary queryId=88 resultFetchCall=5 submitCall=88 submitRetRva=0x8d20d4 callsA=9952 callsB=10393 callsTotal=20345 fixedPenalty=80 penaltyTotal=1.6276e+06 globalCallsA=4855980 globalCallsB=5154174 gpsResultRouteCount=18 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c445b880 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141378 queryId=88 tracked=1 perQueryCall=5 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:36:41.848 +803848ms hook GPSQueryResultFetch 0x7094b8 call=141379 queryId=88 tracked=1 perQueryCall=6 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit 0x70a42c call=89 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit result call=89 queryId=89 manager_nextIdD4=90/0x5a
2026-06-27 09:36:43.476 +805476ms hook GPSQueryResultFetch 0x7094b8 call=141688 queryId=89 tracked=1 perQueryCall=4 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:43.477 +805477ms gps-momentum-summary queryId=89 resultFetchCall=5 submitCall=89 submitRetRva=0x8d20d4 callsA=11662 callsB=12176 callsTotal=23838 fixedPenalty=80 penaltyTotal=1.90704e+06 globalCallsA=4867642 globalCallsB=5166350 gpsResultRouteCount=19 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5b41fb0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141689 queryId=89 tracked=1 perQueryCall=5 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141690 queryId=89 tracked=1 perQueryCall=6 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit 0x70a42c call=90 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit result call=90 queryId=90 manager_nextIdD4=91/0x5b
2026-06-27 09:36:43.821 +805821ms hook GPSQueryResultFetch 0x7094b8 call=141767 queryId=90 tracked=1 perQueryCall=4 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:43.822 +805822ms gps-momentum-summary queryId=90 resultFetchCall=5 submitCall=90 submitRetRva=0x8d20d4 callsA=11631 callsB=12119 callsTotal=23750 fixedPenalty=80 penaltyTotal=1.9e+06 globalCallsA=4879273 globalCallsB=5178469 gpsResultRouteCount=18 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ae26da30 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141768 queryId=90 tracked=1 perQueryCall=5 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141769 queryId=90 tracked=1 perQueryCall=6 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit 0x70a42c call=91 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit result call=91 queryId=91 manager_nextIdD4=92/0x5c
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141918 queryId=91 tracked=1 perQueryCall=4 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:44.799 +806799ms gps-momentum-summary queryId=91 resultFetchCall=5 submitCall=91 submitRetRva=0x8d20d4 callsA=14641 callsB=15349 callsTotal=29990 fixedPenalty=80 penaltyTotal=2.3992e+06 globalCallsA=4893914 globalCallsB=5193818 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5c09c9370 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141919 queryId=91 tracked=1 perQueryCall=5 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141920 queryId=91 tracked=1 perQueryCall=6 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit 0x70a42c call=92 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit result call=92 queryId=92 manager_nextIdD4=93/0x5d
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142395 queryId=92 tracked=1 perQueryCall=5 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:47.411 +809411ms gps-momentum-summary queryId=92 resultFetchCall=6 submitCall=92 submitRetRva=0x8d20d4 callsA=17199 callsB=17953 callsTotal=35152 fixedPenalty=80 penaltyTotal=2.81216e+06 globalCallsA=4911113 globalCallsB=5211771 gpsResultRouteCount=18 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b7ed2050 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142396 queryId=92 tracked=1 perQueryCall=6 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1200000012
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142397 queryId=92 tracked=1 perQueryCall=7 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x12
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit 0x70a42c call=93 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit result call=93 queryId=93 manager_nextIdD4=94/0x5e
2026-06-27 09:36:51.711 +813711ms hook GPSQueryResultFetch 0x7094b8 call=143014 queryId=93 tracked=1 perQueryCall=8 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:51.711 +813711ms gps-momentum-summary queryId=93 resultFetchCall=9 submitCall=93 submitRetRva=0x8d20d4 callsA=41693 callsB=43935 callsTotal=85628 fixedPenalty=80 penaltyTotal=6.85024e+06 globalCallsA=4952806 globalCallsB=5255706 gpsResultRouteCount=35 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143015 queryId=93 tracked=1 perQueryCall=9 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143016 queryId=93 tracked=1 perQueryCall=10 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit 0x70a42c call=94 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit result call=94 queryId=94 manager_nextIdD4=95/0x5f
2026-06-27 09:36:52.091 +815091ms hook GPSQueryResultFetch 0x7094b8 call=143295 queryId=94 tracked=1 perQueryCall=6 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:52.092 +815092ms gps-momentum-summary queryId=94 resultFetchCall=7 submitCall=94 submitRetRva=0x8d20d4 callsA=26199 callsB=27533 callsTotal=53732 fixedPenalty=80 penaltyTotal=4.29856e+06 globalCallsA=4979005 globalCallsB=5283239 gpsResultRouteCount=28 gpsResult=0x796efbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143296 queryId=94 tracked=1 perQueryCall=7 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143297 queryId=94 tracked=1 perQueryCall=8 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit 0x70a42c call=95 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit result call=95 queryId=95 manager_nextIdD4=96/0x60
2026-06-27 09:36:53.473 +815473ms hook GPSQueryResultFetch 0x7094b8 call=143374 queryId=95 tracked=1 perQueryCall=7 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:36:53.474 +815474ms gps-momentum-summary queryId=95 resultFetchCall=8 submitCall=95 submitRetRva=0x8d20d4 callsA=38434 callsB=40520 callsTotal=78954 fixedPenalty=80 penaltyTotal=6.31632e+06 globalCallsA=5017439 globalCallsB=5323759 gpsResultRouteCount=32 gpsResult=0x31db50 gpsResult_routeData=0x5ce6fc650 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143375 queryId=95 tracked=1 perQueryCall=8 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2000000020
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143376 queryId=95 tracked=1 perQueryCall=9 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x20
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit 0x70a42c call=96 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit result call=96 queryId=96 manager_nextIdD4=97/0x61
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143493 queryId=96 tracked=1 perQueryCall=6 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:53.083 +816083ms gps-momentum-summary queryId=96 resultFetchCall=7 submitCall=96 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5042704 globalCallsB=5350295 gpsResultRouteCount=26 gpsResult=0x796efbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143494 queryId=96 tracked=1 perQueryCall=7 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a0000001a
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143495 queryId=96 tracked=1 perQueryCall=8 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit 0x70a42c call=97 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit result call=97 queryId=97 manager_nextIdD4=98/0x62
2026-06-27 09:36:54.672 +816672ms hook GPSQueryResultFetch 0x7094b8 call=143614 queryId=97 tracked=1 perQueryCall=6 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:54.673 +816673ms gps-momentum-summary queryId=97 resultFetchCall=7 submitCall=97 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5073584 globalCallsB=5382758 gpsResultRouteCount=28 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5b69dac60 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143615 queryId=97 tracked=1 perQueryCall=7 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143616 queryId=97 tracked=1 perQueryCall=8 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit 0x70a42c call=98 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit result call=98 queryId=98 manager_nextIdD4=99/0x63
2026-06-27 09:36:55.442 +817442ms hook GPSQueryResultFetch 0x7094b8 call=143773 queryId=98 tracked=1 perQueryCall=6 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:55.442 +817442ms gps-momentum-summary queryId=98 resultFetchCall=7 submitCall=98 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5098849 globalCallsB=5409294 gpsResultRouteCount=26 gpsResult=0x795efbb0 gpsResult_routeData=0x5ccd75ed0 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143774 queryId=98 tracked=1 perQueryCall=7 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a0000001a
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143775 queryId=98 tracked=1 perQueryCall=8 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a
2026-06-27 09:36:56.226 +818226ms hook GPSQuerySubmit 0x70a42c call=99 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:56.227 +818227ms hook GPSQuerySubmit result call=99 queryId=99 manager_nextIdD4=100/0x64
2026-06-27 09:36:56.307 +818307ms hook GPSQueryResultFetch 0x7094b8 call=143946 queryId=99 tracked=1 perQueryCall=7 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:56.307 +818307ms gps-momentum-summary queryId=99 resultFetchCall=8 submitCall=99 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5129729 globalCallsB=5441757 gpsResultRouteCount=28 gpsResult=0x793efbb0 gpsResult_routeData=0x5ca901790 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143947 queryId=99 tracked=1 perQueryCall=8 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c0000001c
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143948 queryId=99 tracked=1 perQueryCall=9 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit 0x70a42c call=100 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit result call=100 queryId=100 manager_nextIdD4=101/0x65
2026-06-27 09:36:57.426 +819426ms hook GPSQueryResultFetch 0x7094b8 call=144171 queryId=100 tracked=1 perQueryCall=8 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:57.427 +819427ms gps-momentum-summary queryId=100 resultFetchCall=9 submitCall=100 submitRetRva=0x8d20d4 callsA=39101 callsB=41128 callsTotal=80229 fixedPenalty=80 penaltyTotal=6.41832e+06 globalCallsA=5168830 globalCallsB=5482885 gpsResultRouteCount=34 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144172 queryId=100 tracked=1 perQueryCall=9 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2200000022
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144173 queryId=100 tracked=1 perQueryCall=10 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x22
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit 0x70a42c call=101 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit result call=101 queryId=101 manager_nextIdD4=102/0x66
2026-06-27 09:36:58.175 +820175ms hook GPSQueryResultFetch 0x7094b8 call=144305 queryId=101 tracked=1 perQueryCall=8 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:58.175 +820175ms gps-momentum-summary queryId=101 resultFetchCall=9 submitCall=101 submitRetRva=0x8d20d4 callsA=34992 callsB=36769 callsTotal=71761 fixedPenalty=80 penaltyTotal=5.74088e+06 globalCallsA=5203822 globalCallsB=5519654 gpsResultRouteCount=32 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144306 queryId=101 tracked=1 perQueryCall=9 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2000000020
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144307 queryId=101 tracked=1 perQueryCall=10 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x20
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit 0x70a42c call=102 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2300839940/0x89240804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit result call=102 queryId=102 manager_nextIdD4=103/0x67
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144383 queryId=102 tracked=1 perQueryCall=9 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:58.614 +820614ms gps-momentum-summary queryId=102 resultFetchCall=10 submitCall=102 submitRetRva=0x8d20d4 callsA=33228 callsB=34950 callsTotal=68178 fixedPenalty=80 penaltyTotal=5.45424e+06 globalCallsA=5237050 globalCallsB=5554604 gpsResultRouteCount=31 gpsResult=0x793efbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144384 queryId=102 tracked=1 perQueryCall=10 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f0000001f
2026-06-27 09:36:58.615 +820615ms hook GPSQueryResultFetch 0x7094b8 call=144385 queryId=102 tracked=1 perQueryCall=11 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f
2026-06-27 09:36:58.950 +820950ms hook GPSQuerySubmit 0x70a42c call=103 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:58.951 +820951ms hook GPSQuerySubmit result call=103 queryId=103 manager_nextIdD4=104/0x68
2026-06-27 09:36:58.044 +821044ms hook GPSQueryResultFetch 0x7094b8 call=144463 queryId=103 tracked=1 perQueryCall=8 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:58.044 +821044ms gps-momentum-summary queryId=103 resultFetchCall=9 submitCall=103 submitRetRva=0x8d20d4 callsA=39621 callsB=41790 callsTotal=81411 fixedPenalty=80 penaltyTotal=6.51288e+06 globalCallsA=5276671 globalCallsB=5596394 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144464 queryId=103 tracked=1 perQueryCall=9 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144465 queryId=103 tracked=1 perQueryCall=10 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit 0x70a42c call=104 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit result call=104 queryId=104 manager_nextIdD4=105/0x69
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144609 queryId=104 tracked=1 perQueryCall=11 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:36:59.859 +821859ms gps-momentum-summary queryId=104 resultFetchCall=12 submitCall=104 submitRetRva=0x8d20d4 callsA=42054 callsB=44392 callsTotal=86446 fixedPenalty=80 penaltyTotal=6.91568e+06 globalCallsA=5318725 globalCallsB=5640786 gpsResultRouteCount=29 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144610 queryId=104 tracked=1 perQueryCall=12 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d0000001d
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144611 queryId=104 tracked=1 perQueryCall=13 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit 0x70a42c call=105 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit result call=105 queryId=105 manager_nextIdD4=106/0x6a
2026-06-27 09:37:05.845 +827845ms hook GPSQueryResultFetch 0x7094b8 call=145756 queryId=105 tracked=1 perQueryCall=10 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:37:05.846 +827846ms gps-momentum-summary queryId=105 resultFetchCall=11 submitCall=105 submitRetRva=0x8d20d4 callsA=48522 callsB=51160 callsTotal=99682 fixedPenalty=80 penaltyTotal=7.97456e+06 globalCallsA=5367247 globalCallsB=5691946 gpsResultRouteCount=35 gpsResult=0x31db50 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145757 queryId=105 tracked=1 perQueryCall=11 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145758 queryId=105 tracked=1 perQueryCall=12 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x23
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit 0x70a42c call=106 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit result call=106 queryId=106 manager_nextIdD4=107/0x6b
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146195 queryId=106 tracked=1 perQueryCall=9 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:07.101 +830101ms gps-momentum-summary queryId=106 resultFetchCall=10 submitCall=106 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5411424 globalCallsB=5738424 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146196 queryId=106 tracked=1 perQueryCall=10 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146197 queryId=106 tracked=1 perQueryCall=11 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
2026-06-27 09:37:08.559 +830559ms hook GPSQuerySubmit 0x70a42c call=107 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:08.560 +830560ms hook GPSQuerySubmit result call=107 queryId=107 manager_nextIdD4=108/0x6c
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146308 queryId=107 tracked=1 perQueryCall=12 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:08.701 +830701ms gps-momentum-summary queryId=107 resultFetchCall=13 submitCall=107 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5467641 globalCallsB=5797706 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146309 queryId=107 tracked=1 perQueryCall=13 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146310 queryId=107 tracked=1 perQueryCall=14 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit 0x70a42c call=108 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit result call=108 queryId=108 manager_nextIdD4=109/0x6d
2026-06-27 09:37:09.451 +831451ms hook GPSQueryResultFetch 0x7094b8 call=146443 queryId=108 tracked=1 perQueryCall=11 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:09.452 +831452ms gps-momentum-summary queryId=108 resultFetchCall=12 submitCall=108 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5511818 globalCallsB=5844184 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5ad0abaa0 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146444 queryId=108 tracked=1 perQueryCall=12 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146445 queryId=108 tracked=1 perQueryCall=13 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
2026-06-27 09:37:14.818 +836818ms hook GPSQuerySubmit 0x70a42c call=109 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:14.819 +836819ms hook GPSQuerySubmit result call=109 queryId=109 manager_nextIdD4=110/0x6e
2026-06-27 09:37:14.930 +836930ms hook GPSQueryResultFetch 0x7094b8 call=147584 queryId=109 tracked=1 perQueryCall=10 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:14.930 +836930ms gps-momentum-summary queryId=109 resultFetchCall=11 submitCall=109 submitRetRva=0x8d20d4 callsA=46110 callsB=48659 callsTotal=94769 fixedPenalty=80 penaltyTotal=7.58152e+06 globalCallsA=5557928 globalCallsB=5892843 gpsResultRouteCount=40 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5494560 gpsResult_routeCapacity=40 gpsResult_routeCount=40 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147585 queryId=109 tracked=1 perQueryCall=11 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2800000028
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147586 queryId=109 tracked=1 perQueryCall=12 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x28
2026-06-27 09:37:15.269 +837269ms hook GPSQuerySubmit 0x70a42c call=110 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:15.270 +837270ms hook GPSQuerySubmit result call=110 queryId=110 manager_nextIdD4=111/0x6f
2026-06-27 09:37:15.391 +837391ms hook GPSQueryResultFetch 0x7094b8 call=147679 queryId=110 tracked=1 perQueryCall=11 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:15.392 +837392ms gps-momentum-summary queryId=110 resultFetchCall=12 submitCall=110 submitRetRva=0x8d20d4 callsA=51620 callsB=54419 callsTotal=106039 fixedPenalty=80 penaltyTotal=8.48312e+06 globalCallsA=5609548 globalCallsB=5947262 gpsResultRouteCount=43 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147680 queryId=110 tracked=1 perQueryCall=12 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b0000002b
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147681 queryId=110 tracked=1 perQueryCall=13 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit 0x70a42c call=111 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit result call=111 queryId=111 manager_nextIdD4=112/0x70
2026-06-27 09:37:15.846 +837846ms hook GPSQueryResultFetch 0x7094b8 call=147776 queryId=111 tracked=1 perQueryCall=10 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:15.847 +837847ms gps-momentum-summary queryId=111 resultFetchCall=11 submitCall=111 submitRetRva=0x8d20d4 callsA=51247 callsB=53977 callsTotal=105224 fixedPenalty=80 penaltyTotal=8.41792e+06 globalCallsA=5660795 globalCallsB=6001239 gpsResultRouteCount=43 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147777 queryId=111 tracked=1 perQueryCall=11 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b0000002b
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147778 queryId=111 tracked=1 perQueryCall=12 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit 0x70a42c call=112 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit result call=112 queryId=112 manager_nextIdD4=113/0x71
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147901 queryId=112 tracked=1 perQueryCall=12 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:16.477 +838477ms gps-momentum-summary queryId=112 resultFetchCall=13 submitCall=112 submitRetRva=0x8d20d4 callsA=52115 callsB=55090 callsTotal=107205 fixedPenalty=80 penaltyTotal=8.5764e+06 globalCallsA=5712910 globalCallsB=6056329 gpsResultRouteCount=43 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147902 queryId=112 tracked=1 perQueryCall=13 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b0000002b
2026-06-27 09:37:16.478 +838478ms hook GPSQueryResultFetch 0x7094b8 call=147903 queryId=112 tracked=1 perQueryCall=14 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit 0x70a42c call=113 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit result call=113 queryId=113 manager_nextIdD4=114/0x72
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147996 queryId=113 tracked=1 perQueryCall=13 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:16.998 +838998ms gps-momentum-summary queryId=113 resultFetchCall=14 submitCall=113 submitRetRva=0x8d20d4 callsA=57012 callsB=60319 callsTotal=117331 fixedPenalty=80 penaltyTotal=9.38648e+06 globalCallsA=5769922 globalCallsB=6116648 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147997 queryId=113 tracked=1 perQueryCall=14 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
2026-06-27 09:37:16.999 +838999ms hook GPSQueryResultFetch 0x7094b8 call=147998 queryId=113 tracked=1 perQueryCall=15 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit 0x70a42c call=114 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit result call=114 queryId=114 manager_nextIdD4=115/0x73
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148243 queryId=114 tracked=1 perQueryCall=9 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:18.155 +840155ms gps-momentum-summary queryId=114 resultFetchCall=10 submitCall=114 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5814099 globalCallsB=6163126 gpsResultRouteCount=34 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a433c830 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148244 queryId=114 tracked=1 perQueryCall=10 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2200000022
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148245 queryId=114 tracked=1 perQueryCall=11 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x22
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit 0x70a42c call=115 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit result call=115 queryId=115 manager_nextIdD4=116/0x74
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148392 queryId=115 tracked=1 perQueryCall=10 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:18.846 +840846ms gps-momentum-summary queryId=115 resultFetchCall=11 submitCall=115 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5859769 globalCallsB=6211149 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148393 queryId=115 tracked=1 perQueryCall=11 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148394 queryId=115 tracked=1 perQueryCall=12 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:37:19.305 +841305ms hook GPSQuerySubmit 0x70a42c call=116 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:19.306 +841306ms hook GPSQuerySubmit result call=116 queryId=116 manager_nextIdD4=117/0x75
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148513 queryId=116 tracked=1 perQueryCall=12 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:19.451 +841451ms gps-momentum-summary queryId=116 resultFetchCall=13 submitCall=116 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5915986 globalCallsB=6270431 gpsResultRouteCount=44 gpsResult=0x793efbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148514 queryId=116 tracked=1 perQueryCall=13 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c0000002c
2026-06-27 09:37:19.452 +841452ms hook GPSQueryResultFetch 0x7094b8 call=148515 queryId=116 tracked=1 perQueryCall=14 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit 0x70a42c call=117 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit result call=117 queryId=117 manager_nextIdD4=118/0x76
2026-06-27 09:37:20.115 +843115ms hook GPSQueryResultFetch 0x7094b8 call=148846 queryId=117 tracked=1 perQueryCall=10 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:20.116 +843116ms gps-momentum-summary queryId=117 resultFetchCall=11 submitCall=117 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5961656 globalCallsB=6318454 gpsResultRouteCount=35 gpsResult=0x795efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148847 queryId=117 tracked=1 perQueryCall=11 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148848 queryId=117 tracked=1 perQueryCall=12 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:37:22.792 +844792ms hook GPSQuerySubmit 0x70a42c call=118 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:22.793 +844793ms hook GPSQuerySubmit result call=118 queryId=118 manager_nextIdD4=119/0x77
2026-06-27 09:37:22.898 +844898ms hook GPSQueryResultFetch 0x7094b8 call=149189 queryId=118 tracked=1 perQueryCall=9 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:22.899 +844899ms gps-momentum-summary queryId=118 resultFetchCall=10 submitCall=118 submitRetRva=0x8d20d4 callsA=46889 callsB=49406 callsTotal=96295 fixedPenalty=80 penaltyTotal=7.7036e+06 globalCallsA=6008545 globalCallsB=6367860 gpsResultRouteCount=36 gpsResult=0x793efbb0 gpsResult_routeData=0x5a344e040 gpsResult_routeCapacity=36 gpsResult_routeCount=36 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149190 queryId=118 tracked=1 perQueryCall=10 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2400000024
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149191 queryId=118 tracked=1 perQueryCall=11 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x24
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit 0x70a42c call=119 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2037254148/0x796e0804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit result call=119 queryId=119 manager_nextIdD4=120/0x78
2026-06-27 09:37:23.553 +845553ms hook GPSQueryResultFetch 0x7094b8 call=149311 queryId=119 tracked=1 perQueryCall=11 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:23.554 +845554ms gps-momentum-summary queryId=119 resultFetchCall=12 submitCall=119 submitRetRva=0x8d20d4 callsA=53474 callsB=56500 callsTotal=109974 fixedPenalty=80 penaltyTotal=8.79792e+06 globalCallsA=6062019 globalCallsB=6424360 gpsResultRouteCount=35 gpsResult=0x796efbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149312 queryId=119 tracked=1 perQueryCall=12 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2300000023
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149313 queryId=119 tracked=1 perQueryCall=13 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x23
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit 0x70a42c call=120 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit result call=120 queryId=120 manager_nextIdD4=121/0x79
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149633 queryId=120 tracked=1 perQueryCall=11 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:25.230 +847230ms gps-momentum-summary queryId=120 resultFetchCall=12 submitCall=120 submitRetRva=0x8d20d4 callsA=51261 callsB=53921 callsTotal=105182 fixedPenalty=80 penaltyTotal=8.41456e+06 globalCallsA=6113280 globalCallsB=6478281 gpsResultRouteCount=39 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=39 gpsResult_routeCount=39 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149634 queryId=120 tracked=1 perQueryCall=12 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x2700000027
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149635 queryId=120 tracked=1 perQueryCall=13 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x27
2026-06-27 09:37:28.494 +850494ms hook GPSQuerySubmit 0x70a42c call=121 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:28.495 +850495ms hook GPSQuerySubmit result call=121 queryId=121 manager_nextIdD4=122/0x7a
2026-06-27 09:37:28.692 +850692ms hook GPSQueryResultFetch 0x7094b8 call=150259 queryId=121 tracked=1 perQueryCall=15 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:28.693 +850693ms gps-momentum-summary queryId=121 resultFetchCall=16 submitCall=121 submitRetRva=0x8d20d4 callsA=74269 callsB=78375 callsTotal=152644 fixedPenalty=80 penaltyTotal=1.22115e+07 globalCallsA=6187549 globalCallsB=6556656 gpsResultRouteCount=43 gpsResult=0x796efbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150260 queryId=121 tracked=1 perQueryCall=16 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b0000002b
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150261 queryId=121 tracked=1 perQueryCall=17 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit 0x70a42c call=122 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit result call=122 queryId=122 manager_nextIdD4=123/0x7b
2026-06-27 09:37:29.744 +851744ms hook GPSQueryResultFetch 0x7094b8 call=150445 queryId=122 tracked=1 perQueryCall=17 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:29.744 +851744ms gps-momentum-summary queryId=122 resultFetchCall=18 submitCall=122 submitRetRva=0x8d20d4 callsA=86743 callsB=91281 callsTotal=178024 fixedPenalty=80 penaltyTotal=1.42419e+07 globalCallsA=6274292 globalCallsB=6647937 gpsResultRouteCount=56 gpsResult=0x794efbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150446 queryId=122 tracked=1 perQueryCall=18 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3800000038
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150447 queryId=122 tracked=1 perQueryCall=19 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x38
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit 0x70a42c call=123 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit result call=123 queryId=123 manager_nextIdD4=124/0x7c
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150838 queryId=123 tracked=1 perQueryCall=23 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:31.058 +854058ms gps-momentum-summary queryId=123 resultFetchCall=24 submitCall=123 submitRetRva=0x8d20d4 callsA=107532 callsB=112808 callsTotal=220340 fixedPenalty=80 penaltyTotal=1.76272e+07 globalCallsA=6381824 globalCallsB=6760745 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x595ff6a30 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150839 queryId=123 tracked=1 perQueryCall=24 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150840 queryId=123 tracked=1 perQueryCall=25 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit 0x70a42c call=124 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit result call=124 queryId=124 manager_nextIdD4=125/0x7d
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151013 queryId=124 tracked=1 perQueryCall=19 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:32.072 +855072ms gps-momentum-summary queryId=124 resultFetchCall=20 submitCall=124 submitRetRva=0x8d20d4 callsA=81331 callsB=85498 callsTotal=166829 fixedPenalty=80 penaltyTotal=1.33463e+07 globalCallsA=6463155 globalCallsB=6846243 gpsResultRouteCount=52 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5cdd46d00 gpsResult_routeCapacity=52 gpsResult_routeCount=52 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151014 queryId=124 tracked=1 perQueryCall=20 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3400000034
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151015 queryId=124 tracked=1 perQueryCall=21 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x34
2026-06-27 09:37:35.062 +858062ms hook GPSQuerySubmit 0x70a42c call=125 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:35.063 +858063ms hook GPSQuerySubmit result call=125 queryId=125 manager_nextIdD4=126/0x7e
2026-06-27 09:37:36.242 +858242ms hook GPSQueryResultFetch 0x7094b8 call=151572 queryId=125 tracked=1 perQueryCall=15 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:36.242 +858242ms gps-momentum-summary queryId=125 resultFetchCall=16 submitCall=125 submitRetRva=0x8d20d4 callsA=78601 callsB=82908 callsTotal=161509 fixedPenalty=80 penaltyTotal=1.29207e+07 globalCallsA=6541756 globalCallsB=6929151 gpsResultRouteCount=50 gpsResult=0x7993fbb0 gpsResult_routeData=0x59bcc2d90 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151573 queryId=125 tracked=1 perQueryCall=16 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3200000032
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151574 queryId=125 tracked=1 perQueryCall=17 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x32
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit 0x70a42c call=126 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit result call=126 queryId=126 manager_nextIdD4=127/0x7f
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152209 queryId=126 tracked=1 perQueryCall=12 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:39.701 +861701ms gps-momentum-summary queryId=126 resultFetchCall=13 submitCall=126 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6609704 globalCallsB=7000803 gpsResultRouteCount=45 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152210 queryId=126 tracked=1 perQueryCall=13 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d0000002d
2026-06-27 09:37:39.702 +861702ms hook GPSQueryResultFetch 0x7094b8 call=152211 queryId=126 tracked=1 perQueryCall=14 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d
2026-06-27 09:37:39.082 +862082ms hook GPSQuerySubmit 0x70a42c call=127 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 09:37:39.083 +862083ms hook GPSQuerySubmit result call=127 queryId=127 manager_nextIdD4=128/0x80
2026-06-27 09:37:40.263 +862263ms hook GPSQueryResultFetch 0x7094b8 call=152316 queryId=127 tracked=1 perQueryCall=15 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:40.263 +862263ms gps-momentum-summary queryId=127 resultFetchCall=16 submitCall=127 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6685805 globalCallsB=7080894 gpsResultRouteCount=49 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152317 queryId=127 tracked=1 perQueryCall=16 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3100000031
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152318 queryId=127 tracked=1 perQueryCall=17 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x31
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152479 queryId=128 tracked=1 perQueryCall=18 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:41.177 +863177ms gps-momentum-summary queryId=128 resultFetchCall=19 submitCall=128 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6753753 globalCallsB=7152546 gpsResultRouteCount=45 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152480 queryId=128 tracked=1 perQueryCall=19 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d0000002d
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152481 queryId=128 tracked=1 perQueryCall=20 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152894 queryId=129 tracked=1 perQueryCall=15 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:43.285 +865285ms gps-momentum-summary queryId=129 resultFetchCall=16 submitCall=129 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6829854 globalCallsB=7232637 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x59708dcb0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152895 queryId=129 tracked=1 perQueryCall=16 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
2026-06-27 09:37:43.286 +865286ms hook GPSQueryResultFetch 0x7094b8 call=152896 queryId=129 tracked=1 perQueryCall=17 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
2026-06-27 09:37:44.431 +866431ms hook GPSQueryResultFetch 0x7094b8 call=153122 queryId=130 tracked=1 perQueryCall=12 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:44.432 +866432ms gps-momentum-summary queryId=130 resultFetchCall=13 submitCall=130 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=6886895 globalCallsB=7292596 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153123 queryId=130 tracked=1 perQueryCall=13 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153124 queryId=130 tracked=1 perQueryCall=14 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153476 queryId=131 tracked=1 perQueryCall=25 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:46.226 +868226ms gps-momentum-summary queryId=131 resultFetchCall=26 submitCall=131 submitRetRva=0x8d20d4 callsA=114176 callsB=119881 callsTotal=234057 fixedPenalty=80 penaltyTotal=1.87246e+07 globalCallsA=7001071 globalCallsB=7412477 gpsResultRouteCount=53 gpsResult=0x796efbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153477 queryId=131 tracked=1 perQueryCall=26 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:37:46.227 +868227ms hook GPSQueryResultFetch 0x7094b8 call=153478 queryId=131 tracked=1 perQueryCall=27 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x35
2026-06-27 09:37:47.788 +869788ms hook GPSQueryResultFetch 0x7094b8 call=153767 queryId=132 tracked=1 perQueryCall=15 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:47.789 +869789ms gps-momentum-summary queryId=132 resultFetchCall=16 submitCall=132 submitRetRva=0x8d20d4 callsA=79074 callsB=83000 callsTotal=162074 fixedPenalty=80 penaltyTotal=1.29659e+07 globalCallsA=7080145 globalCallsB=7495477 gpsResultRouteCount=53 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153768 queryId=132 tracked=1 perQueryCall=16 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153769 queryId=132 tracked=1 perQueryCall=17 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x35
2026-06-27 09:37:48.911 +870911ms hook GPSQueryResultFetch 0x7094b8 call=153955 queryId=133 tracked=1 perQueryCall=18 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:48.912 +870912ms gps-momentum-summary queryId=133 resultFetchCall=19 submitCall=133 submitRetRva=0x8d20d4 callsA=78657 callsB=83056 callsTotal=161713 fixedPenalty=80 penaltyTotal=1.2937e+07 globalCallsA=7158802 globalCallsB=7578533 gpsResultRouteCount=50 gpsResult=0x793efbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153956 queryId=133 tracked=1 perQueryCall=19 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x3200000032
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153957 queryId=133 tracked=1 perQueryCall=20 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x32
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154205 queryId=134 tracked=1 perQueryCall=24 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:37:50.356 +872356ms gps-momentum-summary queryId=134 resultFetchCall=25 submitCall=134 submitRetRva=0x8d20d4 callsA=114064 callsB=119718 callsTotal=233782 fixedPenalty=80 penaltyTotal=1.87026e+07 globalCallsA=7272866 globalCallsB=7698251 gpsResultRouteCount=53 gpsResult=0x31db50 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154206 queryId=134 tracked=1 perQueryCall=25 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154207 queryId=134 tracked=1 perQueryCall=26 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x35
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154594 queryId=135 tracked=1 perQueryCall=21 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:52.619 +874619ms gps-momentum-summary queryId=135 resultFetchCall=22 submitCall=135 submitRetRva=0x8d20d4 callsA=86232 callsB=90519 callsTotal=176751 fixedPenalty=80 penaltyTotal=1.41401e+07 globalCallsA=7359098 globalCallsB=7788770 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154595 queryId=135 tracked=1 perQueryCall=22 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154596 queryId=135 tracked=1 perQueryCall=23 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
2026-06-27 09:37:58.016 +881016ms hook GPSQueryResultFetch 0x7094b8 call=155730 queryId=136 tracked=1 perQueryCall=21 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:37:58.017 +881017ms gps-momentum-summary queryId=136 resultFetchCall=22 submitCall=136 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7460653 globalCallsB=7895580 gpsResultRouteCount=49 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a9ef29a0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155731 queryId=136 tracked=1 perQueryCall=22 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3100000031
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155732 queryId=136 tracked=1 perQueryCall=23 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x31
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157003 queryId=137 tracked=1 perQueryCall=13 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:38:07.682 +889682ms gps-momentum-summary queryId=137 resultFetchCall=14 submitCall=137 submitRetRva=0x8d20d4 callsA=71709 callsB=75945 callsTotal=147654 fixedPenalty=80 penaltyTotal=1.18123e+07 globalCallsA=7532362 globalCallsB=7971525 gpsResultRouteCount=48 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157004 queryId=137 tracked=1 perQueryCall=14 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3000000030
2026-06-27 09:38:07.683 +889683ms hook GPSQueryResultFetch 0x7094b8 call=157005 queryId=137 tracked=1 perQueryCall=15 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x30
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157214 queryId=138 tracked=1 perQueryCall=16 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:38:08.832 +890832ms gps-momentum-summary queryId=138 resultFetchCall=17 submitCall=138 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7613319 globalCallsB=8056663 gpsResultRouteCount=53 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a300ad90 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157215 queryId=138 tracked=1 perQueryCall=17 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:38:08.833 +890833ms hook GPSQueryResultFetch 0x7094b8 call=157216 queryId=138 tracked=1 perQueryCall=18 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x35
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157429 queryId=139 tracked=1 perQueryCall=17 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:38:09.074 +892074ms gps-momentum-summary queryId=139 resultFetchCall=18 submitCall=139 submitRetRva=0x8d20d4 callsA=81871 callsB=86147 callsTotal=168018 fixedPenalty=80 penaltyTotal=1.34414e+07 globalCallsA=7695190 globalCallsB=8142810 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157430 queryId=139 tracked=1 perQueryCall=18 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
2026-06-27 09:38:09.075 +892075ms hook GPSQueryResultFetch 0x7094b8 call=157431 queryId=139 tracked=1 perQueryCall=19 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
2026-06-27 09:38:11.305 +893305ms hook GPSQueryResultFetch 0x7094b8 call=157640 queryId=140 tracked=1 perQueryCall=23 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:38:11.306 +893306ms gps-momentum-summary queryId=140 resultFetchCall=24 submitCall=140 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7796745 globalCallsB=8249620 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157641 queryId=140 tracked=1 perQueryCall=24 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157642 queryId=140 tracked=1 perQueryCall=25 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
2026-06-27 09:39:19.409 +961409ms hook GPSQueryResultFetch 0x7094b8 call=169463 queryId=141 tracked=1 perQueryCall=15 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:39:19.409 +961409ms gps-momentum-summary queryId=141 resultFetchCall=16 submitCall=141 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7877702 globalCallsB=8334758 gpsResultRouteCount=53 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a30883a0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169464 queryId=141 tracked=1 perQueryCall=16 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169465 queryId=141 tracked=1 perQueryCall=17 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x35
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175046 queryId=142 tracked=1 perQueryCall=11 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:39:51.138 +994138ms gps-momentum-summary queryId=142 resultFetchCall=12 submitCall=142 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=7934743 globalCallsB=8394717 gpsResultRouteCount=45 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c3253ff0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175047 queryId=142 tracked=1 perQueryCall=12 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d0000002d
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175048 queryId=142 tracked=1 perQueryCall=13 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d
2026-06-27 09:39:55.778 +997778ms hook GPSQueryResultFetch 0x7094b8 call=175832 queryId=143 tracked=1 perQueryCall=17 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:39:55.778 +997778ms gps-momentum-summary queryId=143 resultFetchCall=18 submitCall=143 submitRetRva=0x8d20d4 callsA=64588 callsB=67941 callsTotal=132529 fixedPenalty=80 penaltyTotal=1.06023e+07 globalCallsA=7999331 globalCallsB=8462658 gpsResultRouteCount=48 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175833 queryId=143 tracked=1 perQueryCall=18 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3000000030
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175834 queryId=143 tracked=1 perQueryCall=19 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x30
2026-06-27 09:39:56.349 +998349ms hook GPSQueryResultFetch 0x7094b8 call=175939 queryId=144 tracked=1 perQueryCall=13 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:39:56.349 +998349ms gps-momentum-summary queryId=144 resultFetchCall=14 submitCall=144 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=8075432 globalCallsB=8542749 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175940 queryId=144 tracked=1 perQueryCall=14 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175941 queryId=144 tracked=1 perQueryCall=15 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
2026-06-27 09:39:58.783 +1000783ms hook GPSQueryResultFetch 0x7094b8 call=176418 queryId=145 tracked=1 perQueryCall=12 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:39:58.783 +1000783ms gps-momentum-summary queryId=145 resultFetchCall=13 submitCall=145 submitRetRva=0x8d20d4 callsA=60857 callsB=64111 callsTotal=124968 fixedPenalty=80 penaltyTotal=9.99744e+06 globalCallsA=8136289 globalCallsB=8606860 gpsResultRouteCount=48 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176419 queryId=145 tracked=1 perQueryCall=13 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3000000030
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176420 queryId=145 tracked=1 perQueryCall=14 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x30
2026-06-27 09:40:22.522 +1024522ms hook GPSQueryResultFetch 0x7094b8 call=181029 queryId=146 tracked=1 perQueryCall=19 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:22.522 +1024522ms gps-momentum-summary queryId=146 resultFetchCall=20 submitCall=146 submitRetRva=0x8d20d4 callsA=94645 callsB=99283 callsTotal=193928 fixedPenalty=80 penaltyTotal=1.55142e+07 globalCallsA=8230934 globalCallsB=8706143 gpsResultRouteCount=53 gpsResult=0x794efbb0 gpsResult_routeData=0x5b8d26bf0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181030 queryId=146 tracked=1 perQueryCall=20 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3500000035
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181031 queryId=146 tracked=1 perQueryCall=21 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x35
2026-06-27 09:40:25.583 +1027583ms hook GPSQueryResultFetch 0x7094b8 call=181630 queryId=147 tracked=1 perQueryCall=17 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
2026-06-27 09:40:25.583 +1027583ms gps-momentum-summary queryId=147 resultFetchCall=18 submitCall=147 submitRetRva=0x8d20d4 callsA=94662 callsB=99361 callsTotal=194023 fixedPenalty=80 penaltyTotal=1.55218e+07 globalCallsA=8325596 globalCallsB=8805504 gpsResultRouteCount=51 gpsResult=0x31db50 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181631 queryId=147 tracked=1 perQueryCall=18 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3300000033
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181632 queryId=147 tracked=1 perQueryCall=19 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x33
2026-06-27 09:40:26.249 +1028249ms hook GPSQueryResultFetch 0x7094b8 call=181771 queryId=148 tracked=1 perQueryCall=18 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:26.250 +1028250ms gps-momentum-summary queryId=148 resultFetchCall=19 submitCall=148 submitRetRva=0x8d20d4 callsA=96443 callsB=101123 callsTotal=197566 fixedPenalty=80 penaltyTotal=1.58053e+07 globalCallsA=8422039 globalCallsB=8906627 gpsResultRouteCount=51 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181772 queryId=148 tracked=1 perQueryCall=19 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3300000033
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181773 queryId=148 tracked=1 perQueryCall=20 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x33
2026-06-27 09:40:26.947 +1028947ms hook GPSQueryResultFetch 0x7094b8 call=181918 queryId=149 tracked=1 perQueryCall=19 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:26.947 +1028947ms gps-momentum-summary queryId=149 resultFetchCall=20 submitCall=149 submitRetRva=0x8d20d4 callsA=96421 callsB=101149 callsTotal=197570 fixedPenalty=80 penaltyTotal=1.58056e+07 globalCallsA=8518460 globalCallsB=9007776 gpsResultRouteCount=56 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181919 queryId=149 tracked=1 perQueryCall=20 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3800000038
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181920 queryId=149 tracked=1 perQueryCall=21 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x38
2026-06-27 09:40:51.330 +1053330ms hook GPSQueryResultFetch 0x7094b8 call=187131 queryId=150 tracked=1 perQueryCall=23 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:51.331 +1053331ms gps-momentum-summary queryId=150 resultFetchCall=24 submitCall=150 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=8630353 globalCallsB=9124761 gpsResultRouteCount=59 gpsResult=0x794efbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187132 queryId=150 tracked=1 perQueryCall=24 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187133 queryId=150 tracked=1 perQueryCall=25 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187469 queryId=151 tracked=1 perQueryCall=26 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:54.481 +1056481ms gps-momentum-summary queryId=151 resultFetchCall=27 submitCall=151 submitRetRva=0x8d20d4 callsA=139362 callsB=146130 callsTotal=285492 fixedPenalty=80 penaltyTotal=2.28394e+07 globalCallsA=8769715 globalCallsB=9270891 gpsResultRouteCount=68 gpsResult=0x796efbb0 gpsResult_routeData=0x5ac786db0 gpsResult_routeCapacity=68 gpsResult_routeCount=68 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187470 queryId=151 tracked=1 perQueryCall=27 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x4400000044
2026-06-27 09:40:54.482 +1056482ms hook GPSQueryResultFetch 0x7094b8 call=187471 queryId=151 tracked=1 perQueryCall=28 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x44
2026-06-27 09:40:55.901 +1057901ms hook GPSQueryResultFetch 0x7094b8 call=187734 queryId=152 tracked=1 perQueryCall=30 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:55.902 +1057902ms gps-momentum-summary queryId=152 resultFetchCall=31 submitCall=152 submitRetRva=0x8d20d4 callsA=131009 callsB=137351 callsTotal=268360 fixedPenalty=80 penaltyTotal=2.14688e+07 globalCallsA=8900724 globalCallsB=9408242 gpsResultRouteCount=67 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187735 queryId=152 tracked=1 perQueryCall=31 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x4300000043
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187736 queryId=152 tracked=1 perQueryCall=32 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x43
2026-06-27 09:40:56.761 +1058761ms hook GPSQueryResultFetch 0x7094b8 call=187884 queryId=153 tracked=1 perQueryCall=23 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:56.762 +1058762ms gps-momentum-summary queryId=153 resultFetchCall=24 submitCall=153 submitRetRva=0x8d20d4 callsA=90608 callsB=95127 callsTotal=185735 fixedPenalty=80 penaltyTotal=1.48588e+07 globalCallsA=8991332 globalCallsB=9503369 gpsResultRouteCount=55 gpsResult=0x796efbb0 gpsResult_routeData=0x5b65c6510 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187885 queryId=153 tracked=1 perQueryCall=24 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3700000037
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187886 queryId=153 tracked=1 perQueryCall=25 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x37
2026-06-27 09:40:57.587 +1059587ms hook GPSQueryResultFetch 0x7094b8 call=188032 queryId=154 tracked=1 perQueryCall=22 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:57.588 +1059588ms gps-momentum-summary queryId=154 resultFetchCall=23 submitCall=154 submitRetRva=0x8d20d4 callsA=92730 callsB=97388 callsTotal=190118 fixedPenalty=80 penaltyTotal=1.52094e+07 globalCallsA=9084062 globalCallsB=9600757 gpsResultRouteCount=55 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188033 queryId=154 tracked=1 perQueryCall=23 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3700000037
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188034 queryId=154 tracked=1 perQueryCall=24 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x37
2026-06-27 09:40:58.638 +1060638ms hook GPSQueryResultFetch 0x7094b8 call=188224 queryId=155 tracked=1 perQueryCall=24 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:58.638 +1060638ms gps-momentum-summary queryId=155 resultFetchCall=25 submitCall=155 submitRetRva=0x8d20d4 callsA=125813 callsB=131448 callsTotal=257261 fixedPenalty=80 penaltyTotal=2.05809e+07 globalCallsA=9209875 globalCallsB=9732205 gpsResultRouteCount=56 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188225 queryId=155 tracked=1 perQueryCall=25 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3800000038
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188226 queryId=155 tracked=1 perQueryCall=26 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x38
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188410 queryId=156 tracked=1 perQueryCall=21 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:40:59.668 +1061668ms gps-momentum-summary queryId=156 resultFetchCall=22 submitCall=156 submitRetRva=0x8d20d4 callsA=116627 callsB=122251 callsTotal=238878 fixedPenalty=80 penaltyTotal=1.91102e+07 globalCallsA=9326502 globalCallsB=9854456 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188411 queryId=156 tracked=1 perQueryCall=22 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
2026-06-27 09:40:59.669 +1061669ms hook GPSQueryResultFetch 0x7094b8 call=188412 queryId=156 tracked=1 perQueryCall=23 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188737 queryId=157 tracked=1 perQueryCall=19 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
2026-06-27 09:41:01.490 +1063490ms gps-momentum-summary queryId=157 resultFetchCall=20 submitCall=157 submitRetRva=0x8d20d4 callsA=77630 callsB=81730 callsTotal=159360 fixedPenalty=80 penaltyTotal=1.27488e+07 globalCallsA=9404132 globalCallsB=9936186 gpsResultRouteCount=55 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188738 queryId=157 tracked=1 perQueryCall=20 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3700000037
2026-06-27 09:41:01.491 +1063491ms hook GPSQueryResultFetch 0x7094b8 call=188739 queryId=157 tracked=1 perQueryCall=21 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x37
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,762 @@
2026-06-21 03:14:46.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05b0000 sdk=0x7f7f1e78 runtime=2.3.1
2026-06-21 03:14:46.000 +0ms registered Running game-state callbacks
2026-06-21 03:14:46.007 +7ms hook attach GPSSearch 0x44f054 target=0x14044f054 rva=0x44f054 result=ok original=0x1018c0480
2026-06-21 03:14:46.014 +14ms hook attach GPSRouteProducer 0x44cc7c target=0x14044cc7c rva=0x44cc7c result=ok original=0x1018c04e0
2026-06-21 03:14:46.021 +21ms hook attach GPSEdgeCost 0x44f838 target=0x14044f838 rva=0x44f838 result=ok original=0x1018c0540
2026-06-21 03:14:46.028 +28ms hook attach GPSFilteredProviderFilter 0x44ff68 target=0x14044ff68 rva=0x44ff68 result=ok original=0x1018c05a0
2026-06-21 03:14:46.035 +35ms hook attach GPSBaseProviderFilter 0x450b08 target=0x140450b08 rva=0x450b08 result=ok original=0x1018c0600
2026-06-21 03:15:03.172 +17172ms GameState Running OnEnter app=0x31fb80
2026-06-21 03:15:03.216 +17216ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-21 03:15:03.223 +17223ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-21 03:15:03.230 +17230ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-21 03:15:03.237 +17237ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-21 03:15:03.244 +17244ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-21 03:15:33.441 +47441ms hook GPSRouteProducer 0x44cc7c call=0 graph=0x591db1080 query=0x794bdf70 outResult=0x794be0d0 query_start00=(-1403.95,-758.791,3.64088,1) query_end10=(-2147.66,-2171.23,5.45449,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer 0x44cc7c call=2 graph=0x591db1080 query=0x799fdf70 outResult=0x799fe0d0 query_start00=(-1403.26,-758.275,3.64083,1) query_end10=(-2143.4,-2168.72,5.45309,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer result call=0 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer result call=2 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer 0x44cc7c call=1 graph=0x591db1080 query=0x795bdf70 outResult=0x795be0d0 query_start00=(-1402.43,-747.214,3.63892,1) query_end10=(-580.4,-2113.95,5.13375,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:33.443 +47443ms hook GPSRouteProducer result call=1 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.106 +58106ms hook GPSRouteProducer 0x44cc7c call=3 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1411.65,-746.178,11.6512,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1118161408/0x42a5ca00 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
2026-06-21 03:15:44.106 +58106ms hook GPSRouteProducer 0x44cc7c call=4 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1319.33,-698.032,8.2594,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
2026-06-21 03:15:44.106 +58106ms hook GPSSearch 0x44f054 call=0 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826b10 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1411.65,11.8,-746.178) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=3 ret_rva=0x44d117
2026-06-21 03:15:44.107 +58107ms hook GPSSearch result call=0 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:44.107 +58107ms hook GPSSearch 0x44f054 call=1 startHandle=0x100000ab00057 targetHandle=0x100000ab000bf graph=0x1a1826aa0 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1319.33,8.5,-698.032) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=4 ret_rva=0x44d117
2026-06-21 03:15:44.107 +58107ms hook GPSRouteProducer 0x44cc7c call=5 graph=0x591db1080 query=0x31c2e0 outResult=0x31c440 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1356.53,-728.048,9.04568,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.108 +58108ms hook GPSEdgeCost 0x44f838 call=0 classCall=0 sourceClass=5 neighborClass=5 value=1.38482 multiplier=1 baseCost=1.38482 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00056 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1325.08,7.9,-706.537) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b1277518 neighborPoint_adj=210 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer result call=3 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2935979888/0xaeff7f70 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.108 +58108ms hook GPSEdgeCost 0x44f838 call=1 classCall=1 sourceClass=5 neighborClass=5 value=2.42146 multiplier=1 baseCost=2.42146 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00053 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1327.21,7.9,-709.69) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b12774dc neighborPoint_adj=203 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x5 ret_rva=0x44f457
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer 0x44cc7c call=7 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1409.76,-746.817,11.6752,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1107826176/0x42081600 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer 0x44cc7c call=8 graph=0x591db1080 query=0x796be330 outResult=0x796be490 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1375.08,-727.725,9.01456,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.109 +58109ms hook GPSEdgeCost 0x44f838 call=2 classCall=2 sourceClass=5 neighborClass=5 value=0.716923 multiplier=1 baseCost=0.716923 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00058 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1326.55,7.9,-707.5) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b1277540 neighborPoint_adj=216 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x5 ret_rva=0x44f457
2026-06-21 03:15:44.109 +58109ms hook GPSRouteProducer 0x44cc7c call=10 graph=0x591db1080 query=0x79e7e330 outResult=0x79e7e490 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.29,-693.515,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.109 +58109ms hook GPSRouteProducer 0x44cc7c call=9 graph=0x591db1080 query=0x797fe330 outResult=0x797fe490 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1376.81,-727.666,9.01226,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.109 +58109ms hook GPSSearch 0x44f054 call=2 startHandle=0x100000a5000ca targetHandle=0x100000a5000c5 graph=0x1a1826b10 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1356.53,9.1,-728.048) outPath=0x31b450 outCount=0x31a150 provider=0x31b160 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=5 ret_rva=0x44d117
2026-06-21 03:15:44.109 +58109ms hook GPSSearch 0x44f054 call=4 startHandle=0x100000a000073 targetHandle=0x100000a00003a graph=0x1a18269c0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1375.08,9.1,-727.725) outPath=0x796bd4a0 outCount=0x796bc1a0 provider=0x796bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=8 ret_rva=0x44d117
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=3 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826a30 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1409.76,11.8,-746.817) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=7 ret_rva=0x44d117
2026-06-21 03:15:44.110 +58110ms hook GPSEdgeCost 0x44f838 call=3 classCall=3 sourceClass=5 neighborClass=15 value=1.41212 multiplier=1 baseCost=1.41212 previousHandle=0x100000ab00057 currentHandle=0x100000ab00056 neighborHandle=0x100000ab0007f provider=0x79d7cbd0 currentState=(-1325.08,7.9,-706.537) neighborState=(-1324.29,7.9,-705.367) previousSegment=0x15a0984578 previousPoint=0x5b127752c previousPoint_adj=213 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a0984578 currentPoint=0x5b1277518 currentPoint_adj=210 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b127784c neighborPoint_adj=319 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
2026-06-21 03:15:44.110 +58110ms hook GPSRouteProducer 0x44cc7c call=6 graph=0x591db1080 query=0x79bfe330 outResult=0x79bfe490 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1368.72,-727.811,9.02576,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=5 startHandle=0x100000ab00135 targetHandle=0x100000ab00154 graph=0x1a1826950 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.29,7.9,-693.515) outPath=0x79e7d4a0 outCount=0x79e7c1a0 provider=0x79e7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=10 ret_rva=0x44d117
2026-06-21 03:15:44.110 +58110ms hook GPSRouteProducer 0x44cc7c call=12 graph=0x591db1080 query=0x795be330 outResult=0x795be490 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1315.81,-686.376,8.2222,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=7 startHandle=0x100000a00005a targetHandle=0x100000a000061 graph=0x1a1826790 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1368.72,9.1,-727.811) outPath=0x79bfd4a0 outCount=0x79bfc1a0 provider=0x79bfd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=6 ret_rva=0x44d117
2026-06-21 03:15:44.111 +58111ms hook GPSSearch 0x44f054 call=6 startHandle=0x100000a00006d targetHandle=0x100000a000074 graph=0x1a18268e0 startPoint=(-1379.83,9.1,-725) targetPoint=(-1376.81,9.1,-727.666) outPath=0x797fd4a0 outCount=0x797fc1a0 provider=0x797fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=9 ret_rva=0x44d117
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=5 classCall=1 sourceClass=3 neighborClass=3 value=2.45059 multiplier=1 baseCost=2.45059 previousHandle=0x0 currentHandle=0x100000a000073 neighborHandle=0x100000a00006e provider=0x796bd1b0 currentState=(-1378.5,9.1,-725) neighborState=(-1378.55,9.1,-727.45) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b109910c currentPoint_adj=225 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b10990a8 neighborPoint_adj=216 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=7 classCall=5 sourceClass=5 neighborClass=5 value=0.401001 multiplier=1 baseCost=0.401001 previousHandle=0x0 currentHandle=0x100000ab00135 neighborHandle=0x100000ab0016c provider=0x79e7d1b0 currentState=(-1326.15,7.9,-690.519) neighborState=(-1326.13,7.9,-690.118) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b1278684 currentPoint_adj=701 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278ad0 neighborPoint_adj=817 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=4 classCall=0 sourceClass=3 neighborClass=3 value=0.48881 multiplier=1 baseCost=0.48881 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a00002d provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1360.8,9.1,-724.667) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984100 neighborPoint=0x5b1098b94 neighborPoint_adj=647 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=8 classCall=2 sourceClass=3 neighborClass=3 value=0.289185 multiplier=1 baseCost=0.289185 previousHandle=0x0 currentHandle=0x100000a00005a neighborHandle=0x100000a00005b provider=0x79bfd1b0 currentState=(-1371.98,9.1,-724.8) neighborState=(-1371.77,9.1,-724.996) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b1098f18 currentPoint_adj=176 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f2c neighborPoint_adj=178 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=10 classCall=4 sourceClass=3 neighborClass=3 value=0.587521 multiplier=1 baseCost=0.587521 previousHandle=0x0 currentHandle=0x100000a000073 neighborHandle=0x100000a000075 provider=0x796bd1b0 currentState=(-1378.5,9.1,-725) neighborState=(-1378.04,9.1,-725.366) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b109910c currentPoint_adj=225 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1099134 neighborPoint_adj=230 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=6 classCall=4 sourceClass=5 neighborClass=5 value=1.7403 multiplier=1 baseCost=1.7403 previousHandle=0x100000ab00057 currentHandle=0x100000ab00056 neighborHandle=0x100000ab00048 provider=0x79d7cbd0 currentState=(-1325.08,7.9,-706.537) neighborState=(-1323.6,7.9,-707.45) previousSegment=0x15a0984578 previousPoint=0x5b127752c previousPoint_adj=213 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a0984578 currentPoint=0x5b1277518 currentPoint_adj=210 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1277400 neighborPoint_adj=177 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.112 +58112ms hook GPSRouteProducer 0x44cc7c call=11 graph=0x591db1080 query=0x794be330 outResult=0x794be490 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.62,-746.741,11.8422,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=13 classCall=6 sourceClass=3 neighborClass=3 value=0.11235 multiplier=1 baseCost=0.11235 previousHandle=0x100000a00005a currentHandle=0x100000a00005b neighborHandle=0x100000a00005c provider=0x79bfd1b0 currentState=(-1371.77,9.1,-724.996) neighborState=(-1371.69,9.1,-725.072) previousSegment=0x15a0984100 previousPoint=0x5b1098f18 previousPoint_adj=176 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f2c currentPoint_adj=178 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f40 neighborPoint_adj=181 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=12 classCall=5 sourceClass=3 neighborClass=3 value=1.97685 multiplier=1 baseCost=1.97685 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a5000c9 provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1358.6,9.1,-725.75) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ee8 neighborPoint_adj=453 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.112 +58112ms hook GPSSearch result call=3 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:44.113 +58113ms hook GPSSearch 0x44f054 call=8 startHandle=0x100000ab00166 targetHandle=0x100000ab00152 graph=0x1a1826870 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1315.81,8.5,-686.376) outPath=0x795bd4a0 outCount=0x795bc1a0 provider=0x795bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=12 ret_rva=0x44d117
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=15 classCall=0 sourceClass=15 neighborClass=15 value=0.945754 multiplier=1 baseCost=0.945754 previousHandle=0x100000ab00056 currentHandle=0x100000ab0007f neighborHandle=0x100000ab0007e provider=0x79d7cbd0 currentState=(-1324.29,7.9,-705.367) neighborState=(-1323.78,8.1761,-704.618) previousSegment=0x15a0984578 previousPoint=0x5b1277518 previousPoint_adj=210 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b127784c currentPoint_adj=319 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277838 neighborPoint_adj=316 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=11 classCall=6 sourceClass=5 neighborClass=5 value=0.412059 multiplier=1 baseCost=0.412059 previousHandle=0x100000ab00135 currentHandle=0x100000ab0016c neighborHandle=0x100000ab0013e provider=0x79e7d1b0 currentState=(-1326.13,7.9,-690.118) neighborState=(-1326.11,7.9,-689.706) previousSegment=0x15a0984578 previousPoint=0x5b1278684 previousPoint_adj=701 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278ad0 currentPoint_adj=817 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278738 neighborPoint_adj=722 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=14 classCall=7 sourceClass=3 neighborClass=3 value=0.310766 multiplier=1 baseCost=0.310766 previousHandle=0x100000a000073 currentHandle=0x100000a000075 neighborHandle=0x100000a000074 provider=0x796bd1b0 currentState=(-1378.04,9.1,-725.366) neighborState=(-1377.79,9.1,-725.56) previousSegment=0x15a0984100 previousPoint=0x5b109910c previousPoint_adj=225 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1099134 currentPoint_adj=230 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984100 neighborPoint=0x5b1099120 neighborPoint_adj=228 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.113 +58113ms hook GPSSearch 0x44f054 call=9 startHandle=0x100000aa0000e targetHandle=0x100000a900001 graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.62,11.8,-746.741) outPath=0x794bd4a0 outCount=0x794bc1a0 provider=0x794bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=11 ret_rva=0x44d117
2026-06-21 03:15:44.113 +58113ms hook GPSRouteProducer 0x44cc7c call=13 graph=0x591db1080 query=0x79afe330 outResult=0x79afe490 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1296.28,-705.87,7.60401,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.114 +58114ms hook GPSRouteProducer 0x44cc7c call=15 graph=0x591db1080 query=0x798fe330 outResult=0x798fe490 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1359.05,-656.989,6.70182,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=19 classCall=1 sourceClass=15 neighborClass=15 value=1.07461 multiplier=1 baseCost=1.07461 previousHandle=0x100000ab00056 currentHandle=0x100000ab0007f neighborHandle=0x100000ab00080 provider=0x79d7cbd0 currentState=(-1324.29,7.9,-705.367) neighborState=(-1324.85,8.2,-704.5) previousSegment=0x15a0984578 previousPoint=0x5b1277518 previousPoint_adj=210 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b127784c currentPoint_adj=319 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277860 neighborPoint_adj=322 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=20 classCall=7 sourceClass=5 neighborClass=5 value=1.50551 multiplier=1 baseCost=1.50551 previousHandle=0x100000ab00135 currentHandle=0x100000ab0016c neighborHandle=0x100000ab0016d provider=0x79e7d1b0 currentState=(-1326.13,7.9,-690.118) neighborState=(-1327.5,7.9,-689.5) previousSegment=0x15a0984578 previousPoint=0x5b1278684 previousPoint_adj=701 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278ad0 currentPoint_adj=817 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278ae4 neighborPoint_adj=819 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=16 classCall=8 sourceClass=3 neighborClass=3 value=2.38988 multiplier=1 baseCost=2.38988 previousHandle=0x100000a00005b currentHandle=0x100000a00005c neighborHandle=0x100000a000059 provider=0x79bfd1b0 currentState=(-1371.69,9.1,-725.072) neighborState=(-1369.3,9.1,-725) previousSegment=0x15a0984100 previousPoint=0x5b1098f2c previousPoint_adj=178 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f40 currentPoint_adj=181 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f04 neighborPoint_adj=175 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=17 classCall=9 sourceClass=3 neighborClass=3 value=4.13163 multiplier=1 baseCost=4.13163 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a5000cb provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1357.18,9.1,-727.538) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5f10 neighborPoint_adj=458 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=21 classCall=11 sourceClass=3 neighborClass=3 value=0.9241 multiplier=1 baseCost=0.9241 previousHandle=0x100000a000075 currentHandle=0x100000a000074 neighborHandle=0x100000a000072 provider=0x796bd1b0 currentState=(-1377.79,9.1,-725.56) neighborState=(-1377.1,9.1,-724.95) previousSegment=0x15a0984100 previousPoint=0x5b1099134 previousPoint_adj=230 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984100 currentPoint=0x5b1099120 currentPoint_adj=228 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b10990f8 neighborPoint_adj=223 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=23 classCall=2 sourceClass=15 neighborClass=3 value=0.926298 multiplier=1 baseCost=0.926298 previousHandle=0x100000ab0007f currentHandle=0x100000ab0007e neighborHandle=0x100000ab000b5 provider=0x79d7cbd0 currentState=(-1323.78,8.1761,-704.618) neighborState=(-1323.8,8.5,-703.75) previousSegment=0x15a0984578 previousPoint=0x5b127784c previousPoint_adj=319 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=15 previousPoint_raw13=0xf currentSegment=0x15a0984578 currentPoint=0x5b1277838 currentPoint_adj=316 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277c84 neighborPoint_adj=439 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.115 +58115ms hook GPSRouteProducer result call=7 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2935979888/0xaeff7f70 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=26 classCall=14 sourceClass=3 neighborClass=3 value=0.539255 multiplier=1 baseCost=0.539255 previousHandle=0x100000a5000ca currentHandle=0x100000a5000cb neighborHandle=0x100000a5000c7 provider=0x31b160 currentState=(-1357.18,9.1,-727.538) neighborState=(-1356.76,9.1,-727.872) previousSegment=0x15a0984308 previousPoint=0x5b10f5efc previousPoint_adj=963 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984308 currentPoint=0x5b10f5f10 currentPoint_adj=458 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ec0 neighborPoint_adj=449 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.115 +58115ms hook GPSRouteProducer 0x44cc7c call=16 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1416.09,-755.121,11.7576,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1095910656/0x41524500 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=24 classCall=8 sourceClass=5 neighborClass=5 value=0.597161 multiplier=1 baseCost=0.597161 previousHandle=0x100000ab0016c currentHandle=0x100000ab0013e neighborHandle=0x100000ab00140 provider=0x79e7d1b0 currentState=(-1326.11,7.9,-689.706) neighborState=(-1326.08,7.9,-689.11) previousSegment=0x15a0984578 previousPoint=0x5b1278ad0 previousPoint_adj=817 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278738 currentPoint_adj=722 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278760 neighborPoint_adj=727 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=22 classCall=12 sourceClass=3 neighborClass=3 value=1.64323 multiplier=1 baseCost=1.64323 previousHandle=0x0 currentHandle=0x100000aa0000e neighborHandle=0x100000aa0000d provider=0x794bd1b0 currentState=(-1322.7,11.8,-743.097) neighborState=(-1321.89,11.8,-744.525) previousSegment=0 previousPoint=0 currentSegment=0x15a0984510 currentPoint=0x5b125b270 currentPoint_adj=28 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984510 neighborPoint=0x5b125b25c neighborPoint_adj=26 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=30 classCall=9 sourceClass=5 neighborClass=5 value=0.161755 multiplier=1 baseCost=0.161755 previousHandle=0x100000ab0013e currentHandle=0x100000ab00140 neighborHandle=0x100000ab0013f provider=0x79e7d1b0 currentState=(-1326.08,7.9,-689.11) neighborState=(-1326.07,7.9,-688.948) previousSegment=0x15a0984578 previousPoint=0x5b1278738 previousPoint_adj=722 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278760 currentPoint_adj=727 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b127874c neighborPoint_adj=725 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
2026-06-21 03:15:44.116 +58116ms hook GPSRouteProducer 0x44cc7c call=14 graph=0x591db1080 query=0x799fe330 outResult=0x799fe490 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.05,-743.591,11.7714,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=18 classCall=10 sourceClass=3 neighborClass=3 value=0.396966 multiplier=1 baseCost=0.396966 previousHandle=0x0 currentHandle=0x100000ab00166 neighborHandle=0x100000ab00164 provider=0x795bd1b0 currentState=(-1321.41,8.5,-683.25) neighborState=(-1321.8,8.5,-683.2) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b1278a58 currentPoint_adj=803 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984578 neighborPoint=0x5b1278a30 neighborPoint_adj=798 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=28 classCall=3 sourceClass=15 neighborClass=15 value=0.349674 multiplier=1 baseCost=0.349674 previousHandle=0x100000ab0007f currentHandle=0x100000ab0007e neighborHandle=0x100000ab00073 provider=0x79d7cbd0 currentState=(-1323.78,8.1761,-704.618) neighborState=(-1323.6,8.29548,-704.345) previousSegment=0x15a0984578 previousPoint=0x5b127784c previousPoint_adj=319 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=15 previousPoint_raw13=0xf currentSegment=0x15a0984578 currentPoint=0x5b1277838 currentPoint_adj=316 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b127775c neighborPoint_adj=287 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
2026-06-21 03:15:44.117 +58117ms hook GPSSearch result call=5 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[5:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=29 classCall=16 sourceClass=3 neighborClass=3 value=3.31254 multiplier=1 baseCost=3.31254 previousHandle=0x100000a5000ca currentHandle=0x100000a5000cb neighborHandle=0x100000a5000c8 provider=0x31b160 currentState=(-1357.18,9.1,-727.538) neighborState=(-1359.15,9.1,-730.2) previousSegment=0x15a0984308 previousPoint=0x5b10f5efc previousPoint_adj=963 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984308 currentPoint=0x5b10f5f10 currentPoint_adj=458 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ed4 neighborPoint_adj=450 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=31 classCall=17 sourceClass=3 neighborClass=3 value=1.96563 multiplier=1 baseCost=1.96563 previousHandle=0x0 currentHandle=0x100000aa0000e neighborHandle=0x100000aa0000f provider=0x794bd1b0 currentState=(-1322.7,11.8,-743.097) neighborState=(-1320.75,11.8,-742.85) previousSegment=0 previousPoint=0 currentSegment=0x15a0984510 currentPoint=0x5b125b270 currentPoint_adj=28 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984510 neighborPoint=0x5b125b284 neighborPoint_adj=31 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=25 classCall=13 sourceClass=3 neighborClass=3 value=0.00682394 multiplier=1 baseCost=0.00682394 previousHandle=0x100000a00005b currentHandle=0x100000a00005c neighborHandle=0x100000a00005d provider=0x79bfd1b0 currentState=(-1371.69,9.1,-725.072) neighborState=(-1371.68,9.1,-725.077) previousSegment=0x15a0984100 previousPoint=0x5b1098f2c previousPoint_adj=178 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f40 currentPoint_adj=181 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f54 neighborPoint_adj=183 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=27 classCall=15 sourceClass=3 neighborClass=3 value=2.03871 multiplier=1 baseCost=2.03871 previousHandle=0x100000a000075 currentHandle=0x100000a000074 neighborHandle=0x100000a000038 provider=0x796bd1b0 currentState=(-1377.79,9.1,-725.56) neighborState=(-1376.2,9.1,-726.83) previousSegment=0x15a0984100 previousPoint=0x5b1099134 previousPoint_adj=230 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984100 currentPoint=0x5b1099120 currentPoint_adj=228 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098c70 neighborPoint_adj=109 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
2026-06-21 03:15:44.118 +58118ms hook GPSEdgeCost 0x44f838 call=9 classCall=3 sourceClass=3 neighborClass=3 value=3.0004 multiplier=1 baseCost=3.0004 previousHandle=0x0 currentHandle=0x100000a00006d neighborHandle=0x100000a00004b provider=0x797fd1b0 currentState=(-1379.83,9.1,-725) neighborState=(-1381.7,9.1,-727.35) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b1099094 currentPoint_adj=214 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098dec neighborPoint_adj=145 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=8 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=13 filterPass=13 filterFail=0 filterBase=13 filterFiltered=0 filterPassClasses=[3:13] filterFailClasses=[none] filterPassMaskBits=[0:13,1:13] filterFailMaskBits=[none]
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=2 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=4 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[3:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=1 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=19 filterPass=19 filterFail=0 filterBase=0 filterFiltered=19 filterPassClasses=[3:9,5:4,15:6] filterFailClasses=[none] filterPassMaskBits=[0:19,1:19] filterFailMaskBits=[none]
2026-06-21 03:15:44.118 +58118ms hook GPSRouteProducer result call=12 value=0x42ae6120 out_u0c=9/0x9 out_u1c=2/0x2 out_u20=2962688624/0xb0970a70 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1143885462/0x442e4e96 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.220 edgeCostMax=6.869 edgeCostAvg=1.684 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=0.397 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=1.605 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.949 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.329 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=4.654 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=1.159 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=0.931 ret=0x44f457 cur=0x100000ab0013d dst=0x100000ab00169]
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=10 startHandle=0x100000ab00087 targetHandle=0x100000ab00061 graph=0x1a1826950 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1296.28,8.08714,-705.87) outPath=0x79afd4a0 outCount=0x79afc1a0 provider=0x79afd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=13 ret_rva=0x44d117
2026-06-21 03:15:44.119 +58119ms hook GPSRouteProducer result call=5 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2251192256/0x862e77c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.071 edgeCostMax=4.132 edgeCostAvg=1.533 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.489 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=1.977 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.132 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=0.539 ret=0x44f457 cur=0x100000a5000cb dst=0x100000a5000c7;4:3>3 cost=3.313 ret=0x44f457 cur=0x100000a5000cb dst=0x100000a5000c8;5:3>3 cost=0.071 ret=0x44f457 cur=0x100000a5000c7 dst=0x100000a5000c5;6:3>255 cost=0.212 ret=0x44f629 cur=0x100000a5000c5 dst=0x0]
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=11 startHandle=0x1000009b00100 targetHandle=0x1000009b00076 graph=0x1a1826870 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.05,11.8,-743.591) outPath=0x799fd4a0 outCount=0x799fc1a0 provider=0x799fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=14 ret_rva=0x44d117
2026-06-21 03:15:44.119 +58119ms hook GPSSearch result call=6 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=12 startHandle=0x1000009a003a4 targetHandle=0x1000009a002b1 graph=0x1a1826b10 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1416.09,11.8,-755.121) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=16 ret_rva=0x44d117
2026-06-21 03:15:44.119 +58119ms hook GPSRouteProducer result call=4 value=0x42ae6120 out_u0c=10/0xa out_u1c=5/0x5 out_u20=2908404688/0xad5abbd0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=0.050 edgeCostMax=3.158 edgeCostAvg=1.372 edgeSrcClasses=[3:9,5:5,15:6] edgeDstClasses=[3:9,5:4,15:6,invalid:1] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:5>5 cost=1.385 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=2.421 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.717 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=1.412 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=1.740 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:15>15 cost=0.946 ret=0x44f457 cur=0x100000ab0007f dst=0x100000ab0007e;6:15>15 cost=1.075 ret=0x44f457 cur=0x100000ab0007f dst=0x100000ab00080;7:15>3 cost=0.926 ret=0x44f457 cur=0x100000ab0007e dst=0x100000ab000b5]
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=10 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[3:3,15:1] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:44.120 +58120ms hook GPSRouteProducer 0x44cc7c call=17 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1316.99,-675.387,8.22249,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1113861888/0x42642f00 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=9 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=7 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.120 +58120ms hook GPSRouteProducer result call=8 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917919312/0xadebea50 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.074 edgeCostMax=2.451 edgeCostAvg=1.239 edgeSrcClasses=[3:8] edgeDstClasses=[3:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.588 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.311 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.924 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=2.039 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=2.162 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.361 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>255 cost=0.074 ret=0x44f629 cur=0x100000a00003a dst=0x0]
2026-06-21 03:15:44.120 +58120ms hook GPSSearch 0x44f054 call=13 startHandle=0x100000a2000ea targetHandle=0x100000a70010b graph=0x1a18269c0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1359.05,6.66108,-656.989) outPath=0x798fd4a0 outCount=0x798fc1a0 provider=0x798fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=15 ret_rva=0x44d117
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=9 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2946422576/0xaf9ed730 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.410 edgeCostMax=3.000 edgeCostAvg=1.172 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=3.000 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=1.017 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.660 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=0.568 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=1.375 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>255 cost=0.410 ret=0x44f629 cur=0x100000a000074 dst=0x0]
2026-06-21 03:15:44.121 +58121ms hook GPSSearch result call=11 value=0x40000000 hasOutCount=1 outCount=18 filterCalls=28 filterPass=28 filterFail=0 filterBase=28 filterFiltered=0 filterPassClasses=[3:28] filterFailClasses=[none] filterPassMaskBits=[0:28,1:28] filterFailMaskBits=[none]
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer 0x44cc7c call=18 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1366.46,-727.82,9.03019,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1119377664/0x42b85900 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=10 value=0x42ae6120 out_u0c=4/0x4 out_u1c=2/0x2 out_u20=2952744576/0xafff4e80 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.162 edgeCostMax=4.447 edgeCostAvg=1.302 edgeSrcClasses=[5:9] edgeDstClasses=[5:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:5>5 cost=0.401 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.412 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.506 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.597 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.162 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f;5:5>5 cost=0.285 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;6:5>5 cost=3.438 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;7:5>255 cost=0.470 ret=0x44f629 cur=0x100000ab00154 dst=0x0]
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=6 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.007 edgeCostMax=4.027 edgeCostAvg=1.139 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.112 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.390 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.007 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.009 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>255 cost=4.027 ret=0x44f629 cur=0x100000a000061 dst=0x0]
2026-06-21 03:15:44.122 +58122ms hook GPSSearch result call=12 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=19 filterPass=19 filterFail=0 filterBase=0 filterFiltered=19 filterPassClasses=[3:19] filterFailClasses=[none] filterPassMaskBits=[0:19,1:19] filterFailMaskBits=[none]
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer result call=13 value=0x42ae6120 out_u0c=4/0x4 out_u1c=1/0x1 out_u20=2925681376/0xae625ae0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.838 edgeCostMax=2.371 edgeCostAvg=1.462 edgeSrcClasses=[3:4,15:1] edgeDstClasses=[3:3,15:1,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=2.371 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=1.338 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.199 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00085;3:3>15 cost=0.838 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00061;4:15>255 cost=1.566 ret=0x44f629 cur=0x100000ab00061 dst=0x0]
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=20 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1384.54,-727.541,8.99908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1142056704/0x44126700 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
2026-06-21 03:15:44.122 +58122ms hook GPSSearch 0x44f054 call=14 startHandle=0x100000ab00166 targetHandle=0x100000ac0000b graph=0x1a18268e0 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1316.99,8.5,-675.387) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=17 ret_rva=0x44d117
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=19 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1316.45,-707.932,7.52451,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1116620288/0x428e4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=24 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1289.3,-708.059,7.62778,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1151461376/0x44a1e800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer 0x44cc7c call=21 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1378.03,-727.641,9.01028,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1137443328/0x43cc0200 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=11 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=982888138/0x3a95aeca out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.253 edgeCostMax=1.966 edgeCostAvg=1.124 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.643 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=0.525 ret=0x44f457 cur=0x100000aa0000d dst=0x100000aa0000c;3:3>3 cost=0.253 ret=0x44f457 cur=0x100000aa0000c dst=0x100000a900002;4:3>3 cost=1.709 ret=0x44f457 cur=0x100000a900002 dst=0x100000a90000f;5:3>3 cost=1.412 ret=0x44f457 cur=0x100000a900002 dst=0x100000a900001;6:3>255 cost=0.363 ret=0x44f629 cur=0x100000a900001 dst=0x0]
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=14 value=0x42ae6120 out_u0c=15/0xf out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=29 edgeCostMin=0.033 edgeCostMax=9.470 edgeCostAvg=1.157 edgeSrcClasses=[3:29] edgeDstClasses=[3:28,invalid:1] edgeRetRvas=[0x44f457:28,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.494 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.035 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.971 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.638 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;5:3>3 cost=1.557 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;6:3>3 cost=1.107 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;7:3>3 cost=1.233 ret=0x44f457 cur=0x1000009b000fd dst=0x1000009b000fc]
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=16 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2910684448/0xad7d8520 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=0.078 edgeCostMax=9.186 edgeCostAvg=2.975 edgeSrcClasses=[3:20] edgeDstClasses=[3:19,invalid:1] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:3>3 cost=1.717 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009b00077;1:3>3 cost=4.507 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009a003a3;2:3>3 cost=4.069 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009a003a2;3:3>3 cost=0.078 ret=0x44f457 cur=0x1000009a003a2 dst=0x1000009a003a1;4:3>3 cost=8.584 ret=0x44f457 cur=0x1000009a003a2 dst=0x1000009a00375;5:3>3 cost=3.862 ret=0x44f457 cur=0x1000009a003a1 dst=0x1000009a003a0;6:3>3 cost=8.795 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b;7:3>3 cost=0.210 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b00078]
2026-06-21 03:15:44.123 +58123ms hook GPSSearch result call=14 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=12 filterPass=12 filterFail=0 filterBase=0 filterFiltered=12 filterPassClasses=[3:11,5:1] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
2026-06-21 03:15:44.124 +58124ms hook GPSRouteProducer 0x44cc7c call=22 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1385.37,-727.53,9.00245,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1142654464/0x441b8600 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
2026-06-21 03:15:44.124 +58124ms hook GPSSearch 0x44f054 call=16 startHandle=0x100000a000073 targetHandle=0x100000a00004e graph=0x1a1826b10 startPoint=(-1378.5,9.1,-725) targetPoint=(-1384.54,9.1,-727.541) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=20 ret_rva=0x44d117
2026-06-21 03:15:44.125 +58125ms hook GPSSearch 0x44f054 call=15 startHandle=0x100000a5000ca targetHandle=0x100000a00006c graph=0x1a1826870 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1366.46,9.1,-727.82) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=18 ret_rva=0x44d117
2026-06-21 03:15:44.125 +58125ms hook GPSRouteProducer 0x44cc7c call=23 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.497,7.535,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1138495488/0x43dc1000 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
2026-06-21 03:15:44.125 +58125ms hook GPSRouteProducer result call=17 value=0x42ae6120 out_u0c=8/0x8 out_u1c=1/0x1 out_u20=2919653936/0xae066230 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.023 edgeCostMax=6.829 edgeCostAvg=2.366 edgeSrcClasses=[3:13] edgeDstClasses=[3:11,5:1,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.128 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=1.247 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=3.012 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=5.373 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=3.861 ret=0x44f457 cur=0x100000ac00006 dst=0x100000ac00008]
2026-06-21 03:15:44.125 +58125ms hook GPSSearch result call=13 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:44.126 +58126ms hook GPSRouteProducer 0x44cc7c call=25 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.49,-738.197,11.8735,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1131759872/0x43754900 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=19 startHandle=0x100000a00005a targetHandle=0x100000a000075 graph=0x1a1826950 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1378.03,9.1,-727.641) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=21 ret_rva=0x44d117
2026-06-21 03:15:44.126 +58126ms hook GPSSearch result call=16 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=17 startHandle=0x100000ab00057 targetHandle=0x100000ab0003a graph=0x1a1826a30 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1316.45,7.9,-707.932) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=19 ret_rva=0x44d117
2026-06-21 03:15:44.126 +58126ms hook GPSRouteProducer result call=15 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2965123664/0xb0bc3250 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.002 edgeCostMax=2.777 edgeCostAvg=1.171 edgeSrcClasses=[3:8,15:4] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.268 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.469 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.139 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.571 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=1.812 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.808 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.004 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=18 startHandle=0x100000ab00087 targetHandle=0x100000c90002c graph=0x1a1826790 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1289.3,7.99446,-708.059) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=24 ret_rva=0x44d117
2026-06-21 03:15:44.127 +58127ms hook GPSRouteProducer 0x44cc7c call=27 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1318.26,-692.367,8.22228,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1124857344/0x430bf600 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
2026-06-21 03:15:44.127 +58127ms hook GPSSearch 0x44f054 call=21 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a1826aa0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.497) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=23 ret_rva=0x44d117
2026-06-21 03:15:44.127 +58127ms hook GPSSearch result call=15 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:44.127 +58127ms hook GPSSearch 0x44f054 call=22 startHandle=0x100000aa0000e targetHandle=0x100000aa00034 graph=0x1a18269c0 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.49,11.8,-738.197) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=25 ret_rva=0x44d117
2026-06-21 03:15:44.127 +58127ms hook GPSSearch result call=17 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=14 filterPass=14 filterFail=0 filterBase=0 filterFiltered=14 filterPassClasses=[5:11,15:3] filterFailClasses=[none] filterPassMaskBits=[0:14,1:14] filterFailMaskBits=[none]
2026-06-21 03:15:44.128 +58128ms hook GPSSearch result call=19 value=0x40000000 hasOutCount=1 outCount=13 filterCalls=18 filterPass=18 filterFail=0 filterBase=0 filterFiltered=18 filterPassClasses=[3:18] filterFailClasses=[none] filterPassMaskBits=[0:18,1:18] filterFailMaskBits=[none]
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer 0x44cc7c call=28 graph=0x591db1080 query=0x793be330 outResult=0x793be490 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1286.16,-707.27,7.63842,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer 0x44cc7c call=26 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.01,-748.694,11.75,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1084199936/0x409f9400 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer result call=20 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2918751904/0xadf89ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.048 edgeCostMax=3.220 edgeCostAvg=1.193 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.111 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=2.462 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.048 ret=0x44f457 cur=0x100000a00006e dst=0x100000a00006d;3:3>3 cost=3.220 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;4:3>3 cost=0.463 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;5:3>3 cost=1.720 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;6:3>3 cost=1.890 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;7:3>3 cost=0.298 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e]
2026-06-21 03:15:44.128 +58128ms hook GPSSearch 0x44f054 call=20 startHandle=0x100000a00006d targetHandle=0x100000a00004e graph=0x1a18268e0 startPoint=(-1379.83,9.1,-725) targetPoint=(-1385.37,9.1,-727.53) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=22 ret_rva=0x44d117
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer 0x44cc7c call=29 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1358.76,-657.184,6.88443,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1063270656/0x3f603900 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer result call=19 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2908404688/0xad5abbd0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.229 edgeCostMax=2.724 edgeCostAvg=1.622 edgeSrcClasses=[5:15] edgeDstClasses=[5:11,15:3,invalid:1] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:5>5 cost=1.368 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.757 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.376 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.890 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.229 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.410 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.819 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=21 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=22 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer result call=21 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2937431536/0xaf15a5f0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.013 edgeCostMax=5.308 edgeCostAvg=1.475 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=0.555 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.328 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.455 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.016 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.793 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=0.572 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=5.308 ret=0x44f457 cur=0x100000a000062 dst=0x100000a00005e]
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=18 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=24 filterPass=24 filterFail=0 filterBase=0 filterFiltered=24 filterPassClasses=[3:8,4:2,5:6,15:8] filterFailClasses=[none] filterPassMaskBits=[0:24,1:24] filterFailMaskBits=[none]
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer result call=23 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2952673984/0xaffe3ac0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.727 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.265 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
2026-06-21 03:15:44.130 +58130ms hook GPSSearch 0x44f054 call=24 startHandle=0x100000c900081 targetHandle=0x100000c90002f graph=0x1a1826950 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1286.16,8.04782,-707.27) outPath=0x793bd4a0 outCount=0x793bc1a0 provider=0x793bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=28 ret_rva=0x44d117
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer result call=18 value=0x42ae6120 out_u0c=7/0x7 out_u1c=5/0x5 out_u20=2251127744/0x862d7bc0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.190 edgeCostMax=4.452 edgeCostAvg=1.651 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.190 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=1.011 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;4:3>3 cost=1.957 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f;5:3>3 cost=0.825 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002e;6:3>3 cost=4.452 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002b;7:3>3 cost=1.600 ret=0x44f457 cur=0x100000a00002e dst=0x100000a00002c]
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer 0x44cc7c call=31 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1315.62,-708.194,7.5384,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
2026-06-21 03:15:44.130 +58130ms hook GPSSearch result call=20 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.130 +58130ms hook GPSSearch 0x44f054 call=26 startHandle=0x100000a2000ea targetHandle=0x100000a70010b graph=0x1a1826870 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1358.76,6.81809,-657.184) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=29 ret_rva=0x44d117
2026-06-21 03:15:44.131 +58131ms hook GPSSearch 0x44f054 call=23 startHandle=0x100000ab00166 targetHandle=0x100000ab00133 graph=0x1a1826b10 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1318.26,8.5,-692.367) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=27 ret_rva=0x44d117
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer result call=24 value=0x42ae6120 out_u0c=15/0xf out_u1c=2/0x2 out_u20=2947761968/0xafb34730 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=25 edgeCostMin=0.057 edgeCostMax=3.754 edgeCostAvg=1.240 edgeSrcClasses=[3:10,5:9,15:6] edgeDstClasses=[3:8,4:2,5:6,15:8,invalid:1] edgeRetRvas=[0x44f457:24,0x44f629:1] edgeSamples=[0:3>3 cost=1.944 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=1.338 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.253 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00085;3:3>15 cost=1.631 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00061;4:3>3 cost=0.587 ret=0x44f457 cur=0x100000ab00085 dst=0x100000c90007a;5:3>3 cost=1.893 ret=0x44f457 cur=0x100000ab00085 dst=0x100000ab00084;6:3>3 cost=0.161 ret=0x44f457 cur=0x100000c90007a dst=0x100000c90007b;7:3>3 cost=0.101 ret=0x44f457 cur=0x100000c90007b dst=0x100000c90007c]
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=33 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.88,-692.499,7.58709,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160828928/0x4530d800 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=32 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1366.04,-727.827,9.03092,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1135103232/0x43a84d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=34 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1354.18,-727.913,8.74462,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1143151616/0x44231c00 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
2026-06-21 03:15:44.132 +58132ms hook GPSSearch 0x44f054 call=27 startHandle=0x100000ab00057 targetHandle=0x100000ab0003f graph=0x1a1826790 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1315.62,7.9,-708.194) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=31 ret_rva=0x44d117
2026-06-21 03:15:44.132 +58132ms hook GPSSearch result call=24 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=16 filterPass=16 filterFail=0 filterBase=16 filterFiltered=0 filterPassClasses=[3:3,4:1,5:8,15:4] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer result call=22 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2945537648/0xaf915670 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.289 edgeCostMax=2.386 edgeCostAvg=1.411 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.905 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;3:3>3 cost=1.406 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;4:3>3 cost=2.241 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;5:3>3 cost=0.344 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e;6:3>255 cost=1.306 ret=0x44f629 cur=0x100000a00004e dst=0x0]
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer result call=25 value=0x42ae6120 out_u0c=9/0x9 out_u1c=8/0x8 out_u20=3116989504/0xb9c97c40 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.167 edgeCostMax=3.731 edgeCostAvg=1.149 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=2.149 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=0.515 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=3.731 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=0.210 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.386 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.935 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.423 ret=0x44f457 cur=0x100000aa0000b dst=0x100000aa00009;7:3>3 cost=0.370 ret=0x44f457 cur=0x100000aa00009 dst=0x100000aa00032]
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer 0x44cc7c call=30 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1372.54,-727.726,9.01972,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1126105600/0x431f0200 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
2026-06-21 03:15:44.133 +58133ms hook GPSRouteProducer result call=28 value=0x42ae6120 out_u0c=10/0xa out_u1c=4/0x4 out_u20=2934976272/0xaef02f10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.009 edgeCostMax=4.905 edgeCostAvg=1.208 edgeSrcClasses=[3:4,5:9,15:4] edgeDstClasses=[3:3,4:1,5:8,15:4,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:3>3 cost=0.812 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.823 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=1.001 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:5>5 cost=0.197 ret=0x44f457 cur=0x100000c900056 dst=0x100000c900055;5:5>5 cost=0.582 ret=0x44f457 cur=0x100000c900056 dst=0x100000c90005b;6:5>15 cost=0.030 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900048;7:5>5 cost=1.637 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900054]
2026-06-21 03:15:44.133 +58133ms hook GPSSearch result call=26 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:44.133 +58133ms hook GPSSearch result call=27 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=16 filterPass=16 filterFail=0 filterBase=0 filterFiltered=16 filterPassClasses=[5:13,15:3] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
2026-06-21 03:15:44.133 +58133ms hook GPSSearch 0x44f054 call=30 startHandle=0x100000a5000ca targetHandle=0x100000a5000ee graph=0x1a1826aa0 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1354.18,8.36203,-727.913) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=34 ret_rva=0x44d117
2026-06-21 03:15:44.134 +58134ms hook GPSSearch 0x44f054 call=28 startHandle=0x100000ab00135 targetHandle=0x100000ab0013b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.88,7.9,-692.499) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=33 ret_rva=0x44d117
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=37 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.9,-748.189,11.8343,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117369088/0x4299b300 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=36 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1373.88,-727.706,9.01742,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1123354112/0x42f50600 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=35 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1309.3,-707.895,7.67538,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1166424064/0x45863800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
2026-06-21 03:15:44.134 +58134ms hook GPSSearch 0x44f054 call=29 startHandle=0x100000a00005a targetHandle=0x100000a00006c graph=0x1a18269c0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1366.04,9.1,-727.827) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=32 ret_rva=0x44d117
2026-06-21 03:15:44.134 +58134ms hook GPSSearch result call=23 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=37 filterPass=37 filterFail=0 filterBase=0 filterFiltered=37 filterPassClasses=[3:26,5:11] filterFailClasses=[none] filterPassMaskBits=[0:37,1:37] filterFailMaskBits=[none]
2026-06-21 03:15:44.135 +58135ms hook GPSSearch 0x44f054 call=25 startHandle=0x1000009b00100 targetHandle=0x1000009a0037b graph=0x1a1826a30 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.01,11.8,-748.694) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=26 ret_rva=0x44d117
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer result call=31 value=0x42ae6120 out_u0c=10/0xa out_u1c=7/0x7 out_u20=2546494608/0x97c86c90 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.235 edgeCostMax=2.833 edgeCostAvg=1.622 edgeSrcClasses=[5:17] edgeDstClasses=[5:13,15:3,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:5>5 cost=1.385 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.751 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.409 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.875 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.235 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.464 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.786 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
2026-06-21 03:15:44.135 +58135ms hook GPSSearch result call=30 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=22 filterPass=22 filterFail=0 filterBase=0 filterFiltered=22 filterPassClasses=[3:15,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer result call=29 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2965123664/0xb0bc3250 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.053 edgeCostMax=2.621 edgeCostAvg=1.138 edgeSrcClasses=[3:8,15:4] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.287 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.503 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=1.976 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.621 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=2.033 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.689 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.089 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer 0x44cc7c call=38 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.16,-708.142,7.66219,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157648640/0x45005100 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=32 startHandle=0x100000aa0000e targetHandle=0x100000a900033 graph=0x1a1826790 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.9,11.8,-748.189) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=37 ret_rva=0x44d117
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=31 startHandle=0x100000a000073 targetHandle=0x100000a000062 graph=0x1a1826950 startPoint=(-1378.5,9.1,-725) targetPoint=(-1372.54,9.1,-727.726) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=30 ret_rva=0x44d117
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=33 startHandle=0x100000ab00087 targetHandle=0x100000ab00031 graph=0x1a1826870 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1309.3,7.78616,-707.895) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=35 ret_rva=0x44d117
2026-06-21 03:15:44.136 +58136ms hook GPSRouteProducer result call=27 value=0x42ae6120 out_u0c=9/0x9 out_u1c=3/0x3 out_u20=2920854080/0xae18b240 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=38 edgeCostMin=0.075 edgeCostMax=9.283 edgeCostAvg=1.808 edgeSrcClasses=[3:29,5:9] edgeDstClasses=[3:26,5:11,invalid:1] edgeRetRvas=[0x44f457:37,0x44f629:1] edgeSamples=[0:3>3 cost=0.315 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.407 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.129 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab0015c;4:3>3 cost=0.939 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab00160;5:3>3 cost=1.582 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;6:3>3 cost=0.338 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;7:3>3 cost=2.270 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006]
2026-06-21 03:15:44.136 +58136ms hook GPSSearch result call=28 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.137 +58137ms hook GPSSearch result call=29 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=0 filterFiltered=9 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
2026-06-21 03:15:44.137 +58137ms hook GPSRouteProducer result call=34 value=0x42ae6120 out_u0c=12/0xc out_u1c=10/0xa out_u20=2546469904/0x97c80c10 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.013 edgeCostMax=4.148 edgeCostAvg=1.092 edgeSrcClasses=[3:16,15:7] edgeDstClasses=[3:15,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=3.684 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=3.242 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c3;4:3>3 cost=0.601 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c6;5:3>3 cost=0.152 ret=0x44f457 cur=0x100000a5000c6 dst=0x100000a5000c1;6:3>3 cost=0.241 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;7:3>3 cost=3.314 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f]
2026-06-21 03:15:44.137 +58137ms hook GPSRouteProducer result call=33 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928864032/0xae92eb20 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.156 edgeCostMax=2.881 edgeCostAvg=1.034 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.156 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.838 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.594 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.554 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.181 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;5:5>255 cost=2.881 ret=0x44f629 cur=0x100000ab0013b dst=0x0]
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=33 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=22 filterPass=22 filterFail=0 filterBase=0 filterFiltered=22 filterPassClasses=[3:9,5:6,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
2026-06-21 03:15:44.138 +58138ms hook GPSSearch 0x44f054 call=34 startHandle=0x100000a00006d targetHandle=0x100000a00003a graph=0x1a1826b10 startPoint=(-1379.83,9.1,-725) targetPoint=(-1373.88,9.1,-727.706) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=36 ret_rva=0x44d117
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=32 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=34 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=0 filterFiltered=9 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
2026-06-21 03:15:44.138 +58138ms hook GPSRouteProducer 0x44cc7c call=42 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1352.09,-720.273,7.735,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1067971072/0x3fa7f200 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
2026-06-21 03:15:44.139 +58139ms hook GPSRouteProducer result call=35 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2947823504/0xafb43790 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.001 edgeCostMax=5.157 edgeCostAvg=1.543 edgeSrcClasses=[3:12,5:7,15:4] edgeDstClasses=[3:9,5:6,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=0.116 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=2.421 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:3>3 cost=0.569 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab0008a;5:3>3 cost=0.620 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab00091;6:3>15 cost=1.972 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00065;7:3>3 cost=1.488 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00092]
2026-06-21 03:15:44.139 +58139ms hook GPSRouteProducer 0x44cc7c call=41 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1317.57,-692.49,8.22228,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1146629632/0x44582e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
2026-06-21 03:15:44.140 +58140ms hook GPSSearch result call=25 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=63 filterPass=63 filterFail=0 filterBase=0 filterFiltered=63 filterPassClasses=[3:63] filterFailClasses=[none] filterPassMaskBits=[0:63,1:63] filterFailMaskBits=[none]
2026-06-21 03:15:44.140 +58140ms hook GPSSearch 0x44f054 call=37 startHandle=0x100000ab00166 targetHandle=0x100000ab00133 graph=0x1a1826790 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1317.57,8.5,-692.49) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=41 ret_rva=0x44d117
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=32 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2949023280/0xafc68630 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.013 edgeCostMax=4.194 edgeCostAvg=1.390 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.390 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.193 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.166 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.017 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.194 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=2.899 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=2.162 ret=0x44f457 cur=0x100000a00006b dst=0x100000a00006a]
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer 0x44cc7c call=44 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1289.4,-720.458,7.62758,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1151382528/0x44a0b400 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
2026-06-21 03:15:44.141 +58141ms hook GPSSearch 0x44f054 call=35 startHandle=0x100000c900081 targetHandle=0x100000c900034 graph=0x1a1826aa0 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.16,7.97771,-708.142) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=38 ret_rva=0x44d117
2026-06-21 03:15:44.141 +58141ms hook GPSSearch result call=31 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=12 filterPass=12 filterFail=0 filterBase=0 filterFiltered=12 filterPassClasses=[3:12] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=37 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.266 edgeCostMax=2.352 edgeCostAvg=1.233 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=1.644 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=0.320 ret=0x44f457 cur=0x100000aa0000d dst=0x100000aa0000c;3:3>3 cost=0.266 ret=0x44f457 cur=0x100000aa0000c dst=0x100000a900002;4:3>3 cost=1.378 ret=0x44f457 cur=0x100000a900002 dst=0x100000a90000f;5:3>3 cost=1.672 ret=0x44f457 cur=0x100000a900002 dst=0x100000a900001;6:3>3 cost=2.352 ret=0x44f457 cur=0x100000a900001 dst=0x100000a900031;7:3>3 cost=1.058 ret=0x44f457 cur=0x100000a900001 dst=0x100000a900033]
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=36 value=0x42ae6120 out_u0c=8/0x8 out_u1c=3/0x3 out_u20=2945537648/0xaf915670 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.341 edgeCostMax=3.000 edgeCostAvg=1.273 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=3.000 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=1.028 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.341 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=0.557 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=0.493 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=1.178 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=1.573 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=2.013 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034]
2026-06-21 03:15:44.142 +58142ms hook GPSRouteProducer 0x44cc7c call=43 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1317.22,-682.448,8.2223,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117320704/0x4298f600 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
2026-06-21 03:15:44.142 +58142ms hook GPSSearch result call=35 value=0x40000000 hasOutCount=1 outCount=15 filterCalls=25 filterPass=25 filterFail=0 filterBase=0 filterFiltered=25 filterPassClasses=[3:9,5:11,15:5] filterFailClasses=[none] filterPassMaskBits=[0:25,1:25] filterFailMaskBits=[none]
2026-06-21 03:15:44.143 +58143ms hook GPSSearch result call=37 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=35 filterPass=35 filterFail=0 filterBase=0 filterFiltered=35 filterPassClasses=[3:26,5:9] filterFailClasses=[none] filterPassMaskBits=[0:35,1:35] filterFailMaskBits=[none]
2026-06-21 03:15:44.143 +58143ms hook GPSRouteProducer 0x44cc7c call=47 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1375.52,-718.635,7.74419,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1083788288/0x40994c00 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
2026-06-21 03:15:44.143 +58143ms hook GPSRouteProducer result call=30 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2942586880/0xaf645000 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.010 edgeCostMax=3.411 edgeCostAvg=1.141 edgeSrcClasses=[3:13] edgeDstClasses=[3:12,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.522 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.135 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.863 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=1.869 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=1.559 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.663 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>3 cost=1.372 ret=0x44f457 cur=0x100000a00003a dst=0x100000a000039]
2026-06-21 03:15:44.144 +58144ms hook GPSRouteProducer result call=38 value=0x42ae6120 out_u0c=16/0x10 out_u1c=3/0x3 out_u20=2934307264/0xaee5f9c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.110 edgeCostMax=2.922 edgeCostAvg=0.980 edgeSrcClasses=[3:10,5:10,15:6] edgeDstClasses=[3:9,5:11,15:5,invalid:1] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=0.498 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=2.176 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.377 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:3>3 cost=0.985 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;5:3>3 cost=1.684 ret=0x44f457 cur=0x100000c90008b dst=0x100000c90008a;6:3>3 cost=1.722 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;7:3>3 cost=0.544 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900088]
2026-06-21 03:15:44.144 +58144ms hook GPSRouteProducer 0x44cc7c call=45 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1363.68,-718.749,7.7246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1086247168/0x40bed100 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=38 startHandle=0x100000ab00087 targetHandle=0x100000c8000b3 graph=0x1a1826a30 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1289.4,8.1,-720.458) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=44 ret_rva=0x44d117
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=39 startHandle=0x100000ab00135 targetHandle=0x100000ab0016b graph=0x1a1826950 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1317.22,8.5,-682.448) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=43 ret_rva=0x44d117
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=36 startHandle=0x100000a5000ca targetHandle=0x100000a500184 graph=0x1a1826b10 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1352.09,7.9,-720.273) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=42 ret_rva=0x44d117
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=49 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1299.16,-707.978,7.59428,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1163727616/0x455d1300 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=40 graph=0x591db1080 query=0x79d7e330 outResult=0x79d7e490 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1404.9,-742.578,11.7625,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=48 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1371.03,-718.822,7.73581,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1091473664/0x410e9100 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=46 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1327.42,-733.114,7.83008,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1154922752/0x44d6b900 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
2026-06-21 03:15:44.145 +58145ms hook GPSSearch 0x44f054 call=40 startHandle=0x100000a00006d targetHandle=0x100000a0000ce graph=0x1a1826790 startPoint=(-1379.83,9.1,-725) targetPoint=(-1375.52,7.76062,-718.635) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=47 ret_rva=0x44d117
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer result call=41 value=0x42ae6120 out_u0c=9/0x9 out_u1c=3/0x3 out_u20=2920854080/0xae18b240 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=36 edgeCostMin=0.101 edgeCostMax=9.476 edgeCostAvg=1.754 edgeSrcClasses=[3:29,5:7] edgeDstClasses=[3:26,5:9,invalid:1] edgeRetRvas=[0x44f457:35,0x44f629:1] edgeSamples=[0:3>3 cost=0.344 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.514 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab0015c;4:3>3 cost=0.975 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab00160;5:3>3 cost=1.692 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;6:3>3 cost=0.399 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;7:3>3 cost=0.600 ret=0x44f457 cur=0x100000ab00160 dst=0x100000ab0015e]
2026-06-21 03:15:44.146 +58146ms hook GPSRouteProducer 0x44cc7c call=39 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1362.05,-655.586,5.84315,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1065826816/0x3f873a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
2026-06-21 03:15:44.146 +58146ms hook GPSRouteProducer result call=26 value=0x42ae6120 out_u0c=23/0x17 out_u1c=3/0x3 out_u20=2939520608/0xaf358660 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=64 edgeCostMin=0.017 edgeCostMax=15.336 edgeCostAvg=1.491 edgeSrcClasses=[3:64] edgeDstClasses=[3:63,invalid:1] edgeRetRvas=[0x44f457:63,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.404 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.017 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.484 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.087 ret=0x44f457 cur=0x1000009b000d6 dst=0x1000009b000d7;5:3>3 cost=0.247 ret=0x44f457 cur=0x1000009b000d7 dst=0x1000009b000dc;6:3>3 cost=1.645 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000d3;7:3>3 cost=0.345 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000e0]
2026-06-21 03:15:44.146 +58146ms hook GPSSearch 0x44f054 call=41 startHandle=0x100000a00005a targetHandle=0x100000a0000c9 graph=0x1a1826aa0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1363.68,7.72913,-718.749) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=45 ret_rva=0x44d117
2026-06-21 03:15:44.147 +58147ms hook GPSEdgeCost 0x44f838 call=622 classCall=0 sourceClass=4 neighborClass=4 value=1.81103 multiplier=1 baseCost=1.81103 previousHandle=0x100000c900025 currentHandle=0x100000c900002 neighborHandle=0x100000ab0000a provider=0x79afc320 currentState=(-1294.35,7.8,-711.3) neighborState=(-1296,7.8,-712.05) previousSegment=0x15a09851a8 previousPoint=0x5b05947d4 previousPoint_adj=541 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a09851a8 currentPoint=0x5b0594518 currentPoint_adj=540 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=4 currentPoint_raw13=0x4 neighborSegment=0x15a0984578 neighborPoint=0x5b1276f28 neighborPoint_adj=847 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=4 neighborPoint_raw13=0x4 ret_rva=0x44f457
2026-06-21 03:15:44.148 +58148ms hook GPSEdgeCost 0x44f838 call=618 classCall=0 sourceClass=1 neighborClass=1 value=0.843905 multiplier=1 baseCost=0.843905 previousHandle=0x100000a500158 currentHandle=0x100000a500153 neighborHandle=0x100000a500152 provider=0x31a2d0 currentState=(-1354.02,8.3875,-726.419) neighborState=(-1354.1,8.2,-725.6) previousSegment=0x15a0984308 previousPoint=0x5b10f6a14 previousPoint_adj=823 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984308 currentPoint=0x5b10f69b0 currentPoint_adj=811 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=1 currentPoint_raw13=0x1 neighborSegment=0x15a0984308 neighborPoint=0x5b10f699c neighborPoint_adj=808 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=1 neighborPoint_raw13=0x1 ret_rva=0x44f457
2026-06-21 03:15:44.151 +58151ms hook GPSSearch result call=39 value=0x40000000 hasOutCount=1 outCount=17 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:7,5:33] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
2026-06-21 03:15:44.152 +58152ms hook GPSSearch result call=38 value=0x40000000 hasOutCount=1 outCount=18 filterCalls=36 filterPass=36 filterFail=0 filterBase=0 filterFiltered=36 filterPassClasses=[3:4,4:16,5:10,15:6] filterFailClasses=[none] filterPassMaskBits=[0:36,1:36] filterFailMaskBits=[none]
2026-06-21 03:15:44.153 +58153ms hook GPSRouteProducer 0x44cc7c call=51 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1412.26,-736.518,11.6958,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1088238848/0x40dd3500 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
2026-06-21 03:15:44.155 +58155ms hook GPSRouteProducer 0x44cc7c call=50 graph=0x591db1080 query=0x795bdfc0 outResult=0x795be120 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1316.99,-675.387,8.22249,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.173 +58173ms hook GPSSearch result call=41 value=0x40000000 hasOutCount=1 outCount=85 filterCalls=297 filterPass=294 filterFail=3 filterBase=0 filterFiltered=297 filterPassClasses=[1:61,3:132,4:7,5:66,15:28] filterFailClasses=[12:3] filterPassMaskBits=[0:294,1:294] filterFailMaskBits=[none]
2026-06-21 03:15:44.174 +58174ms hook GPSRouteProducer result call=44 value=0x42ae6120 out_u0c=19/0x13 out_u1c=13/0xd out_u20=3369592304/0xc8d7e5f0 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=37 edgeCostMin=0.039 edgeCostMax=3.927 edgeCostAvg=1.504 edgeSrcClasses=[3:4,4:14,5:13,15:6] edgeDstClasses=[3:4,4:16,5:10,15:6,invalid:1] edgeRetRvas=[0x44f457:36,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=2.655 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.970 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=0.168 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:15>15 cost=0.039 ret=0x44f457 cur=0x100000ab00063 dst=0x100000ab00062;5:15>15 cost=1.231 ret=0x44f457 cur=0x100000ab00063 dst=0x100000ab00064;6:15>15 cost=1.290 ret=0x44f457 cur=0x100000ab00062 dst=0x100000ab00061;7:15>5 cost=1.933 ret=0x44f457 cur=0x100000ab00062 dst=0x100000ab00028]
2026-06-21 03:15:44.178 +58178ms hook GPSSearch result call=36 value=0x40000000 hasOutCount=1 outCount=99 filterCalls=314 filterPass=311 filterFail=3 filterBase=0 filterFiltered=314 filterPassClasses=[1:61,3:131,4:8,5:83,15:28] filterFailClasses=[12:3] filterPassMaskBits=[0:311,1:311] filterFailMaskBits=[none]
2026-06-21 03:15:44.178 +58178ms hook GPSRouteProducer 0x44cc7c call=52 graph=0x591db1080 query=0x79afdfc0 outResult=0x79afe120 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1309.3,-707.895,7.67538,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.178 +58178ms hook GPSSearch 0x44f054 call=43 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a18269c0 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1404.9,11.8,-742.578) outPath=0x79d7d4a0 outCount=0x79d7c1a0 provider=0x79d7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=40 ret_rva=0x44d117
2026-06-21 03:15:44.178 +58178ms hook GPSRouteProducer result call=45 value=0x42ae6120 out_u0c=71/0x47 out_u1c=50/0x32 out_u20=2546540928/0x97c92180 out_u24=5/0x5 out_u2c=50/0x32 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=295 edgeCostMin=0.001 edgeCostMax=6.376 edgeCostAvg=1.012 edgeSrcClasses=[1:53,3:133,4:3,5:70,15:36] edgeDstClasses=[1:61,3:132,4:7,5:66,15:28,invalid:1] edgeRetRvas=[0x44f457:294,0x44f629:1] edgeSamples=[0:3>3 cost=0.478 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.025 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=3.092 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.001 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.001 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=5.318 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=0.080 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=5.512 ret=0x44f457 cur=0x100000a000062 dst=0x100000a00005e]
2026-06-21 03:15:44.180 +58180ms hook GPSSearch result call=40 value=0x40000000 hasOutCount=1 outCount=53 filterCalls=171 filterPass=169 filterFail=2 filterBase=0 filterFiltered=171 filterPassClasses=[3:113,4:4,5:42,15:10] filterFailClasses=[12:2] filterPassMaskBits=[0:169,1:169] filterFailMaskBits=[none]
2026-06-21 03:15:44.180 +58180ms hook GPSSearch result call=43 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.180 +58180ms hook GPSSearch 0x44f054 call=44 startHandle=0x100000a000073 targetHandle=0x100000a0000be graph=0x1a18268e0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1371.03,7.79895,-718.822) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=48 ret_rva=0x44d117
2026-06-21 03:15:44.180 +58180ms hook GPSSearch 0x44f054 call=42 startHandle=0x100000c900081 targetHandle=0x100000ab0002a graph=0x1a1826870 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1299.16,7.79694,-707.978) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=49 ret_rva=0x44d117
2026-06-21 03:15:44.180 +58180ms hook GPSRouteProducer result call=47 value=0x42ae6120 out_u0c=44/0x2c out_u1c=29/0x1d out_u20=2546537344/0x97c91380 out_u24=5/0x5 out_u2c=29/0x1d out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=170 edgeCostMin=0.000 edgeCostMax=5.974 edgeCostAvg=1.178 edgeSrcClasses=[3:112,4:3,5:43,15:12] edgeDstClasses=[3:113,4:4,5:42,15:10,invalid:1] edgeRetRvas=[0x44f457:169,0x44f629:1] edgeSamples=[0:3>3 cost=3.398 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=1.703 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=1.316 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=0.842 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=0.450 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=2.586 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=0.088 ret=0x44f457 cur=0x100000a000072 dst=0x100000a000071]
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer result call=42 value=0x42ae6120 out_u0c=87/0x57 out_u1c=62/0x3e out_u20=2546544992/0x97c93160 out_u24=5/0x5 out_u2c=62/0x3e out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=312 edgeCostMin=0.006 edgeCostMax=6.289 edgeCostAvg=1.091 edgeSrcClasses=[1:53,3:133,4:3,5:87,15:36] edgeDstClasses=[1:61,3:131,4:8,5:83,15:28,invalid:1] edgeRetRvas=[0x44f457:311,0x44f629:1] edgeSamples=[0:3>3 cost=0.440 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.180 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=0.195 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c3;4:3>3 cost=2.839 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c6;5:3>3 cost=0.700 ret=0x44f457 cur=0x100000a5000c3 dst=0x100000a5000c0;6:3>3 cost=0.101 ret=0x44f457 cur=0x100000a5000c0 dst=0x100000a5000be;7:3>3 cost=0.082 ret=0x44f457 cur=0x100000a5000be dst=0x100000a5000bd]
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=45 startHandle=0x100000a2000ea targetHandle=0x100000a20014d graph=0x1a1826950 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1362.05,6.1,-655.586) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=39 ret_rva=0x44d117
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=46 startHandle=0x100000aa0000e targetHandle=0x100000aa0012c graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1327.42,8.02156,-733.114) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=46 ret_rva=0x44d117
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer result call=40 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.158 edgeCostMax=5.023 edgeCostAvg=2.022 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.158 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.412 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.173 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=5.023 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=3.083 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=0.925 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=49 startHandle=0x100000ab00087 targetHandle=0x100000ab00031 graph=0x1a1826790 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1309.3,7.78616,-707.895) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=52 ret_rva=0x44d117
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer 0x44cc7c call=53 graph=0x591db1080 query=0x79bfdfc0 outResult=0x79bfe120 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1366.04,-727.827,9.03092,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.182 +58182ms hook GPSSearch 0x44f054 call=47 startHandle=0x1000009b00100 targetHandle=0x1000009b00076 graph=0x1a1826aa0 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1412.26,11.8,-736.518) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=51 ret_rva=0x44d117
2026-06-21 03:15:44.182 +58182ms hook GPSSearch 0x44f054 call=48 startHandle=0x100000ab00166 targetHandle=0x100000ac0000b graph=0x1a1826b10 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1316.99,8.5,-675.387) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=50 ret_rva=0x44d117
2026-06-21 03:15:44.182 +58182ms hook GPSRouteProducer result call=43 value=0x42ae6120 out_u0c=15/0xf out_u1c=8/0x8 out_u20=2546523296/0x97c8dca0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=12.947 edgeCostAvg=1.926 edgeSrcClasses=[3:8,5:33] edgeDstClasses=[3:7,5:33,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:5>5 cost=0.296 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=2.136 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=0.487 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.083 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;4:5>5 cost=5.048 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;5:5>5 cost=0.991 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;6:5>5 cost=0.307 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;7:5>5 cost=0.353 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f]
2026-06-21 03:15:44.184 +58184ms hook GPSSearch result call=47 value=0x40000000 hasOutCount=1 outCount=20 filterCalls=30 filterPass=30 filterFail=0 filterBase=0 filterFiltered=30 filterPassClasses=[3:30] filterFailClasses=[none] filterPassMaskBits=[0:30,1:30] filterFailMaskBits=[none]
2026-06-21 03:15:44.185 +58185ms hook GPSSearch result call=42 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=29 filterPass=29 filterFail=0 filterBase=0 filterFiltered=29 filterPassClasses=[3:8,4:3,5:10,15:8] filterFailClasses=[none] filterPassMaskBits=[0:29,1:29] filterFailMaskBits=[none]
2026-06-21 03:15:44.186 +58186ms hook GPSRouteProducer result call=51 value=0x42ae6120 out_u0c=17/0x11 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=31 edgeCostMin=0.008 edgeCostMax=4.487 edgeCostAvg=1.104 edgeSrcClasses=[3:31] edgeDstClasses=[3:30,invalid:1] edgeRetRvas=[0x44f457:30,0x44f629:1] edgeSamples=[0:3>3 cost=0.797 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.416 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.021 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.808 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;4:3>3 cost=1.102 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;5:3>3 cost=1.363 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;6:3>3 cost=0.090 ret=0x44f457 cur=0x1000009b000fd dst=0x1000009b000fc;7:3>3 cost=0.125 ret=0x44f457 cur=0x1000009b000fc dst=0x1000009b000fb]
2026-06-21 03:15:44.186 +58186ms hook GPSSearch result call=45 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.186 +58186ms hook GPSRouteProducer 0x44cc7c call=54 graph=0x591db1080 query=0x797fdfc0 outResult=0x797fe120 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1385.37,-727.53,9.00245,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.186 +58186ms hook GPSSearch result call=48 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=12 filterPass=12 filterFail=0 filterBase=12 filterFiltered=0 filterPassClasses=[3:11,5:1] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
2026-06-21 03:15:44.192 +58192ms hook GPSSearch result call=44 value=0x40000000 hasOutCount=1 outCount=59 filterCalls=194 filterPass=191 filterFail=3 filterBase=0 filterFiltered=194 filterPassClasses=[3:128,4:5,5:48,15:10] filterFailClasses=[12:3] filterPassMaskBits=[0:191,1:191] filterFailMaskBits=[none]
2026-06-21 03:15:44.194 +58194ms hook GPSSearch result call=49 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=22 filterPass=22 filterFail=0 filterBase=22 filterFiltered=0 filterPassClasses=[3:9,5:6,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=56 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.38,-742.694,11.76,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108551680/0x42132800 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=55 graph=0x591db1080 query=0x31bf70 outResult=0x31c0d0 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1366.46,-727.82,9.03019,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=57 graph=0x591db1080 query=0x79e7dfc0 outResult=0x79e7e120 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.497,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer result call=48 value=0x42ae6120 out_u0c=50/0x32 out_u1c=32/0x20 out_u20=2546540480/0x97c91fc0 out_u24=5/0x5 out_u2c=32/0x20 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=192 edgeCostMin=0.001 edgeCostMax=6.291 edgeCostAvg=1.193 edgeSrcClasses=[3:127,4:3,5:50,15:12] edgeDstClasses=[3:128,4:5,5:48,15:10,invalid:1] edgeRetRvas=[0x44f457:191,0x44f629:1] edgeSamples=[0:3>3 cost=0.132 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=2.462 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.188 ret=0x44f457 cur=0x100000a00006e dst=0x100000a00006d;3:3>3 cost=3.874 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;4:3>3 cost=1.245 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=1.584 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=1.950 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=0.120 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034]
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=58 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1395.6,-724.792,7.86954,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1078353152/0x40465d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=50 value=0x42ae6120 out_u0c=8/0x8 out_u1c=1/0x1 out_u20=2919653936/0xae066230 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.023 edgeCostMax=6.829 edgeCostAvg=2.366 edgeSrcClasses=[3:13] edgeDstClasses=[3:11,5:1,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.128 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=1.247 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=3.012 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=5.373 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=3.861 ret=0x44f457 cur=0x100000ac00006 dst=0x100000ac00008]
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=49 value=0x42ae6120 out_u0c=14/0xe out_u1c=5/0x5 out_u20=2910684448/0xad7d8520 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=30 edgeCostMin=0.000 edgeCostMax=4.936 edgeCostAvg=1.394 edgeSrcClasses=[3:9,4:2,5:8,15:11] edgeDstClasses=[3:8,4:3,5:10,15:8,invalid:1] edgeRetRvas=[0x44f457:29,0x44f629:1] edgeSamples=[0:3>3 cost=1.205 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.043 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.765 ret=0x44f457 cur=0x100000c900082 dst=0x100000c900054;3:3>3 cost=0.591 ret=0x44f457 cur=0x100000c900082 dst=0x100000c900078;4:3>5 cost=1.466 ret=0x44f457 cur=0x100000c900078 dst=0x100000c900053;5:3>3 cost=0.093 ret=0x44f457 cur=0x100000c900078 dst=0x100000c900079;6:3>3 cost=0.389 ret=0x44f457 cur=0x100000c900079 dst=0x100000c90007e;7:3>4 cost=2.573 ret=0x44f457 cur=0x100000c90007e dst=0x100000c900080]
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=52 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2947823504/0xafb43790 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.001 edgeCostMax=5.157 edgeCostAvg=1.543 edgeSrcClasses=[3:12,5:7,15:4] edgeDstClasses=[3:9,5:6,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=0.116 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=2.421 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:3>3 cost=0.569 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab0008a;5:3>3 cost=0.620 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab00091;6:3>15 cost=1.972 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00065;7:3>3 cost=1.488 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00092]
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=39 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2964919152/0xb0b91370 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.222 edgeCostMax=2.889 edgeCostAvg=1.439 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.305 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.222 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.889 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.278 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>255 cost=1.078 ret=0x44f629 cur=0x100000a20014d dst=0x0]
2026-06-21 03:15:44.203 +58203ms hook GPSSearch result call=46 value=0x40000000 hasOutCount=1 outCount=57 filterCalls=269 filterPass=269 filterFail=0 filterBase=0 filterFiltered=269 filterPassClasses=[3:215,5:23,15:31] filterFailClasses=[none] filterPassMaskBits=[0:269,1:269] filterFailMaskBits=[none]
2026-06-21 03:15:44.203 +58203ms hook GPSRouteProducer 0x44cc7c call=60 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.25,-719.491,7.66205,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157580800/0x44ff4800 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
2026-06-21 03:15:44.203 +58203ms hook GPSRouteProducer 0x44cc7c call=62 graph=0x591db1080 query=0x79afe330 outResult=0x79afe490 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1317.47,-664.358,8.22216,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.203 +58203ms hook GPSSearch 0x44f054 call=50 startHandle=0x100000a00005a targetHandle=0x100000a00006c graph=0x1a18269c0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1366.04,9.1,-727.827) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=53 ret_rva=0x44d117
2026-06-21 03:15:44.203 +58203ms hook GPSSearch 0x44f054 call=51 startHandle=0x100000a00006d targetHandle=0x100000a00004e graph=0x1a1826950 startPoint=(-1379.83,9.1,-725) targetPoint=(-1385.37,9.1,-727.53) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=54 ret_rva=0x44d117
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer 0x44cc7c call=59 graph=0x591db1080 query=0x796bdfc0 outResult=0x796be120 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1372.54,-727.726,9.01972,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer 0x44cc7c call=63 graph=0x591db1080 query=0x795be330 outResult=0x795be490 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1282.04,-707.794,7.65242,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.204 +58204ms hook GPSSearch 0x44f054 call=56 startHandle=0x100000c900081 targetHandle=0x100000c80009b graph=0x1a1826a30 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.25,8.1,-719.491) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=60 ret_rva=0x44d117
2026-06-21 03:15:44.204 +58204ms hook GPSSearch 0x44f054 call=53 startHandle=0x100000a5000ca targetHandle=0x100000a00006c graph=0x1a18268e0 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1366.46,9.1,-727.82) outPath=0x31b0e0 outCount=0x319de0 provider=0x31adf0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=55 ret_rva=0x44d117
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer result call=46 value=0x42ae6120 out_u0c=53/0x35 out_u1c=38/0x26 out_u20=2562709072/0x98bfd650 out_u24=5/0x5 out_u2c=38/0x26 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=270 edgeCostMin=0.008 edgeCostMax=11.254 edgeCostAvg=1.266 edgeSrcClasses=[3:216,5:23,15:31] edgeDstClasses=[3:215,5:23,15:31,invalid:1] edgeRetRvas=[0x44f457:269,0x44f629:1] edgeSamples=[0:3>3 cost=1.637 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=2.171 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=1.167 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.503 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.117 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.148 ret=0x44f457 cur=0x100000aa0000a dst=0x100000aa00008;7:3>3 cost=0.092 ret=0x44f457 cur=0x100000aa00008 dst=0x100000aa00007]
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=54 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a1826b10 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.497) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=57 ret_rva=0x44d117
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=57 startHandle=0x100000ac0007b targetHandle=0x100000ac0004e graph=0x1a1826aa0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1317.47,8.5,-664.358) outPath=0x79afd4a0 outCount=0x79afc1a0 provider=0x79afd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=62 ret_rva=0x44d117
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=52 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826790 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.38,11.8,-742.694) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=56 ret_rva=0x44d117
2026-06-21 03:15:44.205 +58205ms hook GPSSearch result call=50 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=9 filterFiltered=0 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
2026-06-21 03:15:44.205 +58205ms hook GPSSearch result call=51 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.205 +58205ms hook GPSRouteProducer 0x44cc7c call=61 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1352.38,-655.817,7.80187,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=57 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=54 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:44.206 +58206ms hook GPSSearch 0x44f054 call=55 startHandle=0x1000009b00100 targetHandle=0x1000009b001fa graph=0x1a1826870 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1395.6,7.9,-724.792) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=58 ret_rva=0x44d117
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=52 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=53 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:44.207 +58207ms hook GPSRouteProducer result call=53 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2949023280/0xafc68630 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.013 edgeCostMax=4.194 edgeCostAvg=1.390 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.390 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.193 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.166 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.017 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.194 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=2.899 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=2.162 ret=0x44f457 cur=0x100000a00006b dst=0x100000a00006a]
2026-06-21 03:15:44.211 +58211ms hook GPSRouteProducer result call=56 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.131 edgeCostMax=4.925 edgeCostAvg=2.027 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.355 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.131 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.925 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.855 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.394 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=55 value=0x42ae6120 out_u0c=7/0x7 out_u1c=5/0x5 out_u20=2251127744/0x862d7bc0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.190 edgeCostMax=4.452 edgeCostAvg=1.651 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.190 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=1.011 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;4:3>3 cost=1.957 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f;5:3>3 cost=0.825 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002e;6:3>3 cost=4.452 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002b;7:3>3 cost=1.600 ret=0x44f457 cur=0x100000a00002e dst=0x100000a00002c]
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=54 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2945538064/0xaf915810 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.289 edgeCostMax=2.386 edgeCostAvg=1.411 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.905 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;3:3>3 cost=1.406 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;4:3>3 cost=2.241 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;5:3>3 cost=0.344 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e;6:3>255 cost=1.306 ret=0x44f629 cur=0x100000a00004e dst=0x0]
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=62 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2948588256/0xafbfe2e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.089 edgeCostMax=1.182 edgeCostAvg=0.728 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.640 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.859 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.089 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.182 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.058 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.228 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=1.037 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=57 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2952673984/0xaffe3ac0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.727 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.265 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
2026-06-21 03:15:44.220 +58220ms hook GPSSearch result call=56 value=0x40000000 hasOutCount=1 outCount=19 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:3,4:16,5:15,15:6] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
2026-06-21 03:15:44.220 +58220ms hook GPSRouteProducer 0x44cc7c call=64 graph=0x591db1080 query=0x794bdfc0 outResult=0x794be120 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.49,-738.197,11.8735,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer 0x44cc7c call=65 graph=0x591db1080 query=0x79bfe330 outResult=0x79bfe490 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.69,-649.652,7.78,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer result call=60 value=0x42ae6120 out_u0c=20/0x14 out_u1c=11/0xb out_u20=3395003184/0xca5ba330 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=4.668 edgeCostAvg=1.413 edgeSrcClasses=[3:4,4:14,5:17,15:6] edgeDstClasses=[3:3,4:16,5:15,15:6,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:3>3 cost=0.863 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.713 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.977 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:5>5 cost=0.169 ret=0x44f457 cur=0x100000c900056 dst=0x100000c900055;5:5>5 cost=0.693 ret=0x44f457 cur=0x100000c900056 dst=0x100000c90005b;6:5>15 cost=0.047 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900048;7:5>5 cost=1.502 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900054]
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer 0x44cc7c call=69 graph=0x591db1080 query=0x79e7e330 outResult=0x79e7e490 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1399.86,-760.74,11.7551,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.223 +58223ms hook GPSRouteProducer 0x44cc7c call=66 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1411.57,-737.015,11.7018,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1064156160/0x3f6dbc00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
2026-06-21 03:15:44.223 +58223ms hook GPSRouteProducer 0x44cc7c call=67 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.9,-659.338,8.22519,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1053968896/0x3ed24a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
2026-06-21 03:15:44.224 +58224ms hook GPSRouteProducer 0x44cc7c call=68 graph=0x591db1080 query=0x797fe330 outResult=0x797fe490 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1411.03,-737.292,11.7055,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.224 +58224ms hook GPSRouteProducer 0x44cc7c call=70 graph=0x591db1080 query=0x793bdfc0 outResult=0x793be120 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.16,-708.142,7.66219,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.227 +58227ms hook GPSSearch result call=55 value=0x40000000 hasOutCount=1 outCount=68 filterCalls=382 filterPass=378 filterFail=4 filterBase=0 filterFiltered=382 filterPassClasses=[1:16,3:322,4:6,5:1,15:33] filterFailClasses=[12:4] filterPassMaskBits=[0:378,1:378] filterFailMaskBits=[none]
2026-06-21 03:15:44.227 +58227ms hook GPSSearch 0x44f054 call=62 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a18268e0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.69,7.9,-649.652) outPath=0x79bfd4a0 outCount=0x79bfc1a0 provider=0x79bfd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=65 ret_rva=0x44d117
2026-06-21 03:15:44.227 +58227ms hook GPSRouteProducer 0x44cc7c call=71 graph=0x591db1080 query=0x31c2e0 outResult=0x31c440 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.12,-647.77,5.80266,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=60 startHandle=0x100000a2000ea targetHandle=0x100000a700124 graph=0x1a1826aa0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1352.38,7.9,-655.817) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=61 ret_rva=0x44d117
2026-06-21 03:15:44.228 +58228ms hook GPSRouteProducer result call=58 value=0x42ae6120 out_u0c=53/0x35 out_u1c=14/0xe out_u20=2504917040/0x954e0030 out_u24=5/0x5 out_u2c=14/0xe out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=379 edgeCostMin=0.002 edgeCostMax=13.610 edgeCostAvg=1.110 edgeSrcClasses=[1:14,3:329,15:36] edgeDstClasses=[1:16,3:322,4:6,5:1,15:33,invalid:1] edgeRetRvas=[0x44f457:378,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.544 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.011 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.952 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;4:3>3 cost=2.169 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;5:3>3 cost=0.507 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;6:3>3 cost=0.343 ret=0x44f457 cur=0x1000009b00121 dst=0x1000009b00124;7:3>3 cost=0.573 ret=0x44f457 cur=0x1000009b00124 dst=0x1000009b00115]
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=61 startHandle=0x100000aa0000e targetHandle=0x100000aa00034 graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.49,11.8,-738.197) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=64 ret_rva=0x44d117
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=58 startHandle=0x100000a000073 targetHandle=0x100000a000062 graph=0x1a18269c0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1372.54,9.1,-727.726) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=59 ret_rva=0x44d117
2026-06-21 03:15:44.229 +58229ms hook GPSSearch 0x44f054 call=63 startHandle=0x1000009a00275 targetHandle=0x1000009a00275 graph=0x1a1826790 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1399.86,11.9467,-760.74) outPath=0x79e7d4a0 outCount=0x79e7c1a0 provider=0x79e7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=69 ret_rva=0x44d117
2026-06-21 03:15:44.229 +58229ms hook GPSSearch 0x44f054 call=64 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826b10 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1411.57,11.8,-737.015) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=66 ret_rva=0x44d117
2026-06-21 03:15:44.229 +58229ms hook GPSSearch result call=62 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.229 +58229ms hook GPSSearch result call=60 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=21 filterPass=21 filterFail=0 filterBase=0 filterFiltered=21 filterPassClasses=[3:16,15:5] filterFailClasses=[none] filterPassMaskBits=[0:21,1:21] filterFailMaskBits=[none]
2026-06-21 03:15:44.230 +58230ms hook GPSSearch 0x44f054 call=65 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826870 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1411.03,11.8,-737.292) outPath=0x797fd4a0 outCount=0x797fc1a0 provider=0x797fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=68 ret_rva=0x44d117
2026-06-21 03:15:44.230 +58230ms hook GPSSearch 0x44f054 call=59 startHandle=0x100000c900087 targetHandle=0x100000c900032 graph=0x1a1826950 startPoint=(-1285,8.4,-702.7) targetPoint=(-1282.04,8.0254,-707.794) outPath=0x795bd4a0 outCount=0x795bc1a0 provider=0x795bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=63 ret_rva=0x44d117
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=61 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=64 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=63 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:44.231 +58231ms hook GPSSearch result call=65 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.232 +58232ms hook GPSSearch result call=59 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=18 filterPass=18 filterFail=0 filterBase=18 filterFiltered=0 filterPassClasses=[3:5,4:1,5:7,15:5] filterFailClasses=[none] filterPassMaskBits=[0:18,1:18] filterFailMaskBits=[none]
2026-06-21 03:15:44.232 +58232ms hook GPSRouteProducer result call=63 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2920632048/0xae154ef0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.026 edgeCostMax=2.417 edgeCostAvg=0.825 edgeSrcClasses=[3:7,4:1,5:6,15:5] edgeDstClasses=[3:5,4:1,5:7,15:5,invalid:1] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=0.175 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.376 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=1.981 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.513 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=1.303 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=0.364 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:4>5 cost=0.026 ret=0x44f457 cur=0x100000c900069 dst=0x100000c900057]
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=66 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.032 edgeCostMax=4.425 edgeCostAvg=2.374 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.047 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.279 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.032 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.425 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=3.950 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=2.507 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=69 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2927861992/0xae83a0e8 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer 0x44cc7c call=72 graph=0x591db1080 query=0x799fdfc0 outResult=0x799fe120 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.01,-748.694,11.75,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.233 +58233ms hook GPSSearch 0x44f054 call=66 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a18268e0 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.12,6.1,-647.77) outPath=0x31b450 outCount=0x31a150 provider=0x31b160 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=71 ret_rva=0x44d117
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=64 value=0x42ae6120 out_u0c=9/0x9 out_u1c=8/0x8 out_u20=2504906064/0x954dd550 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.167 edgeCostMax=3.731 edgeCostAvg=1.149 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=2.149 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=0.515 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=3.731 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=0.210 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.386 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.935 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.423 ret=0x44f457 cur=0x100000aa0000b dst=0x100000aa00009;7:3>3 cost=0.370 ret=0x44f457 cur=0x100000aa00009 dst=0x100000aa00032]
2026-06-21 03:15:44.234 +58234ms hook GPSSearch 0x44f054 call=68 startHandle=0x100000ac0007b targetHandle=0x100000ac0007a graph=0x1a1826a30 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.9,8.5,-659.338) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=67 ret_rva=0x44d117
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer result call=65 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207904/0xb0342720 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.127 edgeCostMax=2.010 edgeCostAvg=1.082 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.127 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.667 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=0.525 ret=0x44f629 cur=0x100000a70017d dst=0x0]
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer result call=68 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=1.042 edgeCostMax=5.488 edgeCostAvg=2.555 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=1.042 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=1.881 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.808 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer 0x44cc7c call=73 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1275.04,-708.176,7.67619,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158910976/0x45139400 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
2026-06-21 03:15:44.234 +58234ms hook GPSSearch result call=58 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=12 filterPass=12 filterFail=0 filterBase=12 filterFiltered=0 filterPassClasses=[3:12] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
2026-06-21 03:15:44.235 +58235ms hook GPSSearch 0x44f054 call=69 startHandle=0x1000009b00100 targetHandle=0x1000009a0037b graph=0x1a1826950 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.01,11.8,-748.694) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=72 ret_rva=0x44d117
2026-06-21 03:15:44.235 +58235ms hook GPSSearch result call=66 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.235 +58235ms hook GPSRouteProducer 0x44cc7c call=75 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1400.95,-755.22,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1077136640/0x4033cd00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
2026-06-21 03:15:44.235 +58235ms hook GPSSearch result call=68 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:44.235 +58235ms hook GPSRouteProducer result call=59 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2942586880/0xaf645000 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.010 edgeCostMax=3.411 edgeCostAvg=1.141 edgeSrcClasses=[3:13] edgeDstClasses=[3:12,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.522 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.135 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.863 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=1.869 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=1.559 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.663 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>3 cost=1.372 ret=0x44f457 cur=0x100000a00003a dst=0x100000a000039]
2026-06-21 03:15:44.236 +58236ms hook GPSRouteProducer 0x44cc7c call=76 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.15,-648.684,7.78455,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1102516480/0x41b71100 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
2026-06-21 03:15:44.236 +58236ms hook GPSRouteProducer 0x44cc7c call=74 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.06,-742.561,11.76,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1112689408/0x42524b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
2026-06-21 03:15:44.236 +58236ms hook GPSSearch 0x44f054 call=70 startHandle=0x100000c900087 targetHandle=0x100000c900038 graph=0x1a1826870 startPoint=(-1285,8.4,-702.7) targetPoint=(-1275.04,7.98098,-708.176) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=73 ret_rva=0x44d117
2026-06-21 03:15:44.236 +58236ms hook GPSSearch 0x44f054 call=67 startHandle=0x100000c900081 targetHandle=0x100000c900034 graph=0x1a1826aa0 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.16,7.97771,-708.142) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=70 ret_rva=0x44d117
2026-06-21 03:15:44.237 +58237ms hook GPSRouteProducer result call=61 value=0x42ae6120 out_u0c=15/0xf out_u1c=11/0xb out_u20=2635039312/0x9d0f8250 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=22 edgeCostMin=0.039 edgeCostMax=2.797 edgeCostAvg=1.299 edgeSrcClasses=[3:17,15:5] edgeDstClasses=[3:16,15:5,invalid:1] edgeRetRvas=[0x44f457:21,0x44f629:1] edgeSamples=[0:3>3 cost=0.173 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.360 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.623 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=1.557 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.797 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=2.588 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.438 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.265 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
2026-06-21 03:15:44.239 +58239ms hook GPSSearch result call=70 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=44 filterPass=44 filterFail=0 filterBase=0 filterFiltered=44 filterPassClasses=[3:13,4:3,5:19,15:9] filterFailClasses=[none] filterPassMaskBits=[0:44,1:44] filterFailMaskBits=[none]
2026-06-21 03:15:44.240 +58240ms hook GPSSearch result call=67 value=0x40000000 hasOutCount=1 outCount=15 filterCalls=25 filterPass=25 filterFail=0 filterBase=25 filterFiltered=0 filterPassClasses=[3:9,5:11,15:5] filterFailClasses=[none] filterPassMaskBits=[0:25,1:25] filterFailMaskBits=[none]
2026-06-21 03:15:44.240 +58240ms hook GPSRouteProducer result call=73 value=0x42ae6120 out_u0c=13/0xd out_u1c=5/0x5 out_u20=2962952976/0xb09b1310 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=45 edgeCostMin=0.020 edgeCostMax=4.335 edgeCostAvg=1.127 edgeSrcClasses=[3:16,4:1,5:18,15:10] edgeDstClasses=[3:13,4:3,5:19,15:9,invalid:1] edgeRetRvas=[0x44f457:44,0x44f629:1] edgeSamples=[0:3>3 cost=0.106 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.032 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=2.079 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.546 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=0.804 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=1.307 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:3>3 cost=0.731 ret=0x44f457 cur=0x100000c900091 dst=0x100000c900090]
2026-06-21 03:15:44.240 +58240ms hook GPSRouteProducer 0x44cc7c call=80 graph=0x591db1080 query=0x798fdfc0 outResult=0x798fe120 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1362.05,-655.586,5.84315,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer result call=71 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250925024/0x862a63e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.102 edgeCostMax=2.511 edgeCostAvg=1.094 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.326 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.463 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.519 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.148 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.718 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.829 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.511 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.228 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer 0x44cc7c call=78 graph=0x591db1080 query=0x794be330 outResult=0x794be490 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.03,-648.787,8.24185,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer result call=67 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2948431424/0xafbd7e40 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.016 edgeCostMax=2.911 edgeCostAvg=1.179 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.673 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.687 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=1.607 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;3:3>255 cost=0.016 ret=0x44f629 cur=0x100000ac0007a dst=0x0;4:3>3 cost=2.911 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079]
2026-06-21 03:15:44.241 +58241ms hook GPSSearch 0x44f054 call=71 startHandle=0x1000009a00275 targetHandle=0x1000009a00312 graph=0x1a18268e0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1400.95,11.8,-755.22) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=75 ret_rva=0x44d117
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer 0x44cc7c call=81 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1295.04,-708.012,7.60828,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1162465280/0x4549d000 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=73 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a18269c0 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.06,11.8,-742.561) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=74 ret_rva=0x44d117
2026-06-21 03:15:44.242 +58242ms hook GPSRouteProducer 0x44cc7c call=82 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.97,-653.309,5.84667,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098264320/0x41762f00 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=72 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a1826a30 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.15,7.9,-648.684) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=76 ret_rva=0x44d117
2026-06-21 03:15:44.242 +58242ms hook GPSSearch result call=71 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=76 startHandle=0x100000c900087 targetHandle=0x100000c900026 graph=0x1a1826790 startPoint=(-1285,8.4,-702.7) targetPoint=(-1295.04,7.84026,-708.012) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=81 ret_rva=0x44d117
2026-06-21 03:15:44.243 +58243ms hook GPSSearch result call=73 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer 0x44cc7c call=83 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.92,-663.988,8.22214,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1010583040/0x3c3c4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer result call=75 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2927862064/0xae83a130 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.262 edgeCostMax=4.933 edgeCostAvg=1.487 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=4.933 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.317 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.481 ret=0x44f457 cur=0x1000009a00273 dst=0x1000009a00272;4:3>3 cost=0.756 ret=0x44f457 cur=0x1000009a00272 dst=0x1000009a00313;5:3>3 cost=1.383 ret=0x44f457 cur=0x1000009a00313 dst=0x1000009a00312;6:3>255 cost=0.262 ret=0x44f629 cur=0x1000009a00312 dst=0x0]
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer 0x44cc7c call=77 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1406,-741.425,11.7515,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101859072/0x41ad0900 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
2026-06-21 03:15:44.243 +58243ms hook GPSSearch 0x44f054 call=74 startHandle=0x100000a2000ea targetHandle=0x100000a20014d graph=0x1a1826aa0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1362.05,6.1,-655.586) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=80 ret_rva=0x44d117
2026-06-21 03:15:44.243 +58243ms hook GPSSearch result call=72 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.244 +58244ms hook GPSSearch 0x44f054 call=75 startHandle=0x100000ac000c4 targetHandle=0x100000ac00022 graph=0x1a1826870 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.03,8.5,-648.787) outPath=0x794bd4a0 outCount=0x794bc1a0 provider=0x794bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=78 ret_rva=0x44d117
2026-06-21 03:15:44.244 +58244ms hook GPSSearch result call=69 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=63 filterPass=63 filterFail=0 filterBase=63 filterFiltered=0 filterPassClasses=[3:63] filterFailClasses=[none] filterPassMaskBits=[0:63,1:63] filterFailMaskBits=[none]
2026-06-21 03:15:44.244 +58244ms hook GPSRouteProducer 0x44cc7c call=79 graph=0x591db1080 query=0x796be330 outResult=0x796be490 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1358.52,-648.296,6.64535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.244 +58244ms hook GPSRouteProducer result call=76 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207976/0xb0342768 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.114 edgeCostMax=2.010 edgeCostAvg=1.343 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.114 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.608 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=1.641 ret=0x44f629 cur=0x100000a70017d dst=0x0]
2026-06-21 03:15:44.245 +58245ms hook GPSSearch result call=76 value=0x40000000 hasOutCount=1 outCount=16 filterCalls=33 filterPass=33 filterFail=0 filterBase=0 filterFiltered=33 filterPassClasses=[3:11,5:14,15:8] filterFailClasses=[none] filterPassMaskBits=[0:33,1:33] filterFailMaskBits=[none]
2026-06-21 03:15:44.245 +58245ms hook GPSSearch result call=75 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:44.245 +58245ms hook GPSSearch 0x44f054 call=77 startHandle=0x100000a200147 targetHandle=0x100000a20011b graph=0x1a1826b10 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.97,6.1,-653.309) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=82 ret_rva=0x44d117
2026-06-21 03:15:44.245 +58245ms hook GPSRouteProducer result call=72 value=0x42ae6120 out_u0c=23/0x17 out_u1c=3/0x3 out_u20=2939520608/0xaf358660 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=64 edgeCostMin=0.017 edgeCostMax=15.336 edgeCostAvg=1.491 edgeSrcClasses=[3:64] edgeDstClasses=[3:63,invalid:1] edgeRetRvas=[0x44f457:63,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.404 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.017 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.484 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.087 ret=0x44f457 cur=0x1000009b000d6 dst=0x1000009b000d7;5:3>3 cost=0.247 ret=0x44f457 cur=0x1000009b000d7 dst=0x1000009b000dc;6:3>3 cost=1.645 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000d3;7:3>3 cost=0.345 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000e0]
2026-06-21 03:15:44.246 +58246ms hook GPSRouteProducer 0x44cc7c call=84 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1392.75,-768.825,11.7477,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1080343296/0x4064bb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
2026-06-21 03:15:44.246 +58246ms hook GPSSearch 0x44f054 call=78 startHandle=0x100000ac0007b targetHandle=0x100000ac0004e graph=0x1a18269c0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.92,8.5,-663.988) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=83 ret_rva=0x44d117
2026-06-21 03:15:44.246 +58246ms hook GPSSearch result call=74 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.246 +58246ms hook GPSRouteProducer result call=78 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2940799888/0xaf490b90 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.051 edgeCostMax=4.666 edgeCostAvg=1.562 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.098 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.873 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.156 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=3.255 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=1.721 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.182 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=3.252 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
2026-06-21 03:15:44.246 +58246ms hook GPSSearch 0x44f054 call=81 startHandle=0x1000009a00275 targetHandle=0x1000009f00028 graph=0x1a1826870 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1392.75,11.8,-768.825) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=84 ret_rva=0x44d117
2026-06-21 03:15:44.247 +58247ms hook GPSSearch result call=78 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.247 +58247ms hook GPSRouteProducer result call=70 value=0x42ae6120 out_u0c=16/0x10 out_u1c=3/0x3 out_u20=2934307264/0xaee5f9c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.110 edgeCostMax=2.922 edgeCostAvg=0.980 edgeSrcClasses=[3:10,5:10,15:6] edgeDstClasses=[3:9,5:11,15:5,invalid:1] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=0.498 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=2.176 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.377 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:3>3 cost=0.985 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;5:3>3 cost=1.684 ret=0x44f457 cur=0x100000c90008b dst=0x100000c90008a;6:3>3 cost=1.722 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;7:3>3 cost=0.544 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900088]
2026-06-21 03:15:44.247 +58247ms hook GPSRouteProducer 0x44cc7c call=86 graph=0x591db1080 query=0x799fe330 outResult=0x799fe490 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1401.57,-751.518,11.7559,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.247 +58247ms hook GPSSearch result call=77 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer result call=83 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2948588256/0xafbfe2e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.117 edgeCostMax=1.336 edgeCostAvg=0.749 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.699 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=1.053 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.117 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.336 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.034 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.203 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=0.802 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
2026-06-21 03:15:44.248 +58248ms hook GPSSearch result call=81 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=15 filterPass=15 filterFail=0 filterBase=0 filterFiltered=15 filterPassClasses=[3:15] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer 0x44cc7c call=87 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.7,-645.733,8.24656,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1126840576/0x432a3900 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer 0x44cc7c call=88 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1325.47,-651.09,7.63476,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157933056/0x4504a800 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer result call=80 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2964919296/0xb0b91400 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.222 edgeCostMax=2.889 edgeCostAvg=1.439 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.305 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.222 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.889 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.278 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>255 cost=1.078 ret=0x44f629 cur=0x100000a20014d dst=0x0]
2026-06-21 03:15:44.249 +58249ms hook GPSSearch 0x44f054 call=82 startHandle=0x100000ac000c4 targetHandle=0x1000008f0001c graph=0x1a1826870 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.7,8.5,-645.733) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=87 ret_rva=0x44d117
2026-06-21 03:15:44.249 +58249ms hook GPSRouteProducer result call=82 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2701653008/0xa107f410 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.143 edgeCostMax=2.169 edgeCostAvg=0.823 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.284 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.583 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=2.169 ret=0x44f457 cur=0x100000a20011f dst=0x100000a200118;3:3>3 cost=0.143 ret=0x44f457 cur=0x100000a20011f dst=0x100000a200120;4:3>3 cost=0.971 ret=0x44f457 cur=0x100000a200120 dst=0x100000a20011d;5:3>3 cost=1.646 ret=0x44f457 cur=0x100000a200120 dst=0x100000a20011e;6:3>3 cost=0.198 ret=0x44f457 cur=0x100000a20011e dst=0x100000a20011c;7:3>3 cost=1.080 ret=0x44f457 cur=0x100000a20011c dst=0x100000a20011b]
2026-06-21 03:15:44.249 +58249ms hook GPSSearch 0x44f054 call=80 startHandle=0x100000850004d targetHandle=0x100000a700177 graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1358.52,6.76975,-648.296) outPath=0x796bd4a0 outCount=0x796bc1a0 provider=0x796bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=79 ret_rva=0x44d117
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer 0x44cc7c call=85 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.51,-655.106,7.78,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1090574592/0x4100d900 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer result call=81 value=0x42ae6120 out_u0c=16/0x10 out_u1c=1/0x1 out_u20=2919658256/0xae067310 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.063 edgeCostMax=2.103 edgeCostAvg=1.011 edgeSrcClasses=[3:13,5:11,15:10] edgeDstClasses=[3:11,5:14,15:8,invalid:1] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.051 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=0.507 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>5 cost=1.931 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90005a;3:3>3 cost=0.375 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90008a;4:3>3 cost=0.961 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;5:3>3 cost=1.273 ret=0x44f457 cur=0x100000c90008a dst=0x100000c90008b;6:3>3 cost=1.756 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;7:3>3 cost=0.706 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900089]
2026-06-21 03:15:44.250 +58250ms hook GPSSearch 0x44f054 call=79 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1406,11.8,-741.425) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=77 ret_rva=0x44d117
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer result call=84 value=0x42ae6120 out_u0c=11/0xb out_u1c=5/0x5 out_u20=2928671312/0xae8ffa50 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.261 edgeCostMax=6.139 edgeCostAvg=2.164 edgeSrcClasses=[3:16] edgeDstClasses=[3:15,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>3 cost=4.989 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.261 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.833 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271;4:3>3 cost=6.139 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00274;5:3>3 cost=0.643 ret=0x44f457 cur=0x1000009a00271 dst=0x1000009a001c9;6:3>3 cost=0.346 ret=0x44f457 cur=0x1000009a001c9 dst=0x1000009a001ca;7:3>3 cost=5.099 ret=0x44f457 cur=0x1000009a001ca dst=0x1000009a001c8]
2026-06-21 03:15:44.251 +58251ms hook GPSRouteProducer result call=74 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.156 edgeCostMax=4.985 edgeCostAvg=2.014 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.391 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.985 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.999 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.035 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.251 +58251ms hook GPSSearch 0x44f054 call=83 startHandle=0x100000ac0007b targetHandle=0x100000ac000b3 graph=0x1a1826b10 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1325.47,7.9,-651.09) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=88 ret_rva=0x44d117
2026-06-21 03:15:44.251 +58251ms hook GPSRouteProducer 0x44cc7c call=92 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1392.34,-768.259,11.7477,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1132600832/0x43821e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
2026-06-21 03:15:44.251 +58251ms hook GPSSearch result call=79 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.251 +58251ms hook GPSSearch result call=80 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:44.252 +58252ms hook GPSRouteProducer result call=86 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.252 +58252ms hook GPSSearch result call=82 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=23 filterPass=23 filterFail=0 filterBase=0 filterFiltered=23 filterPassClasses=[3:23] filterFailClasses=[none] filterPassMaskBits=[0:23,1:23] filterFailMaskBits=[none]
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=94 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1402.25,-750.08,11.7625,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096790016/0x415fb000 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=89 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.18,-647.319,5.81129,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1095424768/0x414adb00 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=91 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1275.14,-720.575,7.67606,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158864640/0x4512df00 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer result call=77 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.749 edgeCostMax=5.488 edgeCostAvg=2.671 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.749 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=3.046 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.399 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=95 graph=0x591db1080 query=0x798fe330 outResult=0x798fe490 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1389.69,-788.318,11.7671,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=90 graph=0x591db1080 query=0x793be330 outResult=0x793be490 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1417.29,-757.138,11.7611,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer result call=79 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2918751904/0xadf89ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.336 edgeCostMax=3.323 edgeCostAvg=1.358 edgeSrcClasses=[3:7,15:5] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.240 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.638 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.725 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.462 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=1.043 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.336 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>15 cost=2.841 ret=0x44f457 cur=0x1000008a00010 dst=0x1000008a0000e]
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=93 graph=0x591db1080 query=0x79d7dfc0 outResult=0x79d7e120 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.06,-742.561,11.76,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.256 +58256ms hook GPSRouteProducer result call=87 value=0x42ae6120 out_u0c=15/0xf out_u1c=4/0x4 out_u20=2923354656/0xae3eda20 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=24 edgeCostMin=0.050 edgeCostMax=16.803 edgeCostAvg=3.012 edgeSrcClasses=[3:24] edgeDstClasses=[3:23,invalid:1] edgeRetRvas=[0x44f457:23,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.256 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.772 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.267 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=4.055 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=0.678 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.050 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=1.444 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
2026-06-21 03:15:44.256 +58256ms hook GPSSearch result call=83 value=0x40000000 hasOutCount=1 outCount=25 filterCalls=119 filterPass=119 filterFail=0 filterBase=0 filterFiltered=119 filterPassClasses=[3:97,5:22] filterFailClasses=[none] filterPassMaskBits=[0:119,1:119] filterFailMaskBits=[none]
2026-06-21 03:15:44.256 +58256ms hook GPSSearch 0x44f054 call=89 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826790 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.06,11.8,-742.561) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=93 ret_rva=0x44d117
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=87 startHandle=0x100000c900087 targetHandle=0x100000c80008a graph=0x1a1826950 startPoint=(-1285,8.4,-702.7) targetPoint=(-1275.14,8.04419,-720.575) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=91 ret_rva=0x44d117
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=88 startHandle=0x1000009e00235 targetHandle=0x1000009e00268 graph=0x1a18268e0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1389.69,11.8,-788.318) outPath=0x798fd4a0 outCount=0x798fc1a0 provider=0x798fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=95 ret_rva=0x44d117
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=96 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1412.6,-736.783,11.6948,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098953984/0x4180b500 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=97 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1361.94,-650.322,5.82954,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1075547392/0x401b8d00 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=98 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.88,-657.732,8.22771,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125106176/0x430fc200 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=86 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a1826870 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.18,6.1,-647.319) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=89 ret_rva=0x44d117
2026-06-21 03:15:44.258 +58258ms hook GPSSearch 0x44f054 call=84 startHandle=0x100000a70017c targetHandle=0x100000a70013b graph=0x1a18269c0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.51,7.9,-655.106) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=85 ret_rva=0x44d117
2026-06-21 03:15:44.258 +58258ms hook GPSSearch result call=89 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=88 value=0x42ae6120 out_u0c=21/0x15 out_u1c=13/0xd out_u20=3256082064/0xc213de90 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=120 edgeCostMin=0.000 edgeCostMax=11.523 edgeCostAvg=1.397 edgeSrcClasses=[3:98,5:22] edgeDstClasses=[3:97,5:22,invalid:1] edgeRetRvas=[0x44f457:119,0x44f629:1] edgeSamples=[0:3>3 cost=0.821 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=1.328 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.172 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.572 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.036 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=1.896 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;6:3>3 cost=2.081 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079;7:3>3 cost=0.422 ret=0x44f457 cur=0x100000ac0007a dst=0x100000ac0008f]
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=94 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=90 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.259 +58259ms hook GPSSearch 0x44f054 call=85 startHandle=0x1000009a00275 targetHandle=0x1000009f00028 graph=0x1a1826aa0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1392.34,11.8,-768.259) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=92 ret_rva=0x44d117
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=86 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=88 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=84 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=16 filterPass=16 filterFail=0 filterBase=0 filterFiltered=16 filterPassClasses=[3:16] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
2026-06-21 03:15:44.260 +58260ms hook GPSRouteProducer result call=93 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.156 edgeCostMax=4.985 edgeCostAvg=2.014 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.391 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.985 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.999 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.035 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.260 +58260ms hook GPSSearch result call=85 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=15 filterPass=15 filterFail=0 filterBase=0 filterFiltered=15 filterPassClasses=[3:15] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer 0x44cc7c call=99 graph=0x591db1080 query=0x79afdfc0 outResult=0x79afe120 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.9,-659.338,8.22519,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer result call=89 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250920704/0x862a5300 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.301 edgeCostMax=2.193 edgeCostAvg=1.036 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.301 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.444 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.071 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.193 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.924 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.368 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.141 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.369 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
2026-06-21 03:15:44.261 +58261ms hook GPSSearch result call=87 value=0x40000000 hasOutCount=1 outCount=22 filterCalls=38 filterPass=38 filterFail=0 filterBase=0 filterFiltered=38 filterPassClasses=[3:5,4:16,5:12,15:5] filterFailClasses=[none] filterPassMaskBits=[0:38,1:38] filterFailMaskBits=[none]
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer 0x44cc7c call=100 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1398.71,-763.103,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096972544/0x41627900 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer result call=85 value=0x42ae6120 out_u0c=11/0xb out_u1c=8/0x8 out_u20=3256104832/0xc2143780 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.010 edgeCostMax=2.732 edgeCostAvg=0.799 edgeSrcClasses=[3:17] edgeDstClasses=[3:16,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:3>3 cost=0.104 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=2.732 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>3 cost=0.010 ret=0x44f457 cur=0x100000a70017a dst=0x100000a700174;4:3>3 cost=2.042 ret=0x44f457 cur=0x100000a700174 dst=0x100000a700171;5:3>3 cost=0.892 ret=0x44f457 cur=0x100000a700174 dst=0x100000a70016d;6:3>3 cost=0.149 ret=0x44f457 cur=0x100000a70016d dst=0x100000a70016c;7:3>3 cost=0.584 ret=0x44f457 cur=0x100000a70016c dst=0x100000a70012a]
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=91 startHandle=0x100000850004d targetHandle=0x100000a20011f graph=0x1a1826a30 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1361.94,6.1,-650.322) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=97 ret_rva=0x44d117
2026-06-21 03:15:44.262 +58262ms hook GPSRouteProducer 0x44cc7c call=102 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1351.29,-649.414,7.78213,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1105293568/0x41e17100 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
2026-06-21 03:15:44.262 +58262ms hook GPSRouteProducer result call=91 value=0x42ae6120 out_u0c=23/0x17 out_u1c=12/0xc out_u20=3256111648/0xc2145220 out_u24=5/0x5 out_u2c=12/0xc out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=39 edgeCostMin=0.021 edgeCostMax=3.816 edgeCostAvg=1.263 edgeSrcClasses=[3:7,4:15,5:12,15:5] edgeDstClasses=[3:5,4:16,5:12,15:5,invalid:1] edgeRetRvas=[0x44f457:38,0x44f629:1] edgeSamples=[0:3>3 cost=0.182 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.457 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=1.974 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.460 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=1.351 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=0.299 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:4>5 cost=0.021 ret=0x44f457 cur=0x100000c900069 dst=0x100000c900057]
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=93 startHandle=0x100000ac0007b targetHandle=0x100000ac0007a graph=0x1a1826aa0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.9,8.5,-659.338) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=99 ret_rva=0x44d117
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=92 startHandle=0x100000ac000c4 targetHandle=0x100000ac0008f graph=0x1a1826790 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.88,8.5,-657.732) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=98 ret_rva=0x44d117
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer result call=100 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.263 +58263ms hook GPSSearch result call=91 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer 0x44cc7c call=105 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1398.46,-765.082,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1119717888/0x42bd8a00 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
2026-06-21 03:15:44.263 +58263ms hook GPSSearch 0x44f054 call=90 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826b10 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1412.6,11.8,-736.783) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=96 ret_rva=0x44d117
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer result call=95 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2954466976/0xb01996a0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.490 edgeCostMax=4.115 edgeCostAvg=1.481 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.628 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.458 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=4.115 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;4:3>3 cost=1.366 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268;5:3>255 cost=0.490 ret=0x44f629 cur=0x1000009e00268 dst=0x0]
2026-06-21 03:15:44.263 +58263ms hook GPSSearch result call=93 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer result call=92 value=0x42ae6120 out_u0c=11/0xb out_u1c=5/0x5 out_u20=2928671312/0xae8ffa50 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.191 edgeCostMax=6.160 edgeCostAvg=2.132 edgeSrcClasses=[3:16] edgeDstClasses=[3:15,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>3 cost=4.937 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.273 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.777 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271;4:3>3 cost=6.160 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00274;5:3>3 cost=0.633 ret=0x44f457 cur=0x1000009a00271 dst=0x1000009a001c9;6:3>3 cost=0.346 ret=0x44f457 cur=0x1000009a001c9 dst=0x1000009a001ca;7:3>3 cost=5.243 ret=0x44f457 cur=0x1000009a001ca dst=0x1000009a001c8]
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer result call=105 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=106 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1390.83,-788.084,11.7671,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117358592/0x42998a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=103 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1359.25,-647.748,6.1505,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099380224/0x41873600 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=107 graph=0x591db1080 query=0x79e7dfc0 outResult=0x79e7e120 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1400.95,-755.22,11.7551,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.264 +58264ms hook GPSSearch result call=92 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer result call=99 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2948431424/0xafbd7e40 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.016 edgeCostMax=2.911 edgeCostAvg=1.179 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.673 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.687 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=1.607 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;3:3>255 cost=0.016 ret=0x44f629 cur=0x100000ac0007a dst=0x0;4:3>3 cost=2.911 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079]
2026-06-21 03:15:44.265 +58265ms hook GPSSearch 0x44f054 call=95 startHandle=0x1000009e00235 targetHandle=0x1000009e00266 graph=0x1a1826aa0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1390.83,11.8,-788.084) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=106 ret_rva=0x44d117
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer 0x44cc7c call=104 graph=0x591db1080 query=0x795bdfc0 outResult=0x795be120 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1295.04,-708.012,7.60828,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer 0x44cc7c call=101 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1416.48,-759.59,11.7575,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117695744/0x429eaf00 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
2026-06-21 03:15:44.266 +58266ms hook GPSSearch result call=95 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.266 +58266ms hook GPSSearch 0x44f054 call=96 startHandle=0x100000a70017c targetHandle=0x1000008a0000f graph=0x1a1826a30 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1359.25,6.34758,-647.748) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=103 ret_rva=0x44d117
2026-06-21 03:15:44.266 +58266ms hook GPSSearch 0x44f054 call=97 startHandle=0x1000009a00275 targetHandle=0x1000009a00312 graph=0x1a18269c0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1400.95,11.8,-755.22) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=107 ret_rva=0x44d117
2026-06-21 03:15:44.266 +58266ms hook GPSRouteProducer result call=106 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964924480/0xb0b92840 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.724 edgeCostMax=1.957 edgeCostAvg=1.220 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.724 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.367 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>255 cost=1.957 ret=0x44f629 cur=0x1000009e00266 dst=0x0]
2026-06-21 03:15:44.267 +58267ms hook GPSRouteProducer result call=101 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.267 +58267ms hook GPSSearch result call=97 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.267 +58267ms hook GPSRouteProducer 0x44cc7c call=109 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1391.18,-782.094,11.7672,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125074432/0x430f4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
2026-06-21 03:15:44.267 +58267ms hook GPSSearch 0x44f054 call=94 startHandle=0x100000a200147 targetHandle=0x100000a70017d graph=0x1a1826950 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1351.29,7.9,-649.414) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=102 ret_rva=0x44d117
2026-06-21 03:15:44.268 +58268ms hook GPSRouteProducer result call=107 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2927862064/0xae83a130 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.262 edgeCostMax=4.933 edgeCostAvg=1.487 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=4.933 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.317 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.481 ret=0x44f457 cur=0x1000009a00273 dst=0x1000009a00272;4:3>3 cost=0.756 ret=0x44f457 cur=0x1000009a00272 dst=0x1000009a00313;5:3>3 cost=1.383 ret=0x44f457 cur=0x1000009a00313 dst=0x1000009a00312;6:3>255 cost=0.262 ret=0x44f629 cur=0x1000009a00312 dst=0x0]
2026-06-21 03:15:44.268 +58268ms hook GPSSearch 0x44f054 call=99 startHandle=0x1000009e00235 targetHandle=0x1000009e0024b graph=0x1a18269c0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1391.18,11.8,-782.094) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=109 ret_rva=0x44d117
2026-06-21 03:15:44.268 +58268ms hook GPSRouteProducer 0x44cc7c call=110 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1416.19,-746.128,11.638,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096188928/0x41568400 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
2026-06-21 03:15:44.268 +58268ms hook GPSSearch result call=96 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:4,15:3] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:44.268 +58268ms hook GPSSearch result call=90 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.269 +58269ms hook GPSSearch result call=94 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=17 filterPass=17 filterFail=0 filterBase=0 filterFiltered=17 filterPassClasses=[3:14,15:3] filterFailClasses=[none] filterPassMaskBits=[0:17,1:17] filterFailMaskBits=[none]
2026-06-21 03:15:44.269 +58269ms hook GPSSearch result call=99 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer result call=98 value=0x42ae6120 out_u0c=7/0x7 out_u1c=3/0x3 out_u20=2940542352/0xaf451d90 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.099 edgeCostMax=2.873 edgeCostAvg=1.325 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=2.629 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.099 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=2.275 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=0.907 ret=0x44f457 cur=0x100000ac000c3 dst=0x100000ac000c0;4:3>3 cost=0.122 ret=0x44f457 cur=0x100000ac000c0 dst=0x100000ac0008e;5:3>3 cost=0.277 ret=0x44f457 cur=0x100000ac0008e dst=0x100000ac00090;6:3>3 cost=2.337 ret=0x44f457 cur=0x100000ac00090 dst=0x100000ac0008f;7:3>255 cost=0.406 ret=0x44f629 cur=0x100000ac0008f dst=0x0]
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer result call=109 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2965124064/0xb0bc33e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.284 edgeCostMax=1.681 edgeCostAvg=0.928 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.651 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=1.488 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.681 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=0.284 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233;4:3>3 cost=0.523 ret=0x44f457 cur=0x1000009e00233 dst=0x1000009e0024c;5:3>3 cost=0.976 ret=0x44f457 cur=0x1000009e0024c dst=0x1000009e0024b;6:3>255 cost=0.891 ret=0x44f629 cur=0x1000009e0024b dst=0x0]
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer 0x44cc7c call=111 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1325.15,-641.489,7.72641,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160181760/0x4526f800 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
2026-06-21 03:15:44.270 +58270ms hook GPSRouteProducer result call=102 value=0x42ae6120 out_u0c=11/0xb out_u1c=6/0x6 out_u20=2701653008/0xa107f410 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=18 edgeCostMin=0.074 edgeCostMax=3.441 edgeCostAvg=1.401 edgeSrcClasses=[3:15,15:3] edgeDstClasses=[3:14,15:3,invalid:1] edgeRetRvas=[0x44f457:17,0x44f629:1] edgeSamples=[0:3>3 cost=1.113 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=1.026 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.192 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=1.401 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.074 ret=0x44f457 cur=0x100000a200146 dst=0x100000a700176;5:3>3 cost=0.763 ret=0x44f457 cur=0x100000a700176 dst=0x100000a700179;6:3>3 cost=1.766 ret=0x44f457 cur=0x100000a700179 dst=0x1000008a00001;7:3>15 cost=0.262 ret=0x44f457 cur=0x100000a700179 dst=0x100000a700178]
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer 0x44cc7c call=112 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1399.96,-780.732,3.05697,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1100147456/0x4192eb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer result call=97 value=0x42ae6120 out_u0c=8/0x8 out_u1c=3/0x3 out_u20=2917393776/0xade3e570 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.039 edgeCostMax=2.072 edgeCostAvg=1.067 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.247 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=2.072 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.128 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=0.744 ret=0x44f457 cur=0x100000850004c dst=0x100000a200148;5:3>3 cost=1.192 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;6:3>3 cost=1.406 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;7:3>3 cost=0.713 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200149]
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer result call=96 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=1.281 edgeCostMax=5.488 edgeCostAvg=3.010 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=1.281 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=2.096 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=3.174 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.271 +58271ms hook GPSSearch 0x44f054 call=101 startHandle=0x1000009e00235 targetHandle=0x1000009900149 graph=0x1a1826950 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1399.96,3.4,-780.732) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=112 ret_rva=0x44d117
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer 0x44cc7c call=108 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1414.35,-763.163,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1124434688/0x43058300 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer result call=110 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer 0x44cc7c call=114 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1359.35,-647.385,5.8849,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108920064/0x4218c700 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer result call=103 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2949025584/0xafc68f30 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.186 edgeCostMax=3.095 edgeCostAvg=1.307 edgeSrcClasses=[3:5,15:3] edgeDstClasses=[3:4,15:3,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=1.026 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.571 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>3 cost=0.595 ret=0x44f457 cur=0x100000a700172 dst=0x100000a70016e;4:3>15 cost=1.627 ret=0x44f457 cur=0x100000a700172 dst=0x100000a700177;5:15>15 cost=3.095 ret=0x44f457 cur=0x100000a700177 dst=0x1000008a0000f;6:15>255 cost=0.499 ret=0x44f629 cur=0x1000008a0000f dst=0x0;7:15>15 cost=1.859 ret=0x44f457 cur=0x100000a700177 dst=0x100000a700178]
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer 0x44cc7c call=115 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1418.28,-741.637,11.6251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117863168/0x42a13d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer 0x44cc7c call=113 graph=0x591db1080 query=0x31bf70 outResult=0x31c0d0 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.18,-647.319,5.81129,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer result call=108 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.274 +58274ms hook GPSRouteProducer 0x44cc7c call=117 graph=0x591db1080 query=0x79bfdfc0 outResult=0x79bfe120 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.15,-648.684,7.78455,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.274 +58274ms hook GPSRouteProducer 0x44cc7c call=116 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1415.22,-744.207,11.6254,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1115694080/0x42802400 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
2026-06-21 03:15:44.274 +58274ms hook GPSSearch 0x44f054 call=100 startHandle=0x100000ac000c4 targetHandle=0x1000008f00064 graph=0x1a18269c0 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1325.15,7.86573,-641.489) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=111 ret_rva=0x44d117
2026-06-21 03:15:44.274 +58274ms hook GPSSearch 0x44f054 call=98 startHandle=0x100000c900087 targetHandle=0x100000c900026 graph=0x1a1826790 startPoint=(-1285,8.4,-702.7) targetPoint=(-1295.04,7.84026,-708.012) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=104 ret_rva=0x44d117
2026-06-21 03:15:44.278 +58278ms hook GPSSearch result call=100 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=44 filterPass=44 filterFail=0 filterBase=0 filterFiltered=44 filterPassClasses=[3:32,5:6,15:6] filterFailClasses=[none] filterPassMaskBits=[0:44,1:44] filterFailMaskBits=[none]
2026-06-21 03:15:44.280 +58280ms hook GPSSearch result call=98 value=0x40000000 hasOutCount=1 outCount=16 filterCalls=33 filterPass=33 filterFail=0 filterBase=33 filterFiltered=0 filterPassClasses=[3:11,5:14,15:8] filterFailClasses=[none] filterPassMaskBits=[0:33,1:33] filterFailMaskBits=[none]
2026-06-21 03:15:44.280 +58280ms hook GPSRouteProducer result call=116 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer result call=104 value=0x42ae6120 out_u0c=16/0x10 out_u1c=1/0x1 out_u20=2919658256/0xae067310 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.063 edgeCostMax=2.103 edgeCostAvg=1.011 edgeSrcClasses=[3:13,5:11,15:10] edgeDstClasses=[3:11,5:14,15:8,invalid:1] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.051 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=0.507 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>5 cost=1.931 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90005a;3:3>3 cost=0.375 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90008a;4:3>3 cost=0.961 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;5:3>3 cost=1.273 ret=0x44f457 cur=0x100000c90008a dst=0x100000c90008b;6:3>3 cost=1.756 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;7:3>3 cost=0.706 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900089]
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer 0x44cc7c call=118 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1403.37,-748.971,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1112760832/0x42536200 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer result call=111 value=0x42ae6120 out_u0c=23/0x17 out_u1c=7/0x7 out_u20=2522885824/0x96602ec0 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=45 edgeCostMin=0.010 edgeCostMax=19.261 edgeCostAvg=2.678 edgeSrcClasses=[3:32,5:5,15:8] edgeDstClasses=[3:32,5:6,15:6,invalid:1] edgeRetRvas=[0x44f457:44,0x44f629:1] edgeSamples=[0:3>3 cost=2.641 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.094 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=2.275 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=0.179 ret=0x44f457 cur=0x100000ac000be dst=0x100000ac000bb;4:3>3 cost=0.109 ret=0x44f457 cur=0x100000ac000bb dst=0x100000ac000ba;5:3>3 cost=2.799 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;6:3>3 cost=4.447 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;7:3>3 cost=0.487 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb]
2026-06-21 03:15:44.292 +58292ms hook GPSSearch 0x44f054 call=102 startHandle=0x100000850004d targetHandle=0x1000008a00010 graph=0x1a1826b10 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1359.35,6.28622,-647.385) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=114 ret_rva=0x44d117
2026-06-21 03:15:44.293 +58293ms hook GPSSearch result call=102 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:6,15:1] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:44.302 +58302ms hook GPSSearch 0x44f054 call=104 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a1826aa0 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.18,6.1,-647.319) outPath=0x31b0e0 outCount=0x319de0 provider=0x31adf0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=113 ret_rva=0x44d117
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer 0x44cc7c call=119 graph=0x591db1080 query=0x794bdfc0 outResult=0x794be120 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.7,-645.733,8.24656,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer result call=118 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer result call=114 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.433 edgeCostMax=1.774 edgeCostAvg=1.133 edgeSrcClasses=[3:7,15:1] edgeDstClasses=[3:6,15:1,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.269 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.500 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.774 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.643 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=0.866 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.471 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>255 cost=0.433 ret=0x44f629 cur=0x1000008a00010 dst=0x0]
2026-06-21 03:15:44.303 +58303ms hook GPSSearch 0x44f054 call=103 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1418.28,11.8,-741.637) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=115 ret_rva=0x44d117
2026-06-21 03:15:44.304 +58304ms hook GPSSearch 0x44f054 call=105 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a18268e0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.15,7.9,-648.684) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=117 ret_rva=0x44d117
2026-06-21 03:15:44.304 +58304ms hook GPSSearch result call=104 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:44.304 +58304ms hook GPSSearch result call=105 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.305 +58305ms hook GPSSearch result call=103 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.305 +58305ms hook GPSRouteProducer result call=117 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207976/0xb0342768 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.114 edgeCostMax=2.010 edgeCostAvg=1.343 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.114 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.608 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=1.641 ret=0x44f629 cur=0x100000a70017d dst=0x0]
2026-06-21 03:15:44.306 +58306ms hook GPSRouteProducer result call=115 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.675 edgeCostMax=10.321 edgeCostAvg=4.493 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.675 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=1.491 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=10.321 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.308 +58308ms hook GPSRouteProducer 0x44cc7c call=121 graph=0x591db1080 query=0x797fdfc0 outResult=0x797fe120 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1406,-741.425,11.7515,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.308 +58308ms hook GPSSearch result call=101 value=0x40000000 hasOutCount=1 outCount=84 filterCalls=785 filterPass=785 filterFail=0 filterBase=0 filterFiltered=785 filterPassClasses=[1:3,3:741,15:41] filterFailClasses=[none] filterPassMaskBits=[0:785,1:785] filterFailMaskBits=[none]
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=107 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1406,11.8,-741.425) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=121 ret_rva=0x44d117
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer 0x44cc7c call=120 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1352.77,-633.825,7.67654,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158876928/0x45130f00 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer result call=112 value=0x42ae6120 out_u0c=74/0x4a out_u1c=51/0x33 out_u20=3256597344/0xc21bbb60 out_u24=5/0x5 out_u2c=51/0x33 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=786 edgeCostMin=0.000 edgeCostMax=15.427 edgeCostAvg=1.321 edgeSrcClasses=[1:3,3:741,15:42] edgeDstClasses=[1:3,3:741,15:41,invalid:1] edgeRetRvas=[0x44f457:785,0x44f629:1] edgeSamples=[0:3>3 cost=1.158 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.639 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.681 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=1.692 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233;4:3>3 cost=0.358 ret=0x44f457 cur=0x1000009e00233 dst=0x1000009e0024c;5:3>3 cost=1.806 ret=0x44f457 cur=0x1000009e0024c dst=0x1000009e0024b;6:3>3 cost=3.406 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;7:3>3 cost=2.298 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268]
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=108 startHandle=0x100000850004d targetHandle=0x1000008a0014a graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1352.77,7.79621,-633.825) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=120 ret_rva=0x44d117
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=106 startHandle=0x100000ac000c4 targetHandle=0x1000008f0001c graph=0x1a1826b10 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.7,8.5,-645.733) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=119 ret_rva=0x44d117
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer 0x44cc7c call=122 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1399.68,-796.178,7.59665,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099296256/0x4185ee00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer result call=113 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250920704/0x862a5300 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.301 edgeCostMax=2.193 edgeCostAvg=1.036 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.301 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.444 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.071 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.193 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.924 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.368 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.141 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.369 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
2026-06-21 03:15:44.310 +58310ms hook GPSSearch result call=107 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.313 +58313ms hook GPSSearch result call=106 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=23 filterPass=23 filterFail=0 filterBase=23 filterFiltered=0 filterPassClasses=[3:23] filterFailClasses=[none] filterPassMaskBits=[0:23,1:23] filterFailMaskBits=[none]
2026-06-21 03:15:44.313 +58313ms hook GPSRouteProducer result call=119 value=0x42ae6120 out_u0c=15/0xf out_u1c=4/0x4 out_u20=2923359280/0xae3eec30 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=24 edgeCostMin=0.050 edgeCostMax=16.803 edgeCostAvg=3.012 edgeSrcClasses=[3:24] edgeDstClasses=[3:23,invalid:1] edgeRetRvas=[0x44f457:23,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.256 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.772 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.267 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=4.055 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=0.678 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.050 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=1.444 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
2026-06-21 03:15:44.313 +58313ms hook GPSRouteProducer result call=121 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.749 edgeCostMax=5.488 edgeCostAvg=2.671 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.749 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=3.046 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.399 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:44.314 +58314ms hook GPSSearch result call=108 value=0x40000000 hasOutCount=1 outCount=31 filterCalls=95 filterPass=95 filterFail=0 filterBase=0 filterFiltered=95 filterPassClasses=[3:76,4:1,5:8,15:10] filterFailClasses=[none] filterPassMaskBits=[0:95,1:95] filterFailMaskBits=[none]
2026-06-21 03:15:44.314 +58314ms hook GPSSearch 0x44f054 call=109 startHandle=0x1000009e00235 targetHandle=0x100000990006e graph=0x1a18268e0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1399.68,7.6,-796.178) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=122 ret_rva=0x44d117
2026-06-21 03:15:44.314 +58314ms hook GPSRouteProducer result call=120 value=0x42ae6120 out_u0c=20/0x14 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=96 edgeCostMin=0.000 edgeCostMax=6.639 edgeCostAvg=1.177 edgeSrcClasses=[3:73,4:1,5:9,15:13] edgeDstClasses=[3:76,4:1,5:8,15:10,invalid:1] edgeRetRvas=[0x44f457:95,0x44f629:1] edgeSamples=[0:3>3 cost=1.061 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.184 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.616 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.551 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=0.031 ret=0x44f457 cur=0x100000850004b dst=0x100000850004a;5:3>3 cost=0.181 ret=0x44f457 cur=0x100000850004a dst=0x1000008500045;6:3>3 cost=1.692 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;7:3>3 cost=0.664 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000]
2026-06-21 03:15:44.334 +58334ms hook GPSRouteProducer 0x44cc7c call=123 graph=0x591db1080 query=0x796bdfc0 outResult=0x796be120 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1359.35,-647.385,5.8849,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.337 +58337ms hook GPSSearch result call=109 value=0x40000000 hasOutCount=1 outCount=76 filterCalls=646 filterPass=646 filterFail=0 filterBase=0 filterFiltered=646 filterPassClasses=[3:629,15:17] filterFailClasses=[none] filterPassMaskBits=[0:646,1:646] filterFailMaskBits=[none]
2026-06-21 03:15:44.337 +58337ms hook GPSSearch 0x44f054 call=110 startHandle=0x100000850004d targetHandle=0x1000008a00010 graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1359.35,6.28622,-647.385) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=123 ret_rva=0x44d117
2026-06-21 03:15:44.338 +58338ms hook GPSRouteProducer result call=122 value=0x42ae6120 out_u0c=62/0x3e out_u1c=39/0x27 out_u20=3256597616/0xc21bbc70 out_u24=5/0x5 out_u2c=39/0x27 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=647 edgeCostMin=0.000 edgeCostMax=11.901 edgeCostAvg=1.256 edgeSrcClasses=[3:627,15:20] edgeDstClasses=[3:629,15:17,invalid:1] edgeRetRvas=[0x44f457:646,0x44f629:1] edgeSamples=[0:3>3 cost=1.612 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.740 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.453 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=3.948 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;4:3>3 cost=3.347 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268;5:3>3 cost=0.084 ret=0x44f457 cur=0x10000099000ea dst=0x10000099000e9;6:3>3 cost=0.156 ret=0x44f457 cur=0x10000099000e9 dst=0x10000099000e8;7:3>3 cost=0.685 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233]
2026-06-21 03:15:44.338 +58338ms hook GPSSearch result call=110 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[3:6,15:1] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:44.338 +58338ms hook GPSRouteProducer 0x44cc7c call=124 graph=0x591db1080 query=0x798fdfc0 outResult=0x798fe120 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1390.83,-788.084,11.7671,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:44.339 +58339ms hook GPSRouteProducer result call=123 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.433 edgeCostMax=1.774 edgeCostAvg=1.133 edgeSrcClasses=[3:7,15:1] edgeDstClasses=[3:6,15:1,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.269 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.500 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.774 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.643 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=0.866 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.471 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>255 cost=0.433 ret=0x44f629 cur=0x1000008a00010 dst=0x0]
2026-06-21 03:15:44.339 +58339ms hook GPSSearch 0x44f054 call=111 startHandle=0x1000009e00235 targetHandle=0x1000009e00266 graph=0x1a1826950 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1390.83,11.8,-788.084) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=124 ret_rva=0x44d117
2026-06-21 03:15:44.339 +58339ms hook GPSSearch result call=111 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:44.339 +58339ms hook GPSRouteProducer result call=124 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964924480/0xb0b92840 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.724 edgeCostMax=1.957 edgeCostAvg=1.220 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.724 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.367 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>255 cost=1.957 ret=0x44f629 cur=0x1000009e00266 dst=0x0]
2026-06-21 03:15:44.387 +58387ms hook GPSRouteProducer 0x44cc7c call=125 graph=0x591db1080 query=0x794bf8c0 outResult=0x794bf860 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1411.65,-746.178,11.6512,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=3185773264/0xbde30ad0 ret_rva=0x6517d1
2026-06-21 03:15:44.387 +58387ms hook GPSSearch 0x44f054 call=112 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826950 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1411.65,11.8,-746.178) outPath=0x794be980 outCount=0x794bd680 provider=0x794bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=125 ret_rva=0x44d117
2026-06-21 03:15:44.388 +58388ms hook GPSSearch result call=112 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:44.388 +58388ms hook GPSRouteProducer result call=125 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2941379040/0xaf51e1e0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:44.389 +58389ms hook GPSRouteProducer 0x44cc7c call=126 graph=0x591db1080 query=0x794bf8c0 outResult=0x794bf860 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1316.45,-707.932,7.52451,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=3046958896/0xb59ce730 ret_rva=0x6517d1
2026-06-21 03:15:44.389 +58389ms hook GPSSearch 0x44f054 call=113 startHandle=0x100000ab00057 targetHandle=0x100000ab0003a graph=0x1a1826950 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1316.45,7.9,-707.932) outPath=0x794be980 outCount=0x794bd680 provider=0x794bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=126 ret_rva=0x44d117
2026-06-21 03:15:44.390 +58390ms hook GPSSearch result call=113 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=14 filterPass=14 filterFail=0 filterBase=0 filterFiltered=14 filterPassClasses=[5:11,15:3] filterFailClasses=[none] filterPassMaskBits=[0:14,1:14] filterFailMaskBits=[none]
2026-06-21 03:15:44.391 +58391ms hook GPSRouteProducer result call=126 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.229 edgeCostMax=2.724 edgeCostAvg=1.622 edgeSrcClasses=[5:15] edgeDstClasses=[5:11,15:3,invalid:1] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:5>5 cost=1.368 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.757 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.376 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.890 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.229 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.410 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.819 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
2026-06-21 03:15:46.456 +60456ms hook GPSRouteProducer 0x44cc7c call=127 graph=0x591db1080 query=0x797ff880 outResult=0x797ff810 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1314.84,-670.629,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2038430160/0x797ff9d0 ret_rva=0x6517d1
2026-06-21 03:15:46.457 +60457ms hook GPSSearch 0x44f054 call=114 startHandle=0x100000ac00032 targetHandle=0x100000ac00030 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1315.36,8.5,-670.654) outPath=0x797fe940 outCount=0x797fd640 provider=0x797fdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=127 ret_rva=0x44d117
2026-06-21 03:15:46.457 +60457ms hook GPSSearch result call=114 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:46.458 +60458ms hook GPSRouteProducer result call=127 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.148 edgeCostMax=6.435 edgeCostAvg=2.636 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.196 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>3 cost=0.729 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b;3:3>3 cost=4.805 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;4:3>3 cost=3.501 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00030;5:3>255 cost=0.148 ret=0x44f629 cur=0x100000ac00030 dst=0x0]
2026-06-21 03:15:46.458 +60458ms hook GPSRouteProducer 0x44cc7c call=128 graph=0x591db1080 query=0x797ff430 outResult=0x797ff5d8 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.91,-667.619,8.2223,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:46.458 +60458ms hook GPSSearch 0x44f054 call=115 startHandle=0x100000ac00030 targetHandle=0x100000ac00056 graph=0x1a1826b10 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.91,8.5,-667.619) outPath=0x797fe5a0 outCount=0x797fd2a0 provider=0x797fe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=128 ret_rva=0x44d117
2026-06-21 03:15:46.459 +60459ms hook GPSSearch result call=115 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:46.459 +60459ms hook GPSRouteProducer result call=128 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2913715936/0xadabc6e0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.122 edgeCostMax=6.288 edgeCostAvg=1.990 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.122 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.836 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.239 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=1.437 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.288 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.840 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>255 cost=0.172 ret=0x44f629 cur=0x100000ac00056 dst=0x0]
2026-06-21 03:15:46.459 +60459ms hook GPSRouteProducer 0x44cc7c call=129 graph=0x591db1080 query=0x797ff040 outResult=0x797ff1a0 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1314.84,-670.629,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:46.460 +60460ms hook GPSSearch 0x44f054 call=116 startHandle=0x100000ac00032 targetHandle=0x100000ac00030 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1315.36,8.5,-670.654) outPath=0x797fe1b0 outCount=0x797fceb0 provider=0x797fdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=129 ret_rva=0x44d117
2026-06-21 03:15:46.460 +60460ms hook GPSSearch result call=116 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:46.460 +60460ms hook GPSRouteProducer result call=129 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.148 edgeCostMax=6.435 edgeCostAvg=2.636 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.196 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>3 cost=0.729 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b;3:3>3 cost=4.805 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;4:3>3 cost=3.501 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00030;5:3>255 cost=0.148 ret=0x44f629 cur=0x100000ac00030 dst=0x0]
2026-06-21 03:15:46.466 +60466ms hook GPSRouteProducer 0x44cc7c call=130 graph=0x591db1080 query=0x796bf8c0 outResult=0x796bf860 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1316.34,-671.294,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:46.466 +60466ms hook GPSSearch 0x44f054 call=117 startHandle=0x100000ac00032 targetHandle=0x100000ac00031 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1316.34,8.5,-671.294) outPath=0x796be980 outCount=0x796bd680 provider=0x796bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=130 ret_rva=0x44d117
2026-06-21 03:15:46.467 +60467ms hook GPSSearch result call=117 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:46.467 +60467ms hook GPSRouteProducer result call=130 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.209 edgeCostMax=6.435 edgeCostAvg=2.513 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.209 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>255 cost=2.721 ret=0x44f629 cur=0x100000ac00031 dst=0x0;3:3>3 cost=0.686 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b]
2026-06-21 03:15:46.725 +60725ms hook GPSRouteProducer 0x44cc7c call=131 graph=0x591db1080 query=0x794bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.36,7.96167,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:15:46.726 +60726ms hook GPSRouteProducer result call=131 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2940830848/0xaf498480 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.872 edgeCostAvg=0.947 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.693 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.872 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.871 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:15:47.396 +61396ms hook GPSRouteProducer 0x44cc7c call=132 graph=0x591db1080 query=0x796bf880 outResult=0x796bf810 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1401.43,-767.157,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2037119440/0x796bf9d0 ret_rva=0x6517d1
2026-06-21 03:15:47.397 +61397ms hook GPSSearch 0x44f054 call=118 startHandle=0x1000009a00210 targetHandle=0x1000009a00274 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1401.42,11.8,-766.826) outPath=0x796be940 outCount=0x796bd640 provider=0x796bdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=132 ret_rva=0x44d117
2026-06-21 03:15:47.397 +61397ms hook GPSSearch result call=118 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:47.397 +61397ms hook GPSRouteProducer result call=132 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2917376720/0xade3a2d0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.041 edgeCostMax=3.703 edgeCostAvg=1.387 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.842 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>3 cost=3.703 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00274;4:3>255 cost=1.250 ret=0x44f629 cur=0x1000009a00274 dst=0x0;5:3>3 cost=2.398 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e]
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer 0x44cc7c call=133 graph=0x591db1080 query=0x796bf430 outResult=0x796bf5d8 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1398.62,-765.062,11.7559,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:47.398 +61398ms hook GPSSearch 0x44f054 call=119 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a18268e0 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1398.62,11.8322,-765.062) outPath=0x796be5a0 outCount=0x796bd2a0 provider=0x796be2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=133 ret_rva=0x44d117
2026-06-21 03:15:47.398 +61398ms hook GPSSearch result call=119 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=2 filterFiltered=0 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer result call=133 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2977629824/0xb17b0680 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.455 edgeCostMax=3.525 edgeCostAvg=2.276 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.849 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=1.455 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer 0x44cc7c call=134 graph=0x591db1080 query=0x796bf040 outResult=0x796bf1a0 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1401.43,-767.157,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:47.399 +61399ms hook GPSSearch 0x44f054 call=120 startHandle=0x1000009a00210 targetHandle=0x1000009a00274 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1401.42,11.8,-766.826) outPath=0x796be1b0 outCount=0x796bceb0 provider=0x796bdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=134 ret_rva=0x44d117
2026-06-21 03:15:47.399 +61399ms hook GPSSearch result call=120 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:47.399 +61399ms hook GPSRouteProducer result call=134 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2917358832/0xade35cf0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.041 edgeCostMax=3.703 edgeCostAvg=1.387 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.842 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>3 cost=3.703 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00274;4:3>255 cost=1.250 ret=0x44f629 cur=0x1000009a00274 dst=0x0;5:3>3 cost=2.398 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e]
2026-06-21 03:15:47.403 +61403ms hook GPSRouteProducer 0x44cc7c call=135 graph=0x591db1080 query=0x797ff8c0 outResult=0x797ff860 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1402.49,-766.232,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:47.403 +61403ms hook GPSSearch 0x44f054 call=121 startHandle=0x1000009a00210 targetHandle=0x1000009a00211 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1402.49,11.8289,-766.232) outPath=0x797fe980 outCount=0x797fd680 provider=0x797fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=135 ret_rva=0x44d117
2026-06-21 03:15:47.403 +61403ms hook GPSSearch result call=121 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:47.404 +61404ms hook GPSRouteProducer result call=135 value=0x42ae6120 out_u0c=4/0x4 out_u1c=2/0x2 out_u20=2970898624/0xb11450c0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.041 edgeCostMax=3.723 edgeCostAvg=1.175 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.845 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>255 cost=3.723 ret=0x44f629 cur=0x1000009a00211 dst=0x0]
2026-06-21 03:15:47.731 +61731ms hook GPSRouteProducer 0x44cc7c call=136 graph=0x591db1080 query=0x795bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96503,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:15:47.731 +61731ms hook GPSRouteProducer result call=136 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2962725344/0xb09799e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:15:48.515 +62515ms hook GPSRouteProducer 0x44cc7c call=137 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.91,-666.497,8.22225,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096561664/0x415c3400 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
2026-06-21 03:15:48.515 +62515ms hook GPSSearch 0x44f054 call=122 startHandle=0x100000ac00030 targetHandle=0x100000ac0004e graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.91,8.5,-666.497) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=137 ret_rva=0x44d117
2026-06-21 03:15:48.516 +62516ms hook GPSSearch result call=122 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:48.516 +62516ms hook GPSRouteProducer result call=137 value=0x42ae6120 out_u0c=7/0x7 out_u1c=2/0x2 out_u20=2889992336/0xac41c890 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.156 edgeCostMax=6.394 edgeCostAvg=1.886 edgeSrcClasses=[3:8] edgeDstClasses=[3:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.755 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.256 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=0.667 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.394 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.676 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>3 cost=0.544 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;7:3>255 cost=1.639 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
2026-06-21 03:15:48.516 +62516ms hook GPSRouteProducer 0x44cc7c call=138 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.96,-674.416,8.22251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1093079040/0x41271000 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
2026-06-21 03:15:48.517 +62517ms hook GPSSearch 0x44f054 call=123 startHandle=0x100000ac00030 targetHandle=0x100000ac00032 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.96,8.5,-674.416) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=138 ret_rva=0x44d117
2026-06-21 03:15:48.517 +62517ms hook GPSSearch result call=123 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:48.517 +62517ms hook GPSRouteProducer result call=138 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.154 edgeCostMax=3.909 edgeCostAvg=1.999 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=3.909 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=3.506 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>255 cost=0.428 ret=0x44f629 cur=0x100000ac00032 dst=0x0]
2026-06-21 03:15:48.517 +62517ms hook GPSRouteProducer 0x44cc7c call=139 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1317.61,-666.499,8.22225,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1110801152/0x42357b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
2026-06-21 03:15:48.518 +62518ms hook GPSSearch 0x44f054 call=124 startHandle=0x100000ac00030 targetHandle=0x100000ac00056 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1317.61,8.5,-666.499) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=139 ret_rva=0x44d117
2026-06-21 03:15:48.518 +62518ms hook GPSSearch result call=124 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:48.518 +62518ms hook GPSRouteProducer result call=139 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2913709960/0xadabaf88 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.116 edgeCostMax=6.264 edgeCostAvg=2.175 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.116 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.855 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.236 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=1.737 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.264 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.876 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>255 cost=1.141 ret=0x44f629 cur=0x100000ac00056 dst=0x0]
2026-06-21 03:15:48.518 +62518ms hook GPSRouteProducer 0x44cc7c call=140 graph=0x591db1080 query=0x797ff140 outResult=0x797ff2a0 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.96,-674.416,8.22251,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:48.519 +62519ms hook GPSSearch 0x44f054 call=125 startHandle=0x100000ac00030 targetHandle=0x100000ac00032 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.96,8.5,-674.416) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=140 ret_rva=0x44d117
2026-06-21 03:15:48.519 +62519ms hook GPSSearch result call=125 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:48.519 +62519ms hook GPSRouteProducer result call=140 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.154 edgeCostMax=3.909 edgeCostAvg=1.999 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=3.909 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=3.506 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>255 cost=0.428 ret=0x44f629 cur=0x100000ac00032 dst=0x0]
2026-06-21 03:15:50.055 +64055ms hook GPSRouteProducer 0x44cc7c call=141 graph=0x591db1080 query=0x798ff880 outResult=0x798ff810 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1403.37,-704.101,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2039478736/0x798ff9d0 ret_rva=0x6517d1
2026-06-21 03:15:50.055 +64055ms hook GPSSearch 0x44f054 call=126 startHandle=0x1000009c0004d targetHandle=0x1000009c00038 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1403.37,7.9,-704.5) outPath=0x798fe940 outCount=0x798fd640 provider=0x798fdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=141 ret_rva=0x44d117
2026-06-21 03:15:50.056 +64056ms hook GPSSearch result call=126 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[4:1,5:10] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:50.056 +64056ms hook GPSRouteProducer result call=141 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2825360384/0xa8679400 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.084 edgeCostMax=5.610 edgeCostAvg=1.952 edgeSrcClasses=[5:12] edgeDstClasses=[4:1,5:10,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=0.576 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.228 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.231 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.628 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.829 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.584 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>5 cost=4.499 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056]
2026-06-21 03:15:50.057 +64057ms hook GPSRouteProducer 0x44cc7c call=142 graph=0x591db1080 query=0x798ff430 outResult=0x798ff5d8 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1400.45,-707.146,7.79857,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:50.057 +64057ms hook GPSSearch 0x44f054 call=127 startHandle=0x1000009c00038 targetHandle=0x1000009c0002f graph=0x1a18268e0 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1400.45,7.9,-707.146) outPath=0x798fe5a0 outCount=0x798fd2a0 provider=0x798fe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=142 ret_rva=0x44d117
2026-06-21 03:15:50.057 +64057ms hook GPSSearch result call=127 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[5:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:50.058 +64058ms hook GPSRouteProducer result call=142 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2880744592/0xabb4ac90 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.709 edgeCostMax=2.965 edgeCostAvg=1.725 edgeSrcClasses=[5:4] edgeDstClasses=[5:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:5>5 cost=2.253 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.709 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>255 cost=0.974 ret=0x44f629 cur=0x1000009c0002f dst=0x0]
2026-06-21 03:15:50.058 +64058ms hook GPSRouteProducer 0x44cc7c call=143 graph=0x591db1080 query=0x798ff040 outResult=0x798ff1a0 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1403.37,-704.101,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:50.058 +64058ms hook GPSSearch 0x44f054 call=128 startHandle=0x1000009c0004d targetHandle=0x1000009c00038 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1403.37,7.9,-704.5) outPath=0x798fe1b0 outCount=0x798fceb0 provider=0x798fdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=143 ret_rva=0x44d117
2026-06-21 03:15:50.059 +64059ms hook GPSSearch result call=128 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[4:1,5:10] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:50.059 +64059ms hook GPSRouteProducer result call=143 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2825360384/0xa8679400 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.084 edgeCostMax=5.610 edgeCostAvg=1.952 edgeSrcClasses=[5:12] edgeDstClasses=[4:1,5:10,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=0.576 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.228 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.231 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.628 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.829 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.584 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>5 cost=4.499 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056]
2026-06-21 03:15:50.063 +64063ms hook GPSRouteProducer 0x44cc7c call=144 graph=0x591db1080 query=0x799ff8c0 outResult=0x799ff860 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1404.19,-704.857,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:50.063 +64063ms hook GPSSearch 0x44f054 call=129 startHandle=0x1000009c0004d targetHandle=0x1000009c00058 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1404.19,7.9,-704.857) outPath=0x799fe980 outCount=0x799fd680 provider=0x799fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=144 ret_rva=0x44d117
2026-06-21 03:15:50.064 +64064ms hook GPSSearch result call=129 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[5:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:50.064 +64064ms hook GPSRouteProducer result call=144 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2911808448/0xad8eabc0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.211 edgeCostMax=4.553 edgeCostAvg=1.889 edgeSrcClasses=[5:9] edgeDstClasses=[5:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:5>5 cost=0.578 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.259 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.233 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.622 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.877 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.548 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>255 cost=0.211 ret=0x44f629 cur=0x1000009c00058 dst=0x0]
2026-06-21 03:15:50.072 +64072ms hook GPSRouteProducer 0x44cc7c call=145 graph=0x591db1080 query=0x79e7f920 outResult=0x79e7f8b0 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.15,-690.519,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2045246064/0x79e7fa70 ret_rva=0x6517d1
2026-06-21 03:15:50.072 +64072ms hook GPSSearch 0x44f054 call=130 startHandle=0x100000ab0013b targetHandle=0x100000ab00135 graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.15,7.9,-690.519) outPath=0x79e7e9e0 outCount=0x79e7d6e0 provider=0x79e7dbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=145 ret_rva=0x44d117
2026-06-21 03:15:50.073 +64073ms hook GPSSearch result call=130 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[5:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:50.073 +64073ms hook GPSRouteProducer result call=145 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928827424/0xae925c20 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.091 edgeCostMax=10.744 edgeCostAvg=3.289 edgeSrcClasses=[5:12] edgeDstClasses=[5:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=4.943 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab0016d;1:5>5 cost=1.811 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;2:5>5 cost=0.561 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;3:5>5 cost=0.719 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab00155;4:5>5 cost=5.955 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab000ca;5:5>5 cost=2.506 ret=0x44f457 cur=0x100000ab00155 dst=0x100000ab000c9;6:5>5 cost=10.744 ret=0x44f457 cur=0x100000ab00008 dst=0x100000a6000c2;7:5>5 cost=9.663 ret=0x44f457 cur=0x100000ab00008 dst=0x100000ab000c5]
2026-06-21 03:15:50.074 +64074ms hook GPSRouteProducer 0x44cc7c call=146 graph=0x591db1080 query=0x79e7f4d0 outResult=0x79e7f678 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.71,-687.498,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:50.074 +64074ms hook GPSSearch 0x44f054 call=131 startHandle=0x100000ab00135 targetHandle=0x100000ab0013f graph=0x1a1826a30 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.71,7.9,-687.498) outPath=0x79e7e640 outCount=0x79e7d340 provider=0x79e7e350 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=146 ret_rva=0x44d117
2026-06-21 03:15:50.075 +64075ms hook GPSSearch result call=131 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:50.075 +64075ms hook GPSRouteProducer result call=146 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2862734096/0xaaa1db10 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.244 edgeCostMax=1.523 edgeCostAvg=0.766 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.244 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.786 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.523 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.634 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.374 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f;5:5>255 cost=1.035 ret=0x44f629 cur=0x100000ab0013f dst=0x0]
2026-06-21 03:15:50.075 +64075ms hook GPSRouteProducer 0x44cc7c call=147 graph=0x591db1080 query=0x79e7f0e0 outResult=0x79e7f240 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.15,-690.519,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:50.075 +64075ms hook GPSSearch 0x44f054 call=132 startHandle=0x100000ab0013b targetHandle=0x100000ab00135 graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.15,7.9,-690.519) outPath=0x79e7e250 outCount=0x79e7cf50 provider=0x79e7df60 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=147 ret_rva=0x44d117
2026-06-21 03:15:50.077 +64077ms hook GPSSearch result call=132 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[5:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:50.077 +64077ms hook GPSRouteProducer result call=147 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928821808/0xae924630 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.091 edgeCostMax=10.744 edgeCostAvg=3.289 edgeSrcClasses=[5:12] edgeDstClasses=[5:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=4.943 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab0016d;1:5>5 cost=1.811 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;2:5>5 cost=0.561 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;3:5>5 cost=0.719 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab00155;4:5>5 cost=5.955 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab000ca;5:5>5 cost=2.506 ret=0x44f457 cur=0x100000ab00155 dst=0x100000ab000c9;6:5>5 cost=10.744 ret=0x44f457 cur=0x100000ab00008 dst=0x100000a6000c2;7:5>5 cost=9.663 ret=0x44f457 cur=0x100000ab00008 dst=0x100000ab000c5]
2026-06-21 03:15:50.080 +64080ms hook GPSRouteProducer 0x44cc7c call=148 graph=0x591db1080 query=0x796bf8c0 outResult=0x796bf860 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.86,-691.244,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:50.081 +64081ms hook GPSSearch 0x44f054 call=133 startHandle=0x100000ab0013b targetHandle=0x100000ab0013b graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.86,7.9,-691.244) outPath=0x796be980 outCount=0x796bd680 provider=0x796bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=148 ret_rva=0x44d117
2026-06-21 03:15:50.081 +64081ms hook GPSSearch result call=133 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:50.081 +64081ms hook GPSRouteProducer result call=148 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2943889800/0xaf783188 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:50.245 +64245ms hook GPSRouteProducer 0x44cc7c call=149 graph=0x591db1080 query=0x31d820 outResult=0x31d7b0 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412,-742.531,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3266928/0x31d970 ret_rva=0x6517d1
2026-06-21 03:15:50.245 +64245ms hook GPSSearch 0x44f054 call=134 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412,11.8,-742.531) outPath=0x31c8e0 outCount=0x31b5e0 provider=0x31bad0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=149 ret_rva=0x44d117
2026-06-21 03:15:50.246 +64246ms hook GPSSearch result call=134 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:50.246 +64246ms hook GPSRouteProducer result call=149 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:50.246 +64246ms hook GPSRouteProducer 0x44cc7c call=150 graph=0x591db1080 query=0x31d3d0 outResult=0x31d578 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1410.23,-746.659,11.6693,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:50.247 +64247ms hook GPSSearch 0x44f054 call=135 startHandle=0x1000009b00076 targetHandle=0x1000009a003a4 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1410.23,11.8,-746.659) outPath=0x31c540 outCount=0x31b240 provider=0x31c250 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=150 ret_rva=0x44d117
2026-06-21 03:15:50.247 +64247ms hook GPSSearch result call=135 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:50.248 +64248ms hook GPSRouteProducer result call=150 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2250404192/0x86227160 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.117 edgeCostMax=9.872 edgeCostAvg=3.843 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=6.773 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;2:3>3 cost=2.614 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078;3:3>3 cost=0.117 ret=0x44f457 cur=0x1000009b00078 dst=0x1000009b00077;4:3>3 cost=0.174 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009a003a4;5:3>255 cost=1.588 ret=0x44f629 cur=0x1000009a003a4 dst=0x0;6:3>3 cost=9.872 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b]
2026-06-21 03:15:50.248 +64248ms hook GPSRouteProducer 0x44cc7c call=151 graph=0x591db1080 query=0x31cfe0 outResult=0x31d140 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412,-742.531,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:50.248 +64248ms hook GPSSearch 0x44f054 call=136 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412,11.8,-742.531) outPath=0x31c150 outCount=0x31ae50 provider=0x31be60 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=151 ret_rva=0x44d117
2026-06-21 03:15:50.249 +64249ms hook GPSSearch result call=136 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:50.249 +64249ms hook GPSRouteProducer result call=151 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:50.252 +64252ms hook GPSRouteProducer 0x44cc7c call=152 graph=0x591db1080 query=0x793bf8c0 outResult=0x793bf860 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412.68,-742.428,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:50.253 +64253ms hook GPSSearch 0x44f054 call=137 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412.68,11.8,-742.428) outPath=0x793be980 outCount=0x793bd680 provider=0x793bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=152 ret_rva=0x44d117
2026-06-21 03:15:50.253 +64253ms hook GPSSearch result call=137 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:50.253 +64253ms hook GPSRouteProducer result call=152 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:51.037 +65037ms hook GPSRouteProducer 0x44cc7c call=153 graph=0x591db1080 query=0x795bf880 outResult=0x795bf810 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.93,-662.119,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2036070864/0x795bf9d0 ret_rva=0x6517d1
2026-06-21 03:15:51.038 +65038ms hook GPSSearch 0x44f054 call=138 startHandle=0x100000ac00058 targetHandle=0x100000ac00038 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.93,8.5,-662.119) outPath=0x795be940 outCount=0x795bd640 provider=0x795bdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=153 ret_rva=0x44d117
2026-06-21 03:15:51.039 +65039ms hook GPSSearch result call=138 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:51.039 +65039ms hook GPSRouteProducer result call=153 value=0x42ae6120 out_u0c=9/0x9 out_u1c=4/0x4 out_u20=2869746752/0xab0cdc40 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.080 edgeCostMax=3.577 edgeCostAvg=1.415 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.093 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.331 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.204 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.121 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.602 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.577 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.303 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
2026-06-21 03:15:51.039 +65039ms hook GPSRouteProducer 0x44cc7c call=154 graph=0x591db1080 query=0x795bf430 outResult=0x795bf5d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.89,-659.112,8.22555,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:51.039 +65039ms hook GPSSearch 0x44f054 call=139 startHandle=0x100000ac00038 targetHandle=0x100000ac0007a graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.89,8.5,-659.112) outPath=0x795be5a0 outCount=0x795bd2a0 provider=0x795be2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=154 ret_rva=0x44d117
2026-06-21 03:15:51.040 +65040ms hook GPSSearch result call=139 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=9 filterFiltered=0 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
2026-06-21 03:15:51.040 +65040ms hook GPSRouteProducer result call=154 value=0x42ae6120 out_u0c=8/0x8 out_u1c=5/0x5 out_u20=2894404720/0xac851c70 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.001 edgeCostMax=3.137 edgeCostAvg=0.930 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.296 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.218 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.009 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.035 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.230 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.001 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.529 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.433 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
2026-06-21 03:15:51.040 +65040ms hook GPSRouteProducer 0x44cc7c call=155 graph=0x591db1080 query=0x795bf040 outResult=0x795bf1a0 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.93,-662.119,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:51.041 +65041ms hook GPSSearch 0x44f054 call=140 startHandle=0x100000ac00058 targetHandle=0x100000ac00038 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.93,8.5,-662.119) outPath=0x795be1b0 outCount=0x795bceb0 provider=0x795bdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=155 ret_rva=0x44d117
2026-06-21 03:15:51.041 +65041ms hook GPSSearch result call=140 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
2026-06-21 03:15:51.042 +65042ms hook GPSRouteProducer result call=155 value=0x42ae6120 out_u0c=9/0x9 out_u1c=4/0x4 out_u20=2869746752/0xab0cdc40 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.080 edgeCostMax=3.577 edgeCostAvg=1.415 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.093 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.331 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.204 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.121 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.602 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.577 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.303 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
2026-06-21 03:15:51.048 +65048ms hook GPSRouteProducer 0x44cc7c call=156 graph=0x591db1080 query=0x797ff8c0 outResult=0x797ff860 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.8,-662.779,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-21 03:15:51.049 +65049ms hook GPSSearch 0x44f054 call=141 startHandle=0x100000ac00058 targetHandle=0x100000ac00049 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.8,8.5,-662.779) outPath=0x797fe980 outCount=0x797fd680 provider=0x797fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=156 ret_rva=0x44d117
2026-06-21 03:15:51.049 +65049ms hook GPSSearch result call=141 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
2026-06-21 03:15:51.049 +65049ms hook GPSRouteProducer result call=156 value=0x42ae6120 out_u0c=7/0x7 out_u1c=4/0x4 out_u20=2890050400/0xac42ab60 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.092 edgeCostMax=3.567 edgeCostAvg=1.561 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.092 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.328 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.203 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.111 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.615 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.567 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.302 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
2026-06-21 03:15:51.188 +65188ms hook GPSRouteProducer 0x44cc7c call=157 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1397.9,-764.371,11.7542,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1128140288/0x433e0e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
2026-06-21 03:15:51.189 +65189ms hook GPSSearch 0x44f054 call=142 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1397.9,11.8252,-764.371) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=157 ret_rva=0x44d117
2026-06-21 03:15:51.189 +65189ms hook GPSSearch result call=142 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=0 filterFiltered=2 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
2026-06-21 03:15:51.189 +65189ms hook GPSRouteProducer result call=157 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2952780288/0xafffda00 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.836 edgeCostMax=3.525 edgeCostAvg=2.604 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.836 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=2.452 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
2026-06-21 03:15:51.190 +65190ms hook GPSRouteProducer 0x44cc7c call=158 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1406.1,-764.159,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108929280/0x4218eb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
2026-06-21 03:15:51.190 +65190ms hook GPSSearch 0x44f054 call=143 startHandle=0x1000009a00274 targetHandle=0x1000009a00210 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1406.1,11.8,-764.159) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=158 ret_rva=0x44d117
2026-06-21 03:15:51.190 +65190ms hook GPSSearch result call=143 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:51.191 +65191ms hook GPSRouteProducer result call=158 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2951956848/0xaff34970 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.090 edgeCostMax=3.704 edgeCostAvg=1.699 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=1.247 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=2.936 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>3 cost=1.802 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e;3:3>3 cost=3.704 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00212;4:3>3 cost=0.090 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00210;5:3>255 cost=0.417 ret=0x44f629 cur=0x1000009a00210 dst=0x0]
2026-06-21 03:15:51.191 +65191ms hook GPSRouteProducer 0x44cc7c call=159 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1399.76,-760.302,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101247488/0x41a3b400 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
2026-06-21 03:15:51.192 +65192ms hook GPSSearch 0x44f054 call=144 startHandle=0x1000009a00274 targetHandle=0x1000009a00275 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1399.76,11.9356,-760.302) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=159 ret_rva=0x44d117
2026-06-21 03:15:51.192 +65192ms hook GPSSearch result call=144 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:51.192 +65192ms hook GPSRouteProducer result call=159 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2951956848/0xaff34970 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.956 edgeCostMax=3.905 edgeCostAvg=2.833 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=2.193 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>3 cost=3.586 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00275;3:3>255 cost=0.956 ret=0x44f629 cur=0x1000009a00275 dst=0x0;4:3>3 cost=3.905 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271]
2026-06-21 03:15:51.192 +65192ms hook GPSRouteProducer 0x44cc7c call=160 graph=0x591db1080 query=0x79e7f140 outResult=0x79e7f2a0 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1397.9,-764.371,11.7542,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:51.193 +65193ms hook GPSSearch 0x44f054 call=145 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1397.9,11.8252,-764.371) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7dfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=160 ret_rva=0x44d117
2026-06-21 03:15:51.193 +65193ms hook GPSSearch result call=145 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=2 filterFiltered=0 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
2026-06-21 03:15:51.193 +65193ms hook GPSRouteProducer result call=160 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2952772800/0xafffbcc0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.836 edgeCostMax=3.525 edgeCostAvg=2.604 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.836 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=2.452 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
2026-06-21 03:15:52.232 +66232ms hook GPSRouteProducer 0x44cc7c call=161 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.496,7.54309,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1138495488/0x43dc1000 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
2026-06-21 03:15:52.232 +66232ms hook GPSSearch 0x44f054 call=146 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.496) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=161 ret_rva=0x44d117
2026-06-21 03:15:52.233 +66233ms hook GPSSearch result call=146 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:52.233 +66233ms hook GPSRouteProducer result call=161 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2975534352/0xb15b0d10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.728 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.266 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
2026-06-21 03:15:52.233 +66233ms hook GPSRouteProducer 0x44cc7c call=162 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.88,-692.499,7.58709,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160828928/0x4530d800 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
2026-06-21 03:15:52.234 +66234ms hook GPSSearch 0x44f054 call=147 startHandle=0x100000ab00135 targetHandle=0x100000ab0013b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.88,7.9,-692.499) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=162 ret_rva=0x44d117
2026-06-21 03:15:52.234 +66234ms hook GPSSearch result call=147 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:52.234 +66234ms hook GPSRouteProducer result call=162 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2958023808/0xb04fdc80 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.156 edgeCostMax=2.881 edgeCostAvg=1.034 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.156 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.838 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.594 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.554 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.181 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;5:5>255 cost=2.881 ret=0x44f629 cur=0x100000ab0013b dst=0x0]
2026-06-21 03:15:52.235 +66235ms hook GPSRouteProducer 0x44cc7c call=163 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1317.22,-682.448,8.2223,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117320704/0x4298f600 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
2026-06-21 03:15:52.235 +66235ms hook GPSSearch 0x44f054 call=148 startHandle=0x100000ab00135 targetHandle=0x100000ab0016b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1317.22,8.5,-682.448) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=163 ret_rva=0x44d117
2026-06-21 03:15:52.237 +66237ms hook GPSSearch result call=148 value=0x40000000 hasOutCount=1 outCount=17 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:7,5:33] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
2026-06-21 03:15:52.237 +66237ms hook GPSRouteProducer result call=163 value=0x42ae6120 out_u0c=15/0xf out_u1c=8/0x8 out_u20=3064144336/0xb6a321d0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=12.947 edgeCostAvg=1.926 edgeSrcClasses=[3:8,5:33] edgeDstClasses=[3:7,5:33,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:5>5 cost=0.296 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=2.136 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=0.487 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.083 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;4:5>5 cost=5.048 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;5:5>5 cost=0.991 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;6:5>5 cost=0.307 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;7:5>5 cost=0.353 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f]
2026-06-21 03:15:52.237 +66237ms hook GPSRouteProducer 0x44cc7c call=164 graph=0x591db1080 query=0x793bf140 outResult=0x793bf2a0 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.496,7.54309,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:52.237 +66237ms hook GPSSearch 0x44f054 call=149 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.496) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=164 ret_rva=0x44d117
2026-06-21 03:15:52.238 +66238ms hook GPSSearch result call=149 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
2026-06-21 03:15:52.238 +66238ms hook GPSRouteProducer result call=164 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2975534352/0xb15b0d10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.728 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.266 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
2026-06-21 03:15:53.201 +67201ms hook GPSRouteProducer 0x44cc7c call=165 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.88,-658.339,8.22676,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1109801728/0x42263b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
2026-06-21 03:15:53.201 +67201ms hook GPSSearch 0x44f054 call=150 startHandle=0x100000ac00038 targetHandle=0x100000ac0008f graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.88,8.5,-658.339) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=165 ret_rva=0x44d117
2026-06-21 03:15:53.202 +67202ms hook GPSSearch result call=150 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:53.202 +67202ms hook GPSRouteProducer result call=165 value=0x42ae6120 out_u0c=6/0x6 out_u1c=4/0x4 out_u20=2947834384/0xafb46210 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.010 edgeCostMax=3.233 edgeCostAvg=0.962 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.348 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.281 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.163 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.378 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.159 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.010 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.484 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.064 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
2026-06-21 03:15:53.203 +67203ms hook GPSRouteProducer 0x44cc7c call=166 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.91,-666.112,8.22224,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1062115328/0x3f4e9800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
2026-06-21 03:15:53.203 +67203ms hook GPSSearch 0x44f054 call=151 startHandle=0x100000ac00038 targetHandle=0x100000ac0004e graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.91,8.5,-666.112) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=166 ret_rva=0x44d117
2026-06-21 03:15:53.204 +67204ms hook GPSSearch result call=151 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:53.204 +67204ms hook GPSRouteProducer result call=166 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2202641520/0x8349a470 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.040 edgeCostMax=2.971 edgeCostAvg=1.003 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.370 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.095 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.040 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=2.174 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=1.081 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.288 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=2.971 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
2026-06-21 03:15:53.204 +67204ms hook GPSRouteProducer 0x44cc7c call=167 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1325.5,-651.884,7.63096,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157746944/0x4501d100 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
2026-06-21 03:15:53.204 +67204ms hook GPSSearch 0x44f054 call=152 startHandle=0x100000ac00038 targetHandle=0x100000ac000b3 graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1325.5,7.9,-651.884) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=167 ret_rva=0x44d117
2026-06-21 03:15:53.208 +67208ms hook GPSSearch result call=152 value=0x40000000 hasOutCount=1 outCount=25 filterCalls=115 filterPass=115 filterFail=0 filterBase=0 filterFiltered=115 filterPassClasses=[3:93,5:22] filterFailClasses=[none] filterPassMaskBits=[0:115,1:115] filterFailMaskBits=[none]
2026-06-21 03:15:53.209 +67209ms hook GPSRouteProducer result call=167 value=0x42ae6120 out_u0c=20/0x14 out_u1c=10/0xa out_u20=3240126384/0xc12067b0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=116 edgeCostMin=0.010 edgeCostMax=12.034 edgeCostAvg=1.412 edgeSrcClasses=[3:94,5:22] edgeDstClasses=[3:93,5:22,invalid:1] edgeRetRvas=[0x44f457:115,0x44f629:1] edgeSamples=[0:3>3 cost=0.370 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.086 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.035 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=2.170 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=1.147 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.287 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>3 cost=3.258 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac00056;7:3>3 cost=5.458 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f]
2026-06-21 03:15:53.209 +67209ms hook GPSRouteProducer 0x44cc7c call=168 graph=0x591db1080 query=0x79aff1e0 outResult=0x79aff340 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.88,-658.339,8.22676,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:53.209 +67209ms hook GPSSearch 0x44f054 call=153 startHandle=0x100000ac00038 targetHandle=0x100000ac0008f graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.88,8.5,-658.339) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afe060 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=168 ret_rva=0x44d117
2026-06-21 03:15:53.210 +67210ms hook GPSSearch result call=153 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:53.210 +67210ms hook GPSRouteProducer result call=168 value=0x42ae6120 out_u0c=6/0x6 out_u1c=4/0x4 out_u20=2947834384/0xafb46210 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.010 edgeCostMax=3.233 edgeCostAvg=0.962 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.348 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.281 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.163 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.378 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.159 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.010 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.484 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.064 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
2026-06-21 03:15:53.379 +67379ms hook GPSRouteProducer 0x44cc7c call=169 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.45,-707.231,7.7926,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1113935360/0x42654e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
2026-06-21 03:15:53.380 +67380ms hook GPSSearch 0x44f054 call=154 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.45,7.9,-707.231) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=169 ret_rva=0x44d117
2026-06-21 03:15:53.380 +67380ms hook GPSSearch result call=154 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:53.381 +67381ms hook GPSRouteProducer result call=169 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.007 edgeCostMax=4.517 edgeCostAvg=2.007 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.838 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.718 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=1.445 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.517 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=2.063 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.506 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.007 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
2026-06-21 03:15:53.381 +67381ms hook GPSRouteProducer 0x44cc7c call=170 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1409.19,-706.91,7.85331,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1118925056/0x42b17100 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
2026-06-21 03:15:53.381 +67381ms hook GPSSearch 0x44f054 call=155 startHandle=0x1000009c00038 targetHandle=0x1000009c0004d graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1409.19,7.9,-706.91) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=170 ret_rva=0x44d117
2026-06-21 03:15:53.382 +67382ms hook GPSSearch result call=155 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[4:1,5:9] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
2026-06-21 03:15:53.382 +67382ms hook GPSRouteProducer result call=170 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2828050080/0xa8909ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.071 edgeCostMax=5.658 edgeCostAvg=1.961 edgeSrcClasses=[5:11] edgeDstClasses=[4:1,5:9,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:5>5 cost=3.346 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=0.406 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.071 ret=0x44f457 cur=0x1000009c00039 dst=0x1000009c00058;3:5>4 cost=5.658 ret=0x44f457 cur=0x1000009c00039 dst=0x1000009c00010;4:5>5 cost=0.615 ret=0x44f457 cur=0x1000009c00058 dst=0x1000009c00059;5:5>5 cost=0.455 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00057;6:5>5 cost=4.941 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056;7:5>5 cost=2.859 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00047]
2026-06-21 03:15:53.382 +67382ms hook GPSRouteProducer 0x44cc7c call=171 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.43,-706.532,7.7926,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1165527552/0x45788a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
2026-06-21 03:15:53.382 +67382ms hook GPSSearch 0x44f054 call=156 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.43,7.9,-706.532) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=171 ret_rva=0x44d117
2026-06-21 03:15:53.383 +67383ms hook GPSSearch result call=156 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:53.383 +67383ms hook GPSRouteProducer result call=171 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.014 edgeCostMax=4.757 edgeCostAvg=1.964 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.763 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.728 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=0.931 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.757 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=1.716 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.836 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.014 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
2026-06-21 03:15:53.383 +67383ms hook GPSRouteProducer 0x44cc7c call=172 graph=0x591db1080 query=0x79d7f140 outResult=0x79d7f2a0 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.43,-706.532,7.7926,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:53.383 +67383ms hook GPSSearch 0x44f054 call=157 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.43,7.9,-706.532) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7dfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=172 ret_rva=0x44d117
2026-06-21 03:15:53.384 +67384ms hook GPSSearch result call=157 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
2026-06-21 03:15:53.384 +67384ms hook GPSRouteProducer result call=172 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.014 edgeCostMax=4.757 edgeCostAvg=1.964 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.763 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.728 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=0.931 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.757 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=1.716 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.836 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.014 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
2026-06-21 03:15:53.536 +67536ms hook GPSRouteProducer 0x44cc7c call=173 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1419.05,-740.994,11.6251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1121695744/0x42dbb800 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
2026-06-21 03:15:53.536 +67536ms hook GPSSearch 0x44f054 call=158 startHandle=0x1000009b00076 targetHandle=0x1000009b00074 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1419.05,11.8,-740.994) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=173 ret_rva=0x44d117
2026-06-21 03:15:53.536 +67536ms hook GPSSearch result call=158 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:53.537 +67537ms hook GPSRouteProducer result call=173 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.732 edgeCostMax=10.199 edgeCostAvg=5.794 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=6.485 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>255 cost=0.732 ret=0x44f629 cur=0x1000009b00074 dst=0x0;2:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;3:3>3 cost=10.199 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
2026-06-21 03:15:53.537 +67537ms hook GPSRouteProducer 0x44cc7c call=174 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1407.38,-747.618,11.7052,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1088543488/0x40e1db00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
2026-06-21 03:15:53.537 +67537ms hook GPSSearch 0x44f054 call=159 startHandle=0x1000009b00076 targetHandle=0x1000009a003a4 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1407.38,11.8,-747.618) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=174 ret_rva=0x44d117
2026-06-21 03:15:53.538 +67538ms hook GPSSearch result call=159 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
2026-06-21 03:15:53.538 +67538ms hook GPSRouteProducer result call=174 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2861228440/0xaa8ae198 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.160 edgeCostMax=8.689 edgeCostAvg=3.901 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=5.990 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;2:3>3 cost=3.204 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078;3:3>3 cost=0.160 ret=0x44f457 cur=0x1000009b00078 dst=0x1000009b00077;4:3>3 cost=0.240 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009a003a4;5:3>255 cost=3.265 ret=0x44f629 cur=0x1000009a003a4 dst=0x0;6:3>3 cost=8.689 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b]
2026-06-21 03:15:53.538 +67538ms hook GPSRouteProducer 0x44cc7c call=175 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1405.99,-741.039,11.7501,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099763200/0x418d0e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
2026-06-21 03:15:53.538 +67538ms hook GPSSearch 0x44f054 call=160 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1405.99,11.8,-741.039) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=175 ret_rva=0x44d117
2026-06-21 03:15:53.539 +67539ms hook GPSSearch result call=160 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:53.539 +67539ms hook GPSRouteProducer result call=175 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:53.539 +67539ms hook GPSRouteProducer 0x44cc7c call=176 graph=0x591db1080 query=0x793bf140 outResult=0x793bf2a0 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1405.99,-741.039,11.7501,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-21 03:15:53.539 +67539ms hook GPSSearch 0x44f054 call=161 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1405.99,11.8,-741.039) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=176 ret_rva=0x44d117
2026-06-21 03:15:53.540 +67540ms hook GPSSearch result call=161 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
2026-06-21 03:15:53.540 +67540ms hook GPSRouteProducer result call=176 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-21 03:15:58.206 +72206ms hook GPSRouteProducer 0x44cc7c call=177 graph=0x591db1080 query=0x79afe620 outResult=0x79afe780 query_start00=(-1396.92,-782.056,3.12725,1) query_end10=(-1398.99,-775.06,3.12725,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:58.206 +72206ms hook GPSSearch 0x44f054 call=162 startHandle=0x100000990013a targetHandle=0x1000009a00288 graph=0x1a1826a30 startPoint=(-1396.92,3.4,-782.056) targetPoint=(-1398.99,3.4,-775.06) outPath=0x79afd790 outCount=0x79afc490 provider=0x79afd4a0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=177 ret_rva=0x44d117
2026-06-21 03:15:58.207 +72207ms hook GPSSearch result call=162 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=15 filterPass=15 filterFail=0 filterBase=15 filterFiltered=0 filterPassClasses=[1:14,15:1] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
2026-06-21 03:15:58.207 +72207ms hook GPSRouteProducer result call=177 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3086684352/0xb7fb10c0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.005 edgeCostMax=6.795 edgeCostAvg=2.064 edgeSrcClasses=[1:16] edgeDstClasses=[1:14,15:1,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:1>1 cost=1.052 ret=0x44f457 cur=0x100000990013a dst=0x100000990013c;1:1>1 cost=0.005 ret=0x44f457 cur=0x100000990013c dst=0x1000009900142;2:1>1 cost=0.038 ret=0x44f457 cur=0x1000009900142 dst=0x100000990013f;3:1>1 cost=2.295 ret=0x44f457 cur=0x1000009900142 dst=0x1000009900143;4:1>1 cost=3.261 ret=0x44f457 cur=0x100000990013f dst=0x100000990013b;5:1>1 cost=1.000 ret=0x44f457 cur=0x1000009900143 dst=0x1000009900145;6:1>1 cost=0.294 ret=0x44f457 cur=0x1000009900145 dst=0x1000009900148;7:1>15 cost=4.875 ret=0x44f457 cur=0x1000009900148 dst=0x10000099000c5]
2026-06-21 03:15:59.143 +73143ms hook GPSRouteProducer 0x44cc7c call=178 graph=0x591db1080 query=0x79bff880 outResult=0x79bff810 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1410.61,-735.368,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2042624464/0x79bff9d0 ret_rva=0x6517d1
2026-06-21 03:15:59.143 +73143ms hook GPSSearch 0x44f054 call=163 startHandle=0x1000009b00074 targetHandle=0x1000009b00075 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1410.61,11.8,-735.368) outPath=0x79bfe940 outCount=0x79bfd640 provider=0x79bfdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=178 ret_rva=0x44d117
2026-06-21 03:15:59.144 +73144ms hook GPSSearch result call=163 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:59.144 +73144ms hook GPSRouteProducer result call=178 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.496 edgeCostMax=10.091 edgeCostAvg=4.233 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.701 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.758 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>3 cost=2.647 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;4:3>255 cost=0.496 ret=0x44f629 cur=0x1000009b00075 dst=0x0;5:3>3 cost=10.091 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
2026-06-21 03:15:59.145 +73145ms hook GPSRouteProducer 0x44cc7c call=179 graph=0x591db1080 query=0x79bff430 outResult=0x79bff5d8 query_start00=(-1410.61,-735.368,11.6246,1) query_end10=(-1409.19,-738.731,11.7224,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
2026-06-21 03:15:59.145 +73145ms hook GPSSearch 0x44f054 call=164 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1410.61,11.8,-735.368) targetPoint=(-1409.19,11.8,-738.731) outPath=0x79bfe5a0 outCount=0x79bfd2a0 provider=0x79bfe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=179 ret_rva=0x44d117
2026-06-21 03:15:59.145 +73145ms hook GPSSearch result call=164 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:59.146 +73146ms hook GPSRouteProducer result call=179 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.760 edgeCostMax=9.121 edgeCostAvg=3.383 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.760 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=9.121 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=0.871 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=2.780 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:15:59.146 +73146ms hook GPSRouteProducer 0x44cc7c call=180 graph=0x591db1080 query=0x79bff040 outResult=0x79bff1a0 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1410.61,-735.368,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-21 03:15:59.146 +73146ms hook GPSSearch 0x44f054 call=165 startHandle=0x1000009b00074 targetHandle=0x1000009b00075 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1410.61,11.8,-735.368) outPath=0x79bfe1b0 outCount=0x79bfceb0 provider=0x79bfdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=180 ret_rva=0x44d117
2026-06-21 03:15:59.147 +73147ms hook GPSSearch result call=165 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
2026-06-21 03:15:59.147 +73147ms hook GPSRouteProducer result call=180 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.496 edgeCostMax=10.091 edgeCostAvg=4.233 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.701 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.758 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>3 cost=2.647 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;4:3>255 cost=0.496 ret=0x44f629 cur=0x1000009b00075 dst=0x0;5:3>3 cost=10.091 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
2026-06-21 03:15:59.151 +73151ms hook GPSRouteProducer 0x44cc7c call=181 graph=0x591db1080 query=0x793bf8c0 outResult=0x793bf860 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1411.39,-735.333,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1040/0x410 ret_rva=0x6517d1
2026-06-21 03:15:59.151 +73151ms hook GPSSearch 0x44f054 call=166 startHandle=0x1000009b00074 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1411.39,11.8,-735.333) outPath=0x793be980 outCount=0x793bd680 provider=0x793bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=181 ret_rva=0x44d117
2026-06-21 03:15:59.152 +73152ms hook GPSSearch result call=166 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
2026-06-21 03:15:59.152 +73152ms hook GPSRouteProducer result call=181 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.753 edgeCostMax=9.702 edgeCostAvg=3.621 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.657 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.753 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>255 cost=2.371 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
2026-06-21 03:16:09.545 +83545ms hook GPSRouteProducer 0x44cc7c call=182 graph=0x591db1080 query=0x795bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:09.545 +83545ms hook GPSRouteProducer result call=182 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2962737584/0xb097c9b0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.874 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.874 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:16:13.326 +87326ms hook GPSRouteProducer 0x44cc7c call=183 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:13.327 +87327ms hook GPSRouteProducer result call=183 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2855661840/0xaa35f110 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:16:16.457 +90457ms hook GPSRouteProducer 0x44cc7c call=184 graph=0x591db1080 query=0x79d7f770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:16.457 +90457ms hook GPSRouteProducer result call=184 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2908710720/0xad5f6740 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:16:19.036 +93036ms hook GPSRouteProducer 0x44cc7c call=185 graph=0x591db1080 query=0x79d7f770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:19.036 +93036ms hook GPSRouteProducer result call=185 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2959968656/0xb06d8990 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:16:36.364 +110364ms hook GPSRouteProducer 0x44cc7c call=186 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:36.364 +110364ms hook GPSRouteProducer result call=186 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2855653488/0xaa35d070 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:16:50.186 +124186ms hook GPSRouteProducer 0x44cc7c call=187 graph=0x591db1080 query=0x794bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:16:50.187 +124187ms hook GPSRouteProducer result call=187 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2940823216/0xaf4966b0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:17:01.478 +135478ms hook GPSRouteProducer 0x44cc7c call=188 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:17:01.478 +135478ms hook GPSRouteProducer result call=188 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964960768/0xb0b9b600 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.874 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.874 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:17:10.859 +143859ms hook GPSRouteProducer 0x44cc7c call=189 graph=0x591db1080 query=0x79aff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-21 03:17:10.860 +143860ms hook GPSRouteProducer result call=189 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2983784288/0xb1d8ef60 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
2026-06-21 03:17:24.175 +158175ms GameState Running OnExit app=0x31fb80
@@ -0,0 +1,58 @@
2026-06-20 22:07:37.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff0600000 sdk=0x7f5264b8 runtime=2.3.1
2026-06-20 22:07:37.001 +1ms registered Running game-state callbacks
2026-06-20 22:07:37.010 +10ms hook attach GPSSearch 0x44f054 target=0x14044f054 rva=0x44f054 result=ok original=0x1018c0480
2026-06-20 22:07:55.907 +17907ms GameState Running OnEnter app=0x31fb80
2026-06-20 22:07:55.989 +17989ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-20 22:07:55.996 +17996ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-20 22:07:55.003 +18003ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-20 22:07:55.009 +18009ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-20 22:07:55.016 +18016ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-20 22:08:47.168 +70168ms gps-provider-class-patch applied patchCall=0 searchCall=0 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.169 +70169ms gps-provider-class-patch restored patchCall=1 searchCall=0 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.169 +70169ms gps-provider-class-patch applied patchCall=2 searchCall=1 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.169 +70169ms gps-provider-class-patch applied patchCall=3 searchCall=2 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.170 +70170ms gps-provider-class-patch restored patchCall=4 searchCall=1 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.170 +70170ms gps-provider-class-patch restored patchCall=5 searchCall=2 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.170 +70170ms gps-provider-class-patch applied patchCall=6 searchCall=3 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.170 +70170ms gps-provider-class-patch applied patchCall=7 searchCall=4 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.170 +70170ms gps-provider-class-patch restored patchCall=8 searchCall=3 provider=0x79dfd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.171 +70171ms gps-provider-class-patch restored patchCall=9 searchCall=4 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.171 +70171ms gps-provider-class-patch applied patchCall=10 searchCall=5 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.171 +70171ms gps-provider-class-patch applied patchCall=11 searchCall=6 provider=0x65f9d7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.171 +70171ms gps-provider-class-patch restored patchCall=12 searchCall=5 provider=0x797fd1c0 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.172 +70172ms gps-provider-class-patch restored patchCall=13 searchCall=6 provider=0x65f9d7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.172 +70172ms gps-provider-class-patch applied patchCall=14 searchCall=7 provider=0x79bfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.173 +70173ms gps-provider-class-patch applied patchCall=15 searchCall=8 provider=0x798fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.173 +70173ms gps-provider-class-patch applied patchCall=17 searchCall=10 provider=0x66b8d7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.173 +70173ms gps-provider-class-patch restored patchCall=18 searchCall=7 provider=0x79bfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.174 +70174ms gps-provider-class-patch applied patchCall=19 searchCall=11 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.174 +70174ms gps-provider-class-patch applied patchCall=20 searchCall=12 provider=0x65f9c910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.174 +70174ms gps-provider-class-patch applied patchCall=26 searchCall=15 provider=0x79bfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.174 +70174ms gps-provider-class-patch restored patchCall=22 searchCall=10 provider=0x66b8d7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.174 +70174ms gps-provider-class-patch applied patchCall=24 searchCall=14 provider=0x79dfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.175 +70175ms gps-provider-class-patch applied patchCall=23 searchCall=13 provider=0x79cfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.175 +70175ms gps-provider-class-patch applied patchCall=29 searchCall=16 provider=0x797fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.175 +70175ms gps-provider-class-patch restored patchCall=30 searchCall=14 provider=0x79dfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.175 +70175ms gps-provider-class-patch restored patchCall=28 searchCall=15 provider=0x79bfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.176 +70176ms gps-provider-class-patch restored patchCall=31 searchCall=13 provider=0x79cfd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.176 +70176ms gps-provider-class-patch restored patchCall=27 searchCall=12 provider=0x65f9c910 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.176 +70176ms gps-provider-class-patch restored patchCall=21 searchCall=8 provider=0x798fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.176 +70176ms gps-provider-class-patch applied patchCall=16 searchCall=9 provider=0x79afd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:47.176 +70176ms gps-provider-class-patch restored patchCall=25 searchCall=11 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.177 +70177ms gps-provider-class-patch applied patchCall=33 searchCall=17 provider=0x799fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.177 +70177ms gps-provider-class-patch applied patchCall=35 searchCall=19 provider=0x79dfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.177 +70177ms gps-provider-class-patch applied patchCall=36 searchCall=20 provider=0x66b8c910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.177 +70177ms gps-provider-class-patch applied patchCall=34 searchCall=18 provider=0x79bfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.177 +70177ms gps-provider-class-patch applied patchCall=39 searchCall=22 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch restored patchCall=32 searchCall=16 provider=0x797fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch restored patchCall=41 searchCall=19 provider=0x79dfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch restored patchCall=43 searchCall=18 provider=0x79bfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch applied patchCall=37 searchCall=21 provider=0x65f9c910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch restored patchCall=44 searchCall=22 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.178 +70178ms gps-provider-class-patch restored patchCall=38 searchCall=9 provider=0x79afd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.179 +70179ms gps-provider-class-patch applied patchCall=45 searchCall=23 provider=0x79cfc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.179 +70179ms gps-provider-class-patch restored patchCall=40 searchCall=17 provider=0x799fd7a0 provider_vtable_rva=0x2ae6120 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.179 +70179ms gps-provider-class-patch restored patchCall=42 searchCall=20 provider=0x66b8c910 provider_vtable_rva=0x2ae60f8 current=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.179 +70179ms gps-provider-class-patch applied patchCall=47 searchCall=25 provider=0x797fc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:08:48.179 +70179ms gps-provider-class-patch applied patchCall=46 searchCall=24 provider=0x798fc910 provider_vtable_rva=0x2ae60f8 current=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] original=[1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.05,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00] patched=[1.00,0.70,1.00,1.45,1.25,1.75,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,0.80,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00]
2026-06-20 22:11:53.618 +255618ms GameState Running OnExit app=0x31fb80
@@ -0,0 +1,137 @@
2026-06-21 03:01:08.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05e0000 sdk=0x7f7ccae8 runtime=2.3.1
2026-06-21 03:01:08.000 +0ms registered Running game-state callbacks
2026-06-21 03:01:08.007 +7ms hook attach GPSSearch 0x44f054 target=0x14044f054 rva=0x44f054 result=ok original=0x1018c0480
2026-06-21 03:01:27.499 +18499ms GameState Running OnEnter app=0x31fb80
2026-06-21 03:01:27.524 +18524ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-21 03:01:27.531 +18531ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-21 03:01:27.538 +18538ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-21 03:01:27.545 +18545ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-21 03:01:27.552 +18552ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch applied patchCall=0 searchCall=0 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch applied patchCall=1 searchCall=1 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch restored patchCall=2 searchCall=0 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch restored patchCall=3 searchCall=1 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch applied patchCall=4 searchCall=2 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch applied patchCall=5 searchCall=3 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch restored patchCall=6 searchCall=2 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch restored patchCall=7 searchCall=3 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch applied patchCall=8 searchCall=4 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch applied patchCall=9 searchCall=5 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch restored patchCall=10 searchCall=4 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.430 +52430ms gps-provider-class-patch restored patchCall=11 searchCall=5 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=13 searchCall=7 provider=0x79c3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=15 searchCall=9 provider=0x79b3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=17 searchCall=11 provider=0x66b7d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch restored patchCall=18 searchCall=7 provider=0x79c3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch restored patchCall=19 searchCall=9 provider=0x79b3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch applied patchCall=14 searchCall=8 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch restored patchCall=20 searchCall=11 provider=0x66b7d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch applied patchCall=22 searchCall=13 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch restored patchCall=23 searchCall=8 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=24 searchCall=14 provider=0x79a3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch restored patchCall=26 searchCall=13 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=25 searchCall=15 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=16 searchCall=10 provider=0x79d3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch restored patchCall=29 searchCall=14 provider=0x79a3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=28 searchCall=17 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=27 searchCall=16 provider=0x795fd7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=21 searchCall=12 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch restored patchCall=31 searchCall=15 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=32 searchCall=10 provider=0x79d3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch applied patchCall=30 searchCall=18 provider=0x66a7d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=36 searchCall=12 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=34 searchCall=17 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch applied patchCall=38 searchCall=21 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=40 searchCall=22 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=37 searchCall=20 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=41 searchCall=23 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch restored patchCall=43 searchCall=22 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch restored patchCall=42 searchCall=21 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=33 searchCall=19 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=45 searchCall=23 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=46 searchCall=24 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=12 searchCall=6 provider=0x7993d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=48 searchCall=19 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=50 searchCall=24 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=47 searchCall=25 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch restored patchCall=39 searchCall=18 provider=0x66a7d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=53 searchCall=28 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch restored patchCall=51 searchCall=6 provider=0x7993d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=55 searchCall=29 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=52 searchCall=27 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch restored patchCall=56 searchCall=28 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=49 searchCall=26 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=57 searchCall=30 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=60 searchCall=31 provider=0x79b3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch restored patchCall=58 searchCall=29 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=59 searchCall=27 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=35 searchCall=16 provider=0x795fd7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=63 searchCall=31 provider=0x79b3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=62 searchCall=30 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=61 searchCall=26 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch applied patchCall=65 searchCall=33 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=67 searchCall=35 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=69 searchCall=37 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=70 searchCall=33 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=64 searchCall=32 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=72 searchCall=37 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=54 searchCall=25 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=73 searchCall=38 provider=0x79c3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=68 searchCall=36 provider=0x66b7d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=71 searchCall=35 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=74 searchCall=32 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=77 searchCall=38 provider=0x79c3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=66 searchCall=34 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=79 searchCall=41 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=76 searchCall=40 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=75 searchCall=39 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch restored patchCall=83 searchCall=41 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=80 searchCall=42 provider=0x79a3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch restored patchCall=78 searchCall=36 provider=0x66b7d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=82 searchCall=34 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=86 searchCall=44 provider=0x31b3e0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=85 searchCall=39 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=84 searchCall=40 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=88 searchCall=45 provider=0x79d3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=87 searchCall=42 provider=0x79a3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=90 searchCall=46 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=92 searchCall=45 provider=0x79d3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch applied patchCall=91 searchCall=47 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch applied patchCall=81 searchCall=43 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=89 searchCall=44 provider=0x31b3e0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=94 searchCall=47 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=95 searchCall=43 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=96 searchCall=48 provider=0x795fd430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=97 searchCall=49 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=93 searchCall=46 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=98 searchCall=48 provider=0x795fd430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=99 searchCall=49 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=100 searchCall=50 provider=0x66a7d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=101 searchCall=51 provider=0x7993d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=102 searchCall=50 provider=0x66a7d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=103 searchCall=51 provider=0x7993d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=44 searchCall=20 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch applied patchCall=104 searchCall=52 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch restored patchCall=105 searchCall=52 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch applied patchCall=106 searchCall=53 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch restored patchCall=107 searchCall=53 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch applied patchCall=108 searchCall=54 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch restored patchCall=109 searchCall=54 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch applied patchCall=110 searchCall=55 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch restored patchCall=111 searchCall=55 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.450 +52450ms gps-provider-class-patch applied patchCall=112 searchCall=56 provider=0x796fd430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.450 +52450ms gps-provider-class-patch restored patchCall=113 searchCall=56 provider=0x796fd430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.483 +52483ms gps-provider-class-patch applied patchCall=114 searchCall=57 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch restored patchCall=115 searchCall=57 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch applied patchCall=116 searchCall=58 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch restored patchCall=117 searchCall=58 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:02.588 +53588ms gps-provider-class-patch applied patchCall=118 searchCall=59 provider=0x31c0d0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:02.589 +53589ms gps-provider-class-patch restored patchCall=119 searchCall=59 provider=0x31c0d0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:02.726 +53726ms gps-provider-class-patch applied patchCall=120 searchCall=60 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:02.726 +53726ms gps-provider-class-patch restored patchCall=121 searchCall=60 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch applied patchCall=122 searchCall=61 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch restored patchCall=123 searchCall=61 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch applied patchCall=124 searchCall=62 provider=0x79d3e8a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch restored patchCall=125 searchCall=62 provider=0x79d3e8a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.357 +56357ms gps-provider-class-patch applied patchCall=126 searchCall=63 provider=0x79d3e4b0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
2026-06-21 03:02:04.357 +56357ms gps-provider-class-patch restored patchCall=127 searchCall=63 provider=0x79d3e4b0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,57 @@
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
2026-06-27 05:38:02.012 +216012ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.7
2026-06-27 05:39:00.783 +273783ms hook GPSQueryResultFetch 0x7094b8 call=40714 queryId=232 tracked=1 perQueryCall=4 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000f05e16af0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
2026-06-27 05:39:00.787 +273787ms hook GPSQueryResultFetch 0x7094b8 call=40715 queryId=232 tracked=1 perQueryCall=5 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a9000000003295980500000022000000220000000000000000000000f05e16af0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
2026-06-27 05:39:00.788 +273788ms hook GPSQueryResultFetch 0x7094b8 call=40716 queryId=232 tracked=1 perQueryCall=6 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a900000000000000003295980500000022000000000000000000000000000000f05e16af0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
2026-06-27 05:39:06.837 +279837ms hook GPSQueryResultFetch 0x7094b8 call=41405 queryId=239 tracked=1 perQueryCall=3 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x52069c outPath=0x66a7fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fda76600000000008e0e4401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=1722285312/0x66a7fd00 gpsResult_u50=5436771840/0x1440e8e00
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41406 queryId=239 tracked=1 perQueryCall=4 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000d0684fbf0500000027000000270000000000000000000000c0b434a20100000001fda76601000000008e0e4401000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6017252609/0x166a7fd01 gpsResult_u50=5436771840/0x1440e8e00
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41407 queryId=239 tracked=1 perQueryCall=5 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000d0684fbf0500000027000000000000000000000000000000c0b434a20100000001fda76602000000018e0e4401000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10312219905/0x266a7fd01 gpsResult_u50=5436771841/0x1440e8e01
2026-06-27 05:39:12.400 +285400ms hook GPSQueryResultFetch 0x7094b8 call=42032 queryId=245 tracked=1 perQueryCall=5 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:39:12.402 +285402ms hook GPSQueryResultFetch 0x7094b8 call=42033 queryId=245 tracked=1 perQueryCall=6 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb00000030c93abf050000002e0000002e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d300000000,0,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c00000000,0,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a7118700000000,0,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:39:12.403 +285403ms hook GPSQueryResultFetch 0x7094b8 call=42034 queryId=245 tracked=1 perQueryCall=7 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb0000000000000030c93abf050000002e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
2026-06-27 05:39:16.274 +290274ms hook GPSQueryResultFetch 0x7094b8 call=42570 queryId=251 tracked=1 perQueryCall=4 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fd5f79000000000071114401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=2036333824/0x795ffd00 gpsResult_u50=5436961024/0x144117100
2026-06-27 05:39:16.279 +290279ms hook GPSQueryResultFetch 0x7094b8 call=42571 queryId=251 tracked=1 perQueryCall=5 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d6000000d600000080dae1a2050000001e0000001e0000000000000000000000c0b434a20100000001fd5f79010000000071114401000000983f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=214/0xd6 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6000000d6 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd6000000d6 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0;29:dee961a1ae096b36,0x01030007,0,212,214,41915c8e00000000,0,18.1702,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6331301121/0x1795ffd01 gpsResult_u50=5436961024/0x144117100
2026-06-27 05:39:16.280 +290280ms hook GPSQueryResultFetch 0x7094b8 call=42572 queryId=251 tracked=1 perQueryCall=6 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d60000000000000080dae1a2050000001e000000000000000000000000000000c0b434a20100000001fd5f79020000000171114401000000483f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd6 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10626268417/0x2795ffd01 gpsResult_u50=5436961025/0x144117101
@@ -0,0 +1,44 @@
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
@@ -0,0 +1,406 @@
2026-06-27 04:14:25.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff0350000 sdk=0x7f50c278 runtime=2.3.1
2026-06-27 04:14:25.000 +0ms registered Running game-state callbacks
2026-06-27 04:14:25.001 +1ms spatial weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\spatial_weights.bin
2026-06-27 04:14:25.001 +1ms spatial weights defaults highway=0.62 road=1 gpsonly=1.2 pavement=1.35 unknown=1.05
2026-06-27 04:14:25.007 +7ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
2026-06-27 04:14:25.014 +14ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
2026-06-27 04:14:25.021 +21ms hook attach GPSRouteProducer 0x44cc7c target=0x14044cc7c rva=0x44cc7c result=ok original=0x1018c0540
2026-06-27 04:14:25.029 +29ms hook attach GPSEdgeCost 0x44f838 target=0x14044f838 rva=0x44f838 result=ok original=0x1018c05a0
2026-06-27 04:14:43.771 +17771ms GameState Running OnEnter app=0x31fb80
2026-06-27 04:14:43.811 +17811ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-27 04:14:43.817 +17817ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-27 04:14:43.824 +17824ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-27 04:14:43.831 +17831ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-27 04:14:43.838 +17838ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-27 04:15:40.681 +74681ms hook GPSRouteProducer 0x44cc7c call=0 graph=0x59101d990 query=0x79e8dfe0 outResult=0x79e8e140 query_start00=(-1501.03,1155.36,18.8027,1) query_end10=(-1503.92,1156.68,18.8027,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
2026-06-27 04:15:40.681 +74681ms spatial weights reloaded highway=0.05 road=19 gpsonly=19 pavement=19 unknown=19
2026-06-27 04:15:40.682 +74682ms hook GPSRouteProducer 0x44cc7c call=2 graph=0x59101d990 query=0x796ce8c0 outResult=0x796ceb68 query_start00=(-1553.99,1242.15,19.0584,1) query_end10=(-1554.94,1244.03,19.0602,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1073447680/0x3ffb8300 query_ptr98=0 query_ptra0=0 query_flagsa8=2820473872/0xa81d0410 ret_rva=0x6517d1
2026-06-27 04:15:40.683 +74683ms hook GPSRouteProducer result call=0 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:40.683 +74683ms hook GPSRouteProducer result call=2 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2536698128/0x9732f110 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=3.985 edgeCostMax=33.949 edgeCostAvg=21.868 edgeSrcClasses=[4:10] edgeDstClasses=[4:9,invalid:1] spatialAllowed=10 spatialLookupOk=10 spatialLookupFailed=0 spatialAdjusted=10 spatialClasses=[R:10:avgMult=19.000] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:4>4 cost=18.113 original=0.953 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400181;1:4>255 cost=21.844 original=1.150 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008400181 dst=0x0;2:4>4 cost=29.924 original=1.575 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400182;3:4>4 cost=15.618 original=0.822 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400180;4:4>4 cost=30.120 original=1.585 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017a;5:4>4 cost=17.653 original=0.929 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017f;6:4>4 cost=33.949 original=1.787 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x100000840017e;7:4>4 cost=25.217 original=1.327 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x1000008400078]
2026-06-27 04:15:40.683 +74683ms hook GPSRouteProducer 0x44cc7c call=4 graph=0x59101d990 query=0x79b0e330 outResult=0x79b0e490 query_start00=(-1576.05,1224.76,17,1) query_end10=(-1579.13,1226.27,16.9563,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.684 +74684ms hook GPSRouteProducer 0x44cc7c call=5 graph=0x59101d990 query=0x796ce8c0 outResult=0x796ceb68 query_start00=(-1553.99,1242.15,19.0584,1) query_end10=(-1555.19,1243.78,19.0602,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1126126592/0x431f5400 query_ptr98=0 query_ptra0=0 query_flagsa8=2820473872/0xa81d0410 ret_rva=0x6517d1
2026-06-27 04:15:40.684 +74684ms hook GPSRouteProducer 0x44cc7c call=6 graph=0x59101d990 query=0x31c2e0 outResult=0x31c440 query_start00=(-1540.02,1172.84,17.16,1) query_end10=(-1543.07,1169.37,17.1973,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.684 +74684ms hook GPSRouteProducer 0x44cc7c call=7 graph=0x59101d990 query=0x7980e330 outResult=0x7980e490 query_start00=(-1585.97,1231.51,17.0766,1) query_end10=(-1586.5,1235.06,17.3249,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.685 +74685ms hook GPSRouteProducer 0x44cc7c call=3 graph=0x59101d990 query=0x79c8e330 outResult=0x79c8e490 query_start00=(-1579.61,1222.07,16.95,1) query_end10=(-1578.33,1226.61,16.9576,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.692 +74692ms hook GPSRouteProducer result call=5 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2908367920/0xad5a2c30 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=16.629 edgeCostMax=33.949 edgeCostAvg=23.878 edgeSrcClasses=[4:8] edgeDstClasses=[4:7,invalid:1] spatialAllowed=8 spatialLookupOk=8 spatialLookupFailed=0 spatialAdjusted=8 spatialClasses=[R:8:avgMult=19.000] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:4>4 cost=16.629 original=0.875 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400181;1:4>255 cost=21.798 original=1.147 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008400181 dst=0x0;2:4>4 cost=29.924 original=1.575 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400182;3:4>4 cost=18.115 original=0.953 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400180;4:4>4 cost=25.874 original=1.362 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017a;5:4>4 cost=19.746 original=1.039 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017f;6:4>4 cost=33.949 original=1.787 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x100000840017e;7:4>4 cost=24.991 original=1.315 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x1000008400078]
2026-06-27 04:15:40.692 +74692ms hook GPSRouteProducer 0x44cc7c call=9 graph=0x59101d990 query=0x79e8e330 outResult=0x79e8e490 query_start00=(-1585.96,1240.98,17.29,1) query_end10=(-1590.03,1241.49,17.8057,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.692 +74692ms hook GPSRouteProducer 0x44cc7c call=11 graph=0x59101d990 query=0x7990e330 outResult=0x7990e490 query_start00=(-1532.46,1145.68,17.18,1) query_end10=(-1536.24,1147.54,17.1747,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.692 +74692ms hook GPSRouteProducer 0x44cc7c call=8 graph=0x59101d990 query=0x795ce330 outResult=0x795ce490 query_start00=(-1580.28,1233.48,16.97,1) query_end10=(-1584.91,1233.66,17.1898,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.697 +74697ms hook GPSRouteProducer result call=11 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=28 edgeCostMin=0.806 edgeCostMax=109.933 edgeCostAvg=19.916 edgeSrcClasses=[3:28] edgeDstClasses=[3:27,invalid:1] spatialAllowed=28 spatialLookupOk=28 spatialLookupFailed=0 spatialAdjusted=28 spatialClasses=[R:28:avgMult=19.000] edgeRetRvas=[0x44f457:27,0x44f629:1] edgeSamples=[0:3>3 cost=1.842 original=0.097 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000f5 dst=0x1000008100102;1:3>3 cost=9.234 original=0.486 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x1000008100100;2:3>3 cost=11.063 original=0.582 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x100000810010b;3:3>3 cost=5.162 original=0.272 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000f9;4:3>3 cost=11.356 original=0.598 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000fa;5:3>3 cost=5.064 original=0.267 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810010b dst=0x1000008100111;6:3>3 cost=7.976 original=0.420 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100111 dst=0x1000008100122;7:3>3 cost=0.806 original=0.042 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000fa dst=0x10000081000f6]
2026-06-27 04:15:40.698 +74698ms hook GPSRouteProducer result call=6 value=0x42ae6120 out_u0c=7/0x7 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=38 edgeCostMin=0.766 edgeCostMax=55.047 edgeCostAvg=15.023 edgeSrcClasses=[3:34,4:4] edgeDstClasses=[3:32,4:5,invalid:1] spatialAllowed=38 spatialLookupOk=38 spatialLookupFailed=0 spatialAdjusted=38 spatialClasses=[P:38:avgMult=19.000] edgeRetRvas=[0x44f457:37,0x44f629:1] edgeSamples=[0:3>3 cost=12.089 original=0.636 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000ce;1:3>3 cost=8.991 original=0.473 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000d4;2:3>3 cost=3.207 original=0.169 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d4 dst=0x10000082000d5;3:3>3 cost=19.750 original=1.039 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x1000008200114;4:3>3 cost=17.126 original=0.901 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x10000082000d6;5:3>3 cost=26.888 original=1.415 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x10000082000d3;6:3>3 cost=20.872 original=1.099 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x1000008200092;7:3>3 cost=31.540 original=1.660 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200113]
2026-06-27 04:15:40.698 +74698ms hook GPSRouteProducer 0x44cc7c call=15 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1540.08,1153.4,17.18,1) query_end10=(-1537.57,1151.1,17.1779,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1089981696/0x40f7cd00 query_ptr98=0 query_ptra0=0 query_flagsa8=3349245904/0xc7a16fd0 ret_rva=0x6517d1
2026-06-27 04:15:40.698 +74698ms hook GPSRouteProducer 0x44cc7c call=16 graph=0x59101d990 query=0x796ce330 outResult=0x796ce490 query_start00=(-1566.6,1155.07,17.18,1) query_end10=(-1569.6,1151,17.1797,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.699 +74699ms hook GPSRouteProducer 0x44cc7c call=13 graph=0x59101d990 query=0x79a0e330 outResult=0x79a0e490 query_start00=(-1567.28,1157.42,17.1922,1) query_end10=(-1570.28,1152.32,17.1798,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.699 +74699ms hook GPSRouteProducer result call=7 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=1.561 edgeCostMax=156.786 edgeCostAvg=42.006 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] spatialAllowed=11 spatialLookupOk=11 spatialLookupFailed=0 spatialAdjusted=11 spatialClasses=[R:2:avgMult=19.000,P:9:avgMult=19.000] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=114.542 original=6.029 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=4.429 original=0.233 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=4.213 original=0.222 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>3 cost=38.966 original=2.051 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00017 dst=0x1000007f00016;4:3>255 cost=25.026 original=1.317 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007f00016 dst=0x0;5:3>3 cost=1.561 original=0.082 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;6:3>3 cost=156.786 original=8.252 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f;7:3>3 cost=95.579 original=5.030 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00262 dst=0x1000007e00261]
2026-06-27 04:15:40.699 +74699ms hook GPSRouteProducer 0x44cc7c call=12 graph=0x59101d990 query=0x793ce330 outResult=0x793ce490 query_start00=(-1531.66,1139.19,17.18,1) query_end10=(-1534.03,1141.38,17.1792,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.699 +74699ms hook GPSRouteProducer result call=8 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.714 edgeCostMax=92.152 edgeCostAvg=32.452 edgeSrcClasses=[3:13] edgeDstClasses=[3:12,invalid:1] spatialAllowed=13 spatialLookupOk=13 spatialLookupFailed=0 spatialAdjusted=13 spatialClasses=[R:4:avgMult=19.000,P:9:avgMult=19.000] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=10.884 original=0.573 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=53.107 original=2.795 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=81.159 original=4.272 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>255 cost=7.014 original=0.369 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007f00017 dst=0x0;4:3>3 cost=38.842 original=2.044 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00014 dst=0x1000007f00011;5:3>3 cost=4.848 original=0.255 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00011 dst=0x1000007f0000d;6:3>3 cost=20.495 original=1.079 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;7:3>3 cost=92.152 original=4.850 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f]
2026-06-27 04:15:40.699 +74699ms hook GPSRouteProducer result call=3 value=0x42ae6120 out_u0c=7/0x7 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=35 edgeCostMin=0.419 edgeCostMax=41.677 edgeCostAvg=16.522 edgeSrcClasses=[3:25,4:10] edgeDstClasses=[3:22,4:12,invalid:1] spatialAllowed=35 spatialLookupOk=35 spatialLookupFailed=0 spatialAdjusted=35 spatialClasses=[R:35:avgMult=19.000] edgeRetRvas=[0x44f457:34,0x44f629:1] edgeSamples=[0:3>3 cost=0.646 original=0.034 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00240;1:3>3 cost=16.692 original=0.879 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00243;2:3>3 cost=26.869 original=1.414 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00240 dst=0x1000007e0023c;3:3>3 cost=5.937 original=0.312 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00243 dst=0x1000007e00245;4:3>3 cost=33.250 original=1.750 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e00244;5:3>4 cost=17.271 original=0.909 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e0012b;6:3>3 cost=8.516 original=0.448 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0023c dst=0x1000007e0024a;7:3>3 cost=5.358 original=0.282 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0024a dst=0x1000007e00258]
2026-06-27 04:15:40.700 +74700ms hook GPSRouteProducer 0x44cc7c call=17 graph=0x59101d990 query=0x7990e010 outResult=0x7990e2b8 query_start00=(-1532.46,1145.68,17.18,1) query_end10=(-1537.74,1141.3,17.18,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1124416512/0x43053c00 query_ptr98=0 query_ptra0=0 query_flagsa8=2525301456/0x96850ad0 ret_rva=0x6517d1
2026-06-27 04:15:40.700 +74700ms hook GPSRouteProducer 0x44cc7c call=14 graph=0x59101d990 query=0x794ce330 outResult=0x794ce490 query_start00=(-1598.3,1165.62,17.76,1) query_end10=(-1602.13,1159.29,17.7599,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.700 +74700ms hook GPSRouteProducer 0x44cc7c call=19 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1585.97,1231.51,17.0766,1) query_end10=(-1587.32,1238.12,17.5214,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1110620928/0x4232bb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3204873712/0xbf067df0 ret_rva=0x6517d1
2026-06-27 04:15:40.700 +74700ms hook GPSRouteProducer result call=4 value=0x42ae6120 out_u0c=11/0xb out_u1c=1/0x1 out_u20=2974880696/0xb15113b8 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=58 edgeCostMin=0.473 edgeCostMax=71.690 edgeCostAvg=18.437 edgeSrcClasses=[3:42,4:16] edgeDstClasses=[3:37,4:19,invalid:2] spatialAllowed=58 spatialLookupOk=58 spatialLookupFailed=0 spatialAdjusted=58 spatialClasses=[R:58:avgMult=19.000] edgeRetRvas=[0x44f457:56,0x44f629:2] edgeSamples=[0:3>3 cost=7.735 original=0.407 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00271;1:3>4 cost=6.782 original=0.357 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e0013b;2:3>3 cost=19.653 original=1.034 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00269;3:4>4 cost=11.861 original=0.624 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00144;4:4>4 cost=25.100 original=1.321 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00140;5:3>3 cost=10.577 original=0.557 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e0026d;6:3>3 cost=18.035 original=0.949 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e00270;7:3>3 cost=11.018 original=0.580 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0026d dst=0x1000007e0026b]
2026-06-27 04:15:40.703 +74703ms hook GPSRouteProducer result call=12 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=0.041 edgeCostMax=67.538 edgeCostAvg=12.383 edgeSrcClasses=[3:20] edgeDstClasses=[3:19,invalid:1] spatialAllowed=20 spatialLookupOk=20 spatialLookupFailed=0 spatialAdjusted=20 spatialClasses=[R:20:avgMult=19.000] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:3>3 cost=7.646 original=0.402 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;1:3>3 cost=0.041 original=0.002 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x1000008100119;2:3>3 cost=37.983 original=1.999 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;3:3>3 cost=11.178 original=0.588 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;4:3>3 cost=23.003 original=1.211 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=15.211 original=0.801 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=67.538 original=3.555 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100122;7:3>3 cost=26.654 original=1.403 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100128]
2026-06-27 04:15:40.703 +74703ms hook GPSRouteProducer 0x44cc7c call=22 graph=0x59101d990 query=0x79b0e010 outResult=0x79b0e2b8 query_start00=(-1576.05,1224.76,17,1) query_end10=(-1577.68,1226.06,16.9636,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1082398208/0x40841600 query_ptr98=0 query_ptra0=0 query_flagsa8=3100265040/0xb8ca4a50 ret_rva=0x6517d1
2026-06-27 04:15:40.703 +74703ms hook GPSRouteProducer 0x44cc7c call=18 graph=0x59101d990 query=0x31bfc0 outResult=0x31c268 query_start00=(-1540.02,1172.84,17.16,1) query_end10=(-1542.61,1166.46,17.1925,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1089776384/0x40f4ab00 query_ptr98=0 query_ptra0=0 query_flagsa8=2775785296/0xa5731f50 ret_rva=0x6517d1
2026-06-27 04:15:40.703 +74703ms hook GPSRouteProducer 0x44cc7c call=21 graph=0x59101d990 query=0x79c8e010 outResult=0x79c8e2b8 query_start00=(-1579.61,1222.07,16.95,1) query_end10=(-1580.72,1229.82,16.9285,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1076041216/0x40231600 query_ptr98=0 query_ptra0=0 query_flagsa8=3139297200/0xbb1ddfb0 ret_rva=0x6517d1
2026-06-27 04:15:40.704 +74704ms hook GPSRouteProducer 0x44cc7c call=20 graph=0x59101d990 query=0x795ce010 outResult=0x795ce2b8 query_start00=(-1580.28,1233.48,16.97,1) query_end10=(-1585.39,1235.75,17.3208,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098875904/0x417f8400 query_ptr98=0 query_ptra0=0 query_flagsa8=2721314352/0xa233f630 ret_rva=0x6517d1
2026-06-27 04:15:40.729 +74729ms hook GPSRouteProducer result call=18 value=0x42ae6120 out_u0c=14/0xe out_u1c=5/0x5 out_u20=2244012320/0x85c0e920 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=91 edgeCostMin=0.338 edgeCostMax=63.463 edgeCostAvg=16.039 edgeSrcClasses=[3:73,4:18] edgeDstClasses=[3:70,4:20,invalid:1] spatialAllowed=91 spatialLookupOk=91 spatialLookupFailed=0 spatialAdjusted=91 spatialClasses=[P:91:avgMult=19.000] edgeRetRvas=[0x44f457:90,0x44f629:1] edgeSamples=[0:3>3 cost=8.062 original=0.424 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000ce;1:3>3 cost=1.460 original=0.077 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000d4;2:3>3 cost=2.539 original=0.134 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d4 dst=0x10000082000d5;3:3>3 cost=11.172 original=0.588 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x1000008200114;4:3>3 cost=17.739 original=0.934 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x10000082000d6;5:3>3 cost=28.635 original=1.507 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200113;6:3>3 cost=7.585 original=0.399 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200115;7:3>3 cost=26.888 original=1.415 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x10000082000d3]
2026-06-27 04:15:40.730 +74730ms hook GPSRouteProducer 0x44cc7c call=23 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1531.66,1139.19,17.18,1) query_end10=(-1535.1,1141.91,17.1791,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1065461504/0x3f81a700 query_ptr98=0 query_ptra0=0 query_flagsa8=3049901488/0xb5c9cdb0 ret_rva=0x6517d1
2026-06-27 04:15:40.730 +74730ms hook GPSRouteProducer result call=19 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=1.616 edgeCostMax=156.550 edgeCostAvg=42.764 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] spatialAllowed=19 spatialLookupOk=19 spatialLookupFailed=0 spatialAdjusted=19 spatialClasses=[R:7:avgMult=19.000,P:12:avgMult=19.000] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=114.542 original=6.029 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=4.431 original=0.233 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=4.010 original=0.211 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>3 cost=38.180 original=2.009 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00017 dst=0x1000007f00016;4:3>3 cost=1.616 original=0.085 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;5:3>3 cost=156.550 original=8.239 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f;6:3>3 cost=95.255 original=5.013 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00262 dst=0x1000007e00261;7:3>3 cost=5.479 original=0.288 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00262 dst=0x1000007e0024c]
2026-06-27 04:15:40.731 +74731ms hook GPSRouteProducer result call=21 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=69 edgeCostMin=0.504 edgeCostMax=75.297 edgeCostAvg=19.624 edgeSrcClasses=[3:46,4:23] edgeDstClasses=[3:44,4:24,invalid:1] spatialAllowed=69 spatialLookupOk=69 spatialLookupFailed=0 spatialAdjusted=69 spatialClasses=[R:69:avgMult=19.000] edgeRetRvas=[0x44f457:68,0x44f629:1] edgeSamples=[0:3>3 cost=2.715 original=0.143 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00240;1:3>3 cost=4.671 original=0.246 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00243;2:3>3 cost=20.962 original=1.103 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00240 dst=0x1000007e0023c;3:3>3 cost=0.504 original=0.027 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00243 dst=0x1000007e00245;4:3>3 cost=46.810 original=2.464 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e00244;5:3>4 cost=1.326 original=0.070 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e0012b;6:4>4 cost=0.614 original=0.032 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e0012a;7:4>4 cost=39.096 original=2.058 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e00130]
2026-06-27 04:15:40.731 +74731ms hook GPSRouteProducer result call=20 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.092 edgeCostMax=92.972 edgeCostAvg=35.400 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] spatialAllowed=19 spatialLookupOk=19 spatialLookupFailed=0 spatialAdjusted=19 spatialClasses=[R:9:avgMult=19.000,P:10:avgMult=19.000] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=21.447 original=1.129 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=53.107 original=2.795 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=68.361 original=3.598 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>3 cost=50.860 original=2.677 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00014 dst=0x1000007f00011;4:3>3 cost=15.549 original=0.818 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;5:3>3 cost=92.152 original=4.850 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f;6:3>3 cost=11.871 original=0.625 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00017 dst=0x1000007f00016;7:3>255 cost=26.231 original=1.381 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007f00016 dst=0x0]
2026-06-27 04:15:40.731 +74731ms hook GPSRouteProducer result call=15 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2842863888/0xa972a910 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.176 edgeCostMax=44.914 edgeCostAvg=19.251 edgeSrcClasses=[4:19] edgeDstClasses=[4:18,invalid:1] spatialAllowed=19 spatialLookupOk=19 spatialLookupFailed=0 spatialAdjusted=19 spatialClasses=[R:6:avgMult=19.000,P:13:avgMult=19.000] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:4>4 cost=15.811 original=0.832 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x10000081002d4;1:4>4 cost=3.751 original=0.197 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x1000008100245;2:4>4 cost=14.083 original=0.741 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100245 dst=0x1000008100248;3:4>4 cost=16.206 original=0.853 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002d0;4:4>4 cost=29.831 original=1.570 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002cf;5:4>4 cost=25.715 original=1.353 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x1000008100246;6:4>4 cost=28.862 original=1.519 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x100000810024a;7:4>4 cost=7.601 original=0.400 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d0 dst=0x10000081002d1]
2026-06-27 04:15:40.732 +74732ms hook GPSRouteProducer 0x44cc7c call=25 graph=0x59101d990 query=0x7980dfc0 outResult=0x7980e120 query_start00=(-1585.97,1231.51,17.0766,1) query_end10=(-1587.32,1238.12,17.5214,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.733 +74733ms hook GPSRouteProducer 0x44cc7c call=27 graph=0x59101d990 query=0x795cdfc0 outResult=0x795ce120 query_start00=(-1580.28,1233.48,16.97,1) query_end10=(-1585.39,1235.75,17.3208,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.737 +74737ms hook GPSRouteProducer result call=23 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.041 edgeCostMax=69.187 edgeCostAvg=14.982 edgeSrcClasses=[3:26] edgeDstClasses=[3:25,invalid:1] spatialAllowed=26 spatialLookupOk=26 spatialLookupFailed=0 spatialAdjusted=26 spatialClasses=[R:26:avgMult=19.000] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=7.919 original=0.417 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;1:3>3 cost=0.041 original=0.002 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x1000008100119;2:3>3 cost=37.986 original=1.999 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;3:3>3 cost=10.974 original=0.578 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;4:3>3 cost=22.263 original=1.172 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=15.650 original=0.824 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=69.187 original=3.641 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100122;7:3>3 cost=23.550 original=1.239 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100128]
2026-06-27 04:15:40.742 +74742ms hook GPSRouteProducer 0x44cc7c call=28 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1540.08,1153.4,17.18,1) query_end10=(-1539.87,1156.22,17.2355,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125931264/0x431c5900 query_ptr98=0 query_ptra0=0 query_flagsa8=3349245904/0xc7a16fd0 ret_rva=0x6517d1
2026-06-27 04:15:40.746 +74746ms hook GPSRouteProducer result call=9 value=0x42ae6120 out_u0c=10/0xa out_u1c=3/0x3 out_u20=2944567712/0xaf8289a0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=298 edgeCostMin=0.001 edgeCostMax=97.603 edgeCostAvg=4.157 edgeSrcClasses=[3:243,15:55] edgeDstClasses=[3:242,15:55,invalid:1] spatialAllowed=298 spatialLookupOk=298 spatialLookupFailed=0 spatialAdjusted=298 spatialClasses=[H:234:avgMult=0.050,P:64:avgMult=19.000] edgeRetRvas=[0x44f457:297,0x44f629:1] edgeSamples=[0:3>3 cost=3.612 original=0.190 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f0011c;1:3>3 cost=16.257 original=0.856 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f00118;2:3>3 cost=33.403 original=1.758 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011a;3:3>3 cost=5.125 original=0.270 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011b;4:3>3 cost=2.925 original=0.154 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011b dst=0x1000007f00117;5:3>3 cost=6.717 original=0.354 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00118 dst=0x1000007f00001;6:3>3 cost=4.541 original=0.239 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00001 dst=0x1000007f00004;7:3>3 cost=2.190 original=0.115 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00004 dst=0x1000007f0000c]
2026-06-27 04:15:40.746 +74746ms hook GPSRouteProducer result call=25 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=1.616 edgeCostMax=156.550 edgeCostAvg=42.764 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] spatialAllowed=19 spatialLookupOk=19 spatialLookupFailed=0 spatialAdjusted=19 spatialClasses=[R:7:avgMult=19.000,P:12:avgMult=19.000] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=114.542 original=6.029 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=4.431 original=0.233 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=4.010 original=0.211 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>3 cost=38.180 original=2.009 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00017 dst=0x1000007f00016;4:3>3 cost=1.616 original=0.085 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;5:3>3 cost=156.550 original=8.239 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f;6:3>3 cost=95.255 original=5.013 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00262 dst=0x1000007e00261;7:3>3 cost=5.479 original=0.288 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00262 dst=0x1000007e0024c]
2026-06-27 04:15:40.746 +74746ms hook GPSRouteProducer result call=27 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.092 edgeCostMax=92.972 edgeCostAvg=35.400 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] spatialAllowed=19 spatialLookupOk=19 spatialLookupFailed=0 spatialAdjusted=19 spatialClasses=[R:9:avgMult=19.000,P:10:avgMult=19.000] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=21.447 original=1.129 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00014;1:3>3 cost=53.107 original=2.795 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00018;2:3>3 cost=68.361 original=3.598 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00019 dst=0x1000007f00017;3:3>3 cost=50.860 original=2.677 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00014 dst=0x1000007f00011;4:3>3 cost=15.549 original=0.818 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007e00262;5:3>3 cost=92.152 original=4.850 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00018 dst=0x1000007f0000f;6:3>3 cost=11.871 original=0.625 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00017 dst=0x1000007f00016;7:3>255 cost=26.231 original=1.381 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007f00016 dst=0x0]
2026-06-27 04:15:40.746 +74746ms hook GPSRouteProducer result call=16 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2906834624/0xad42c6c0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=21 edgeCostMin=0.683 edgeCostMax=63.650 edgeCostAvg=26.527 edgeSrcClasses=[4:21] edgeDstClasses=[4:19,invalid:2] spatialAllowed=21 spatialLookupOk=21 spatialLookupFailed=0 spatialAdjusted=21 spatialClasses=[R:6:avgMult=19.000,P:15:avgMult=19.000] edgeRetRvas=[0x44f457:19,0x44f629:2] edgeSamples=[0:4>4 cost=0.683 original=0.036 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c8 dst=0x1000007c001c7;1:4>4 cost=41.295 original=2.173 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001e2;2:4>4 cost=29.932 original=1.575 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001ca;3:4>4 cost=20.507 original=1.079 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ca dst=0x1000007c001f4;4:4>4 cost=47.253 original=2.487 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001c4;5:4>4 cost=6.856 original=0.361 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001e3;6:4>4 cost=37.744 original=1.987 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e3 dst=0x1000007c001e7;7:4>4 cost=8.674 original=0.457 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e3 dst=0x1000007c001e4]
2026-06-27 04:15:40.747 +74747ms hook GPSRouteProducer 0x44cc7c call=24 graph=0x59101d990 query=0x31bfc0 outResult=0x31c268 query_start00=(-1540.02,1172.84,17.16,1) query_end10=(-1542.24,1166.29,17.1922,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1092855296/0x4123a600 query_ptr98=0 query_ptra0=0 query_flagsa8=2775785296/0xa5731f50 ret_rva=0x6517d1
2026-06-27 04:15:40.747 +74747ms hook GPSRouteProducer 0x44cc7c call=26 graph=0x59101d990 query=0x79c8e010 outResult=0x79c8e2b8 query_start00=(-1579.61,1222.07,16.95,1) query_end10=(-1574.99,1223.73,17.0394,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3139297200/0xbb1ddfb0 ret_rva=0x6517d1
2026-06-27 04:15:40.747 +74747ms hook GPSRouteProducer result call=13 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=3222002272/0xc00bda60 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=25 edgeCostMin=2.601 edgeCostMax=41.476 edgeCostAvg=19.590 edgeSrcClasses=[4:25] edgeDstClasses=[4:24,invalid:1] spatialAllowed=25 spatialLookupOk=25 spatialLookupFailed=0 spatialAdjusted=25 spatialClasses=[P:25:avgMult=19.000] edgeRetRvas=[0x44f457:24,0x44f629:1] edgeSamples=[0:4>4 cost=4.703 original=0.248 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c3 dst=0x1000007c001c2;1:4>4 cost=7.376 original=0.388 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c2 dst=0x1000007c001ec;2:4>4 cost=2.601 original=0.137 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001ed;3:4>4 cost=25.320 original=1.333 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001eb;4:4>4 cost=14.505 original=0.763 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ed dst=0x1000007c001f4;5:4>4 cost=25.282 original=1.331 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001ca;6:4>4 cost=35.975 original=1.893 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001f3;7:4>4 cost=5.618 original=0.296 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001eb dst=0x1000007c001f1]
2026-06-27 04:15:40.748 +74748ms hook GPSRouteProducer 0x44cc7c call=30 graph=0x59101d990 query=0x79e8e010 outResult=0x79e8e2b8 query_start00=(-1585.96,1240.98,17.29,1) query_end10=(-1592.05,1244.19,17.9096,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125311744/0x4312e500 query_ptr98=0 query_ptra0=0 query_flagsa8=3146276400/0xbb885e30 ret_rva=0x6517d1
2026-06-27 04:15:40.748 +74748ms hook GPSRouteProducer result call=22 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=32 edgeCostMin=0.861 edgeCostMax=56.278 edgeCostAvg=16.916 edgeSrcClasses=[3:22,4:10] edgeDstClasses=[3:18,4:13,invalid:1] spatialAllowed=32 spatialLookupOk=32 spatialLookupFailed=0 spatialAdjusted=32 spatialClasses=[R:32:avgMult=19.000] edgeRetRvas=[0x44f457:31,0x44f629:1] edgeSamples=[0:3>3 cost=5.656 original=0.298 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00271;1:3>4 cost=6.241 original=0.328 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e0013b;2:3>3 cost=19.653 original=1.034 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00269;3:3>3 cost=11.778 original=0.620 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e0026d;4:3>3 cost=15.981 original=0.841 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e00270;5:4>4 cost=15.508 original=0.816 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00144;6:4>4 cost=24.022 original=1.264 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00140;7:3>3 cost=5.480 original=0.288 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0026d dst=0x1000007e0026b]
2026-06-27 04:15:40.749 +74749ms hook GPSRouteProducer 0x44cc7c call=29 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1531.66,1139.19,17.18,1) query_end10=(-1529.36,1140.97,17.1794,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1094636544/0x413ed400 query_ptr98=0 query_ptra0=0 query_flagsa8=3049901488/0xb5c9cdb0 ret_rva=0x6517d1
2026-06-27 04:15:40.749 +74749ms hook GPSRouteProducer result call=17 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.028 edgeCostMax=105.560 edgeCostAvg=20.565 edgeSrcClasses=[3:34] edgeDstClasses=[3:33,invalid:1] spatialAllowed=34 spatialLookupOk=34 spatialLookupFailed=0 spatialAdjusted=34 spatialClasses=[R:34:avgMult=19.000] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.295 original=0.068 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000f5 dst=0x1000008100102;1:3>3 cost=16.157 original=0.850 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x1000008100100;2:3>3 cost=0.171 original=0.009 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x100000810010b;3:3>3 cost=0.028 original=0.001 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810010b dst=0x1000008100111;4:3>3 cost=10.144 original=0.534 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100111 dst=0x1000008100122;5:3>3 cost=54.193 original=2.852 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100122 dst=0x1000008100114;6:3>3 cost=3.103 original=0.163 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100122 dst=0x1000008100126;7:3>3 cost=91.904 original=4.837 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100120]
2026-06-27 04:15:40.749 +74749ms hook GPSRouteProducer 0x44cc7c call=31 graph=0x59101d990 query=0x796ce010 outResult=0x796ce2b8 query_start00=(-1566.6,1155.07,17.18,1) query_end10=(-1559.27,1153.71,17.1797,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1083771136/0x40990900 query_ptr98=0 query_ptra0=0 query_flagsa8=2530418192/0x96d31e10 ret_rva=0x6517d1
2026-06-27 04:15:40.749 +74749ms hook GPSRouteProducer 0x44cc7c call=33 graph=0x59101d990 query=0x795ce330 outResult=0x795ce490 query_start00=(-1607.06,1164.64,17.76,1) query_end10=(-1610.15,1159.94,17.7601,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.749 +74749ms hook GPSRouteProducer 0x44cc7c call=32 graph=0x59101d990 query=0x79a0e010 outResult=0x79a0e2b8 query_start00=(-1567.28,1157.42,17.1922,1) query_end10=(-1563.28,1151.12,17.1801,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1074984704/0x4012f700 query_ptr98=0 query_ptra0=0 query_flagsa8=2781800272/0xa5cee750 ret_rva=0x6517d1
2026-06-27 04:15:40.759 +74759ms hook GPSRouteProducer result call=28 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2939861024/0xaf3ab820 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=8.386 edgeCostMax=50.490 edgeCostAvg=22.600 edgeSrcClasses=[4:13] edgeDstClasses=[4:12,invalid:1] spatialAllowed=13 spatialLookupOk=13 spatialLookupFailed=0 spatialAdjusted=13 spatialClasses=[R:2:avgMult=19.000,P:11:avgMult=19.000] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:4>4 cost=8.514 original=0.448 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x10000081002d4;1:4>4 cost=17.359 original=0.914 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x1000008100245;2:4>4 cost=8.502 original=0.447 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002d0;3:4>4 cost=39.043 original=2.055 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002cf;4:4>4 cost=12.264 original=0.645 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d0 dst=0x10000081002d1;5:4>255 cost=23.434 original=1.233 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x10000081002d1 dst=0x0;6:4>4 cost=8.386 original=0.441 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100245 dst=0x1000008100248;7:4>4 cost=50.490 original=2.657 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x1000008100246]
2026-06-27 04:15:40.759 +74759ms hook GPSRouteProducer result call=14 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2982013216/0xb1bde920 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=40 edgeCostMin=0.932 edgeCostMax=72.863 edgeCostAvg=23.941 edgeSrcClasses=[4:40] edgeDstClasses=[4:39,invalid:1] spatialAllowed=40 spatialLookupOk=40 spatialLookupFailed=0 spatialAdjusted=40 spatialClasses=[P:40:avgMult=19.000] edgeRetRvas=[0x44f457:39,0x44f629:1] edgeSamples=[0:4>4 cost=7.392 original=0.389 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x10000077001fd;1:4>4 cost=6.490 original=0.342 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x1000007700208;2:4>4 cost=17.543 original=0.923 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x100000770020a;3:4>4 cost=1.714 original=0.090 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x10000077001ff;4:4>4 cost=37.051 original=1.950 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x1000007700209;5:4>4 cost=8.191 original=0.431 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001ff dst=0x10000077001fe;6:4>4 cost=3.991 original=0.210 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020a dst=0x100000770020f;7:4>4 cost=0.932 original=0.049 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001fe dst=0x100000780006c]
2026-06-27 04:15:40.759 +74759ms hook GPSRouteProducer 0x44cc7c call=34 graph=0x59101d990 query=0x79b0e010 outResult=0x79b0e2b8 query_start00=(-1576.05,1224.76,17,1) query_end10=(-1572.78,1225.39,17.1797,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1094335232/0x413a3b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3100265040/0xb8ca4a50 ret_rva=0x6517d1
2026-06-27 04:15:40.760 +74760ms hook GPSRouteProducer 0x44cc7c call=36 graph=0x59101d990 query=0x7980e330 outResult=0x7980e490 query_start00=(-1570.87,1146.54,17.1971,1) query_end10=(-1573.97,1149.18,17.1687,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.760 +74760ms hook GPSRouteProducer result call=29 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.086 edgeCostMax=68.922 edgeCostAvg=17.635 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] spatialAllowed=14 spatialLookupOk=14 spatialLookupFailed=0 spatialAdjusted=14 spatialClasses=[R:14:avgMult=19.000] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=21.198 original=1.116 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;1:3>3 cost=0.086 original=0.005 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x1000008100119;2:3>3 cost=36.547 original=1.924 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;3:3>3 cost=22.003 original=1.158 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;4:3>3 cost=37.641 original=1.981 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=20.608 original=1.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=0.425 original=0.022 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110;7:3>3 cost=4.504 original=0.237 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100110 dst=0x10000081000c1]
2026-06-27 04:15:40.767 +74767ms hook GPSRouteProducer result call=24 value=0x42ae6120 out_u0c=15/0xf out_u1c=6/0x6 out_u20=2244012320/0x85c0e920 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=91 edgeCostMin=0.398 edgeCostMax=65.301 edgeCostAvg=16.466 edgeSrcClasses=[3:71,4:20] edgeDstClasses=[3:68,4:22,invalid:1] spatialAllowed=91 spatialLookupOk=91 spatialLookupFailed=0 spatialAdjusted=91 spatialClasses=[P:91:avgMult=19.000] edgeRetRvas=[0x44f457:90,0x44f629:1] edgeSamples=[0:3>3 cost=8.062 original=0.424 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000ce;1:3>3 cost=1.220 original=0.064 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000d4;2:3>3 cost=2.250 original=0.118 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d4 dst=0x10000082000d5;3:3>3 cost=12.364 original=0.651 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x1000008200114;4:3>3 cost=17.550 original=0.924 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x10000082000d6;5:3>3 cost=27.582 original=1.452 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200113;6:3>3 cost=11.720 original=0.617 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200115;7:3>3 cost=26.888 original=1.415 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x10000082000d3]
2026-06-27 04:15:40.767 +74767ms hook GPSRouteProducer result call=34 value=0x42ae6120 out_u0c=6/0x6 out_u1c=4/0x4 out_u20=2951901152/0xaff26fe0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=47 edgeCostMin=0.650 edgeCostMax=69.297 edgeCostAvg=16.182 edgeSrcClasses=[3:38,4:9] edgeDstClasses=[3:36,4:10,invalid:1] spatialAllowed=47 spatialLookupOk=47 spatialLookupFailed=0 spatialAdjusted=47 spatialClasses=[R:47:avgMult=19.000] edgeRetRvas=[0x44f457:46,0x44f629:1] edgeSamples=[0:3>3 cost=4.596 original=0.242 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00271;1:3>4 cost=13.832 original=0.728 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e0013b;2:3>3 cost=19.863 original=1.045 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00269;3:3>3 cost=12.780 original=0.673 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e0026d;4:3>3 cost=17.929 original=0.944 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e00270;5:4>4 cost=2.691 original=0.142 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00144;6:4>4 cost=32.533 original=1.712 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00140;7:4>4 cost=1.550 original=0.082 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00144 dst=0x1000007e00145]
2026-06-27 04:15:40.768 +74768ms hook GPSRouteProducer 0x44cc7c call=35 graph=0x59101d990 query=0x7990e010 outResult=0x7990e2b8 query_start00=(-1532.46,1145.68,17.18,1) query_end10=(-1537.64,1150.23,17.1772,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1106695168/0x41f6d400 query_ptr98=0 query_ptra0=0 query_flagsa8=2525301456/0x96850ad0 ret_rva=0x6517d1
2026-06-27 04:15:40.768 +74768ms hook GPSRouteProducer 0x44cc7c call=39 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1531.66,1139.19,17.18,1) query_end10=(-1534.86,1142.28,17.1702,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1105826048/0x41e99100 query_ptr98=0 query_ptra0=0 query_flagsa8=3049901488/0xb5c9cdb0 ret_rva=0x6517d1
2026-06-27 04:15:40.768 +74768ms hook GPSRouteProducer result call=36 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2844243744/0xa987b720 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1028400913/0x3d4c2711 out_flags40=1/0x1 out_state42=1 edgeCostCalls=27 edgeCostMin=0.557 edgeCostMax=56.761 edgeCostAvg=15.186 edgeSrcClasses=[4:27] edgeDstClasses=[4:26,invalid:1] spatialAllowed=27 spatialLookupOk=27 spatialLookupFailed=0 spatialAdjusted=27 spatialClasses=[R:27:avgMult=19.000] edgeRetRvas=[0x44f457:26,0x44f629:1] edgeSamples=[0:4>4 cost=8.535 original=0.449 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c0023d;1:4>4 cost=0.662 original=0.035 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c00240;2:4>4 cost=16.083 original=0.846 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c0023e;3:4>4 cost=1.909 original=0.100 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c00246;4:4>4 cost=21.710 original=1.143 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c00245;5:4>4 cost=34.590 original=1.821 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c001e1;6:4>4 cost=4.844 original=0.255 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023e dst=0x1000007c00225;7:4>4 cost=10.099 original=0.532 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00225 dst=0x1000007c00224]
2026-06-27 04:15:40.768 +74768ms hook GPSRouteProducer 0x44cc7c call=37 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1540.08,1153.4,17.18,1) query_end10=(-1546.06,1154.57,17.1792,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1081358848/0x40743a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3349245904/0xc7a16fd0 ret_rva=0x6517d1
2026-06-27 04:15:40.768 +74768ms hook GPSRouteProducer result call=33 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2971806336/0xb1222a80 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=37 edgeCostMin=0.046 edgeCostMax=66.565 edgeCostAvg=27.006 edgeSrcClasses=[4:37] edgeDstClasses=[4:35,invalid:2] spatialAllowed=37 spatialLookupOk=37 spatialLookupFailed=0 spatialAdjusted=37 spatialClasses=[P:37:avgMult=19.000] edgeRetRvas=[0x44f457:35,0x44f629:2] edgeSamples=[0:4>4 cost=28.310 original=1.490 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700221;1:4>4 cost=22.402 original=1.179 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700229;2:4>4 cost=3.622 original=0.191 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x10000077001f1;3:4>4 cost=39.638 original=2.086 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x100000770022b;4:4>4 cost=30.975 original=1.630 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001f1 dst=0x10000077001f5;5:4>4 cost=16.963 original=0.893 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001f1 dst=0x10000077001f0;6:4>4 cost=40.808 original=2.148 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x100000770021c;7:4>4 cost=32.336 original=1.702 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x1000007700224]
2026-06-27 04:15:40.769 +74769ms hook GPSRouteProducer 0x44cc7c call=38 graph=0x59101d990 query=0x794ce010 outResult=0x794ce2b8 query_start00=(-1598.3,1165.62,17.76,1) query_end10=(-1608.34,1160.11,17.7601,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1075069952/0x40144400 query_ptr98=0 query_ptra0=0 query_flagsa8=2781838736/0xa5cf7d90 ret_rva=0x6517d1
2026-06-27 04:15:40.769 +74769ms hook GPSRouteProducer result call=26 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2957974240/0xb04f1ae0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=37 edgeCostMin=0.222 edgeCostMax=72.599 edgeCostAvg=17.739 edgeSrcClasses=[3:24,4:13] edgeDstClasses=[3:23,4:13,invalid:1] spatialAllowed=37 spatialLookupOk=37 spatialLookupFailed=0 spatialAdjusted=37 spatialClasses=[R:37:avgMult=19.000] edgeRetRvas=[0x44f457:36,0x44f629:1] edgeSamples=[0:3>3 cost=0.222 original=0.012 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00240;1:3>3 cost=1.738 original=0.091 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00243;2:3>3 cost=26.367 original=1.388 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00240 dst=0x1000007e0023c;3:3>3 cost=0.806 original=0.042 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00243 dst=0x1000007e00245;4:3>3 cost=41.301 original=2.174 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e00244;5:3>4 cost=16.844 original=0.887 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e0012b;6:4>4 cost=17.291 original=0.910 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e0012a;7:4>4 cost=19.099 original=1.005 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e00130]
2026-06-27 04:15:40.769 +74769ms hook GPSRouteProducer 0x44cc7c call=40 graph=0x59101d990 query=0x31bfc0 outResult=0x31c268 query_start00=(-1540.02,1172.84,17.16,1) query_end10=(-1533.08,1171.55,17.1793,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1091209216/0x410a8800 query_ptr98=0 query_ptra0=0 query_flagsa8=2775785296/0xa5731f50 ret_rva=0x6517d1
2026-06-27 04:15:40.770 +74770ms hook GPSRouteProducer 0x44cc7c call=42 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1570.87,1146.54,17.1971,1) query_end10=(-1563.5,1151.76,17.1776,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1075827712/0x401fd400 query_ptr98=0 query_ptra0=0 query_flagsa8=2651885072/0x9e108e10 ret_rva=0x6517d1
2026-06-27 04:15:40.770 +74770ms hook GPSRouteProducer 0x44cc7c call=41 graph=0x59101d990 query=0x79b0dfc0 outResult=0x79b0e120 query_start00=(-1576.05,1224.76,17,1) query_end10=(-1577.68,1226.06,16.9636,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.807 +74807ms hook GPSRouteProducer 0x44cc7c call=43 graph=0x59101d990 query=0x795ce010 outResult=0x795ce2b8 query_start00=(-1607.06,1164.64,17.76,1) query_end10=(-1615.09,1160.16,17.7603,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1086882048/0x40c88100 query_ptr98=0 query_ptra0=0 query_flagsa8=3371368272/0xc8f2ff50 ret_rva=0x6517d1
2026-06-27 04:15:40.819 +74819ms hook GPSRouteProducer 0x44cc7c call=44 graph=0x59101d990 query=0x79c8dfc0 outResult=0x79c8e120 query_start00=(-1579.61,1222.07,16.95,1) query_end10=(-1574.99,1223.73,17.0394,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.819 +74819ms hook GPSRouteProducer result call=42 value=0x42ae6120 out_u0c=12/0xc out_u1c=11/0xb out_u20=3222177568/0xc00e8720 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=131 edgeCostMin=0.083 edgeCostMax=65.266 edgeCostAvg=24.615 edgeSrcClasses=[4:131] edgeDstClasses=[3:1,4:128,invalid:2] spatialAllowed=131 spatialLookupOk=131 spatialLookupFailed=0 spatialAdjusted=131 spatialClasses=[R:109:avgMult=19.000,P:22:avgMult=19.000] edgeRetRvas=[0x44f457:129,0x44f629:2] edgeSamples=[0:4>4 cost=5.559 original=0.293 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c0023d;1:4>4 cost=5.286 original=0.278 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c00240;2:4>4 cost=11.557 original=0.608 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c0023e;3:4>4 cost=4.663 original=0.245 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c00246;4:4>4 cost=39.037 original=2.055 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c00245;5:4>4 cost=2.741 original=0.144 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c001e1;6:4>4 cost=63.171 original=3.325 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001d1;7:4>4 cost=1.404 original=0.074 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001e0]
2026-06-27 04:15:40.819 +74819ms hook GPSRouteProducer result call=35 value=0x42ae6120 out_u0c=12/0xc out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=75 edgeCostMin=0.345 edgeCostMax=103.636 edgeCostAvg=17.348 edgeSrcClasses=[3:75] edgeDstClasses=[3:74,invalid:1] spatialAllowed=75 spatialLookupOk=75 spatialLookupFailed=0 spatialAdjusted=75 spatialClasses=[R:75:avgMult=19.000] edgeRetRvas=[0x44f457:74,0x44f629:1] edgeSamples=[0:3>3 cost=1.241 original=0.065 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000f5 dst=0x1000008100102;1:3>3 cost=15.124 original=0.796 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x1000008100100;2:3>3 cost=11.448 original=0.603 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x100000810010b;3:3>3 cost=8.619 original=0.454 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810010b dst=0x1000008100111;4:3>3 cost=7.630 original=0.402 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000f9;5:3>3 cost=7.212 original=0.380 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000fa;6:3>3 cost=10.654 original=0.561 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100111 dst=0x1000008100122;7:3>3 cost=5.233 original=0.275 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000fa dst=0x10000081000f6]
2026-06-27 04:15:40.819 +74819ms hook GPSRouteProducer result call=37 value=0x42ae6120 out_u0c=12/0xc out_u1c=11/0xb out_u20=3222168656/0xc00e6450 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=122 edgeCostMin=0.345 edgeCostMax=44.973 edgeCostAvg=15.630 edgeSrcClasses=[3:14,4:108] edgeDstClasses=[3:16,4:105,invalid:1] spatialAllowed=122 spatialLookupOk=122 spatialLookupFailed=0 spatialAdjusted=122 spatialClasses=[R:56:avgMult=19.000,P:66:avgMult=19.000] edgeRetRvas=[0x44f457:121,0x44f629:1] edgeSamples=[0:4>4 cost=15.811 original=0.832 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x10000081002d4;1:4>4 cost=6.569 original=0.346 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x1000008100245;2:4>4 cost=14.582 original=0.767 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100245 dst=0x1000008100248;3:4>4 cost=17.749 original=0.934 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002d0;4:4>4 cost=29.831 original=1.570 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002cf;5:4>4 cost=33.255 original=1.750 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x1000008100246;6:4>4 cost=12.176 original=0.641 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x100000810024a;7:4>4 cost=26.305 original=1.384 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d0 dst=0x10000081002d1]
2026-06-27 04:15:40.819 +74819ms hook GPSRouteProducer result call=32 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3222176096/0xc00e8160 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=72 edgeCostMin=0.030 edgeCostMax=63.263 edgeCostAvg=21.874 edgeSrcClasses=[4:72] edgeDstClasses=[4:71,invalid:1] spatialAllowed=72 spatialLookupOk=72 spatialLookupFailed=0 spatialAdjusted=72 spatialClasses=[R:10:avgMult=19.000,P:62:avgMult=19.000] edgeRetRvas=[0x44f457:71,0x44f629:1] edgeSamples=[0:4>4 cost=5.833 original=0.307 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c3 dst=0x1000007c001c2;1:4>4 cost=4.750 original=0.250 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c2 dst=0x1000007c001ec;2:4>4 cost=24.517 original=1.290 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001ed;3:4>4 cost=6.312 original=0.332 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001eb;4:4>4 cost=5.211 original=0.274 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001eb dst=0x1000007c001f1;5:4>4 cost=27.061 original=1.424 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001db;6:4>4 cost=52.522 original=2.764 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001ef;7:4>4 cost=7.912 original=0.416 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ed dst=0x1000007c001f4]
2026-06-27 04:15:40.820 +74820ms hook GPSRouteProducer 0x44cc7c call=45 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1570.87,1146.54,17.1971,1) query_end10=(-1580.03,1149.38,17.1647,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1094392832/0x413b1c00 query_ptr98=0 query_ptra0=0 query_flagsa8=2651885072/0x9e108e10 ret_rva=0x6517d1
2026-06-27 04:15:40.820 +74820ms hook GPSRouteProducer result call=39 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=27 edgeCostMin=0.039 edgeCostMax=67.109 edgeCostAvg=14.023 edgeSrcClasses=[3:27] edgeDstClasses=[3:26,invalid:1] spatialAllowed=27 spatialLookupOk=27 spatialLookupFailed=0 spatialAdjusted=27 spatialClasses=[R:27:avgMult=19.000] edgeRetRvas=[0x44f457:26,0x44f629:1] edgeSamples=[0:3>3 cost=7.583 original=0.399 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;1:3>3 cost=0.039 original=0.002 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x1000008100119;2:3>3 cost=37.982 original=1.999 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;3:3>3 cost=11.247 original=0.592 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;4:3>3 cost=23.206 original=1.221 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=15.107 original=0.795 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=67.109 original=3.532 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100122;7:3>3 cost=27.568 original=1.451 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100128]
2026-06-27 04:15:40.820 +74820ms hook GPSRouteProducer result call=38 value=0x42ae6120 out_u0c=10/0xa out_u1c=9/0x9 out_u20=3222083744/0xc00d18a0 out_u24=5/0x5 out_u2c=9/0x9 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=107 edgeCostMin=0.489 edgeCostMax=71.043 edgeCostAvg=22.518 edgeSrcClasses=[4:107] edgeDstClasses=[4:105,invalid:2] spatialAllowed=107 spatialLookupOk=107 spatialLookupFailed=0 spatialAdjusted=107 spatialClasses=[P:107:avgMult=19.000] edgeRetRvas=[0x44f457:105,0x44f629:2] edgeSamples=[0:4>4 cost=8.305 original=0.437 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x10000077001fd;1:4>4 cost=6.334 original=0.333 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x1000007700208;2:4>4 cost=19.590 original=1.031 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x100000770020a;3:4>4 cost=6.921 original=0.364 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x10000077001ff;4:4>4 cost=34.043 original=1.792 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x1000007700209;5:4>4 cost=9.231 original=0.486 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001ff dst=0x10000077001fe;6:4>4 cost=4.171 original=0.220 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020a dst=0x100000770020f;7:4>4 cost=25.977 original=1.367 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020f dst=0x1000007700204]
2026-06-27 04:15:40.820 +74820ms hook GPSRouteProducer result call=41 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=32 edgeCostMin=0.861 edgeCostMax=56.278 edgeCostAvg=16.916 edgeSrcClasses=[3:22,4:10] edgeDstClasses=[3:18,4:13,invalid:1] spatialAllowed=32 spatialLookupOk=32 spatialLookupFailed=0 spatialAdjusted=32 spatialClasses=[R:32:avgMult=19.000] edgeRetRvas=[0x44f457:31,0x44f629:1] edgeSamples=[0:3>3 cost=5.656 original=0.298 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00271;1:3>4 cost=6.241 original=0.328 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e0013b;2:3>3 cost=19.653 original=1.034 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00272 dst=0x1000007e00269;3:3>3 cost=11.778 original=0.620 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e0026d;4:3>3 cost=15.981 original=0.841 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00271 dst=0x1000007e00270;5:4>4 cost=15.508 original=0.816 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00144;6:4>4 cost=24.022 original=1.264 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0013b dst=0x1000007e00140;7:3>3 cost=5.480 original=0.288 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0026d dst=0x1000007e0026b]
2026-06-27 04:15:40.831 +74831ms hook GPSRouteProducer 0x44cc7c call=49 graph=0x59101d990 query=0x793cdfc0 outResult=0x793ce120 query_start00=(-1531.66,1139.19,17.18,1) query_end10=(-1529.36,1140.97,17.1794,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.855 +74855ms hook GPSRouteProducer 0x44cc7c call=50 graph=0x59101d990 query=0x794ce010 outResult=0x794ce2b8 query_start00=(-1598.3,1165.62,17.76,1) query_end10=(-1590.94,1156.36,17.76,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1113544192/0x425f5600 query_ptr98=0 query_ptra0=0 query_flagsa8=2781838736/0xa5cf7d90 ret_rva=0x6517d1
2026-06-27 04:15:40.859 +74859ms hook GPSRouteProducer result call=43 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=3222379360/0xc0119b60 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=94 edgeCostMin=0.358 edgeCostMax=75.884 edgeCostAvg=25.395 edgeSrcClasses=[4:94] edgeDstClasses=[4:92,invalid:2] spatialAllowed=94 spatialLookupOk=94 spatialLookupFailed=0 spatialAdjusted=94 spatialClasses=[P:94:avgMult=19.000] edgeRetRvas=[0x44f457:92,0x44f629:2] edgeSamples=[0:4>4 cost=0.452 original=0.024 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700221;1:4>4 cost=33.803 original=1.779 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700229;2:4>4 cost=0.358 original=0.019 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x100000770021c;3:4>4 cost=27.539 original=1.449 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x1000007700224;4:4>4 cost=20.457 original=1.077 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770021c dst=0x100000770021a;5:4>4 cost=35.933 original=1.891 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700223;6:4>4 cost=44.529 original=2.344 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700225;7:4>4 cost=6.722 original=0.354 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x10000077001f1]
2026-06-27 04:15:40.860 +74860ms hook GPSRouteProducer 0x44cc7c call=46 graph=0x59101d990 query=0x7990e010 outResult=0x7990e2b8 query_start00=(-1532.46,1145.68,17.18,1) query_end10=(-1537.97,1150.12,17.1772,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1092089088/0x4117f500 query_ptr98=0 query_ptra0=0 query_flagsa8=2525301456/0x96850ad0 ret_rva=0x6517d1
2026-06-27 04:15:40.860 +74860ms hook GPSRouteProducer 0x44cc7c call=51 graph=0x59101d990 query=0x79b0e330 outResult=0x79b0e490 query_start00=(-1557.8,1146.91,17.18,1) query_end10=(-1556.15,1150.71,17.1798,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.860 +74860ms hook GPSRouteProducer result call=44 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2957974240/0xb04f1ae0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=37 edgeCostMin=0.222 edgeCostMax=72.599 edgeCostAvg=17.739 edgeSrcClasses=[3:24,4:13] edgeDstClasses=[3:23,4:13,invalid:1] spatialAllowed=37 spatialLookupOk=37 spatialLookupFailed=0 spatialAdjusted=37 spatialClasses=[R:37:avgMult=19.000] edgeRetRvas=[0x44f457:36,0x44f629:1] edgeSamples=[0:3>3 cost=0.222 original=0.012 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00240;1:3>3 cost=1.738 original=0.091 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00241 dst=0x1000007e00243;2:3>3 cost=26.367 original=1.388 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00240 dst=0x1000007e0023c;3:3>3 cost=0.806 original=0.042 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00243 dst=0x1000007e00245;4:3>3 cost=41.301 original=2.174 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e00244;5:3>4 cost=16.844 original=0.887 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00245 dst=0x1000007e0012b;6:4>4 cost=17.291 original=0.910 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e0012a;7:4>4 cost=19.099 original=1.005 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e0012b dst=0x1000007e00130]
2026-06-27 04:15:40.872 +74872ms hook GPSRouteProducer 0x44cc7c call=47 graph=0x59101d990 query=0x79d8dfc0 outResult=0x79d8e120 query_start00=(-1540.08,1153.4,17.18,1) query_end10=(-1539.87,1156.22,17.2355,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.873 +74873ms hook GPSRouteProducer 0x44cc7c call=48 graph=0x59101d990 query=0x79a0e010 outResult=0x79a0e2b8 query_start00=(-1567.28,1157.42,17.1922,1) query_end10=(-1575.59,1150.17,17.1607,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1093652224/0x412fcf00 query_ptr98=0 query_ptra0=0 query_flagsa8=2781800272/0xa5cee750 ret_rva=0x6517d1
2026-06-27 04:15:40.884 +74884ms hook GPSRouteProducer result call=49 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.086 edgeCostMax=68.922 edgeCostAvg=17.635 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] spatialAllowed=14 spatialLookupOk=14 spatialLookupFailed=0 spatialAdjusted=14 spatialClasses=[R:14:avgMult=19.000] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=21.198 original=1.116 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;1:3>3 cost=0.086 original=0.005 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x1000008100119;2:3>3 cost=36.547 original=1.924 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;3:3>3 cost=22.003 original=1.158 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;4:3>3 cost=37.641 original=1.981 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=20.608 original=1.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=0.425 original=0.022 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110;7:3>3 cost=4.504 original=0.237 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100110 dst=0x10000081000c1]
2026-06-27 04:15:40.884 +74884ms hook GPSRouteProducer 0x44cc7c call=52 graph=0x59101d990 query=0x795ce010 outResult=0x795ce2b8 query_start00=(-1607.06,1164.64,17.76,1) query_end10=(-1599.39,1159.26,17.7598,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1115204864/0x4278ad00 query_ptr98=0 query_ptra0=0 query_flagsa8=3371368272/0xc8f2ff50 ret_rva=0x6517d1
2026-06-27 04:15:40.899 +74899ms hook GPSRouteProducer result call=45 value=0x42ae6120 out_u0c=12/0xc out_u1c=11/0xb out_u20=3222550928/0xc0143990 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=96 edgeCostMin=0.151 edgeCostMax=69.825 edgeCostAvg=24.236 edgeSrcClasses=[4:96] edgeDstClasses=[4:94,invalid:2] spatialAllowed=96 spatialLookupOk=96 spatialLookupFailed=0 spatialAdjusted=96 spatialClasses=[R:84:avgMult=19.000,P:12:avgMult=19.000] edgeRetRvas=[0x44f457:94,0x44f629:2] edgeSamples=[0:4>4 cost=8.535 original=0.449 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c0023d;1:4>4 cost=1.053 original=0.055 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c00240;2:4>4 cost=15.597 original=0.821 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c0023e;3:4>4 cost=13.097 original=0.689 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c00246;4:4>4 cost=7.752 original=0.408 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c00245;5:4>4 cost=34.245 original=1.802 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c001e1;6:4>4 cost=4.928 original=0.259 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023e dst=0x1000007c00225;7:4>4 cost=11.712 original=0.616 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00225 dst=0x1000007c00224]
2026-06-27 04:15:40.900 +74900ms hook GPSRouteProducer 0x44cc7c call=54 graph=0x59101d990 query=0x793ce330 outResult=0x793ce490 query_start00=(-1511.22,1267.18,27.49,1) query_end10=(-1507.51,1268.9,27.4887,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.901 +74901ms hook GPSRouteProducer result call=47 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2939861568/0xaf3aba40 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=8.386 edgeCostMax=50.490 edgeCostAvg=22.600 edgeSrcClasses=[4:13] edgeDstClasses=[4:12,invalid:1] spatialAllowed=13 spatialLookupOk=13 spatialLookupFailed=0 spatialAdjusted=13 spatialClasses=[R:2:avgMult=19.000,P:11:avgMult=19.000] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:4>4 cost=8.514 original=0.448 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x10000081002d4;1:4>4 cost=17.359 original=0.914 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810023f dst=0x1000008100245;2:4>4 cost=8.502 original=0.447 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002d0;3:4>4 cost=39.043 original=2.055 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d4 dst=0x10000081002cf;4:4>4 cost=12.264 original=0.645 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081002d0 dst=0x10000081002d1;5:4>255 cost=23.434 original=1.233 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x10000081002d1 dst=0x0;6:4>4 cost=8.386 original=0.441 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100245 dst=0x1000008100248;7:4>4 cost=50.490 original=2.657 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100248 dst=0x1000008100246]
2026-06-27 04:15:40.915 +74915ms hook GPSRouteProducer 0x44cc7c call=53 graph=0x59101d990 query=0x79c8e330 outResult=0x79c8e490 query_start00=(-1554.14,1144.06,17.18,1) query_end10=(-1555.34,1140.7,17.1909,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.915 +74915ms hook GPSRouteProducer 0x44cc7c call=55 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1570.87,1146.54,17.1971,1) query_end10=(-1563.95,1152.3,17.1776,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1123227136/0x42f31600 query_ptr98=0 query_ptra0=0 query_flagsa8=2651885072/0x9e108e10 ret_rva=0x6517d1
2026-06-27 04:15:40.917 +74917ms hook GPSRouteProducer result call=50 value=0x42ae6120 out_u0c=14/0xe out_u1c=13/0xd out_u20=3222540704/0xc01411a0 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=96 edgeCostMin=0.428 edgeCostMax=97.669 edgeCostAvg=22.459 edgeSrcClasses=[4:96] edgeDstClasses=[4:95,invalid:1] spatialAllowed=96 spatialLookupOk=96 spatialLookupFailed=0 spatialAdjusted=96 spatialClasses=[P:96:avgMult=19.000] edgeRetRvas=[0x44f457:95,0x44f629:1] edgeSamples=[0:4>4 cost=3.176 original=0.167 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x10000077001fd;1:4>4 cost=17.166 original=0.903 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x1000007700208;2:4>4 cost=26.229 original=1.380 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x100000770020a;3:4>4 cost=18.699 original=0.984 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x10000077001ff;4:4>4 cost=21.930 original=1.154 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x1000007700209;5:4>4 cost=1.674 original=0.088 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020a dst=0x100000770020f;6:4>4 cost=49.182 original=2.589 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020f dst=0x1000007700204;7:4>4 cost=8.874 original=0.467 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020f dst=0x100000770020d]
2026-06-27 04:15:40.918 +74918ms hook GPSRouteProducer result call=30 value=0x42ae6120 out_u0c=13/0xd out_u1c=2/0x2 out_u20=2979208160/0xb1931be0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=298 edgeCostMin=0.000 edgeCostMax=82.504 edgeCostAvg=4.614 edgeSrcClasses=[3:250,15:48] edgeDstClasses=[3:246,15:51,invalid:1] spatialAllowed=298 spatialLookupOk=296 spatialLookupFailed=2 spatialAdjusted=296 spatialClasses=[H:228:avgMult=0.050,P:68:avgMult=19.000] edgeRetRvas=[0x44f457:297,0x44f629:1] edgeSamples=[0:3>3 cost=13.657 original=0.719 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f0011c;1:3>3 cost=11.880 original=0.625 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f00118;2:3>3 cost=16.093 original=0.847 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00118 dst=0x1000007f00001;3:3>3 cost=17.848 original=0.939 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011a;4:3>3 cost=20.624 original=1.085 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011b;5:3>3 cost=3.221 original=0.170 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00001 dst=0x1000007f00004;6:3>3 cost=7.568 original=0.398 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011a dst=0x1000007f00119;7:3>3 cost=2.711 original=0.143 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00004 dst=0x1000007f0000c]
2026-06-27 04:15:40.918 +74918ms hook GPSRouteProducer result call=46 value=0x42ae6120 out_u0c=12/0xc out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=76 edgeCostMin=0.259 edgeCostMax=102.053 edgeCostAvg=16.916 edgeSrcClasses=[3:76] edgeDstClasses=[3:75,invalid:1] spatialAllowed=76 spatialLookupOk=76 spatialLookupFailed=0 spatialAdjusted=76 spatialClasses=[R:76:avgMult=19.000] edgeRetRvas=[0x44f457:75,0x44f629:1] edgeSamples=[0:3>3 cost=1.306 original=0.069 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000f5 dst=0x1000008100102;1:3>3 cost=13.787 original=0.726 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x1000008100100;2:3>3 cost=11.400 original=0.600 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x100000810010b;3:3>3 cost=7.602 original=0.400 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810010b dst=0x1000008100111;4:3>3 cost=6.634 original=0.349 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000f9;5:3>3 cost=8.176 original=0.430 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100100 dst=0x10000081000fa;6:3>3 cost=9.833 original=0.518 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100111 dst=0x1000008100122;7:3>3 cost=2.053 original=0.108 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000fa dst=0x10000081000f6]
2026-06-27 04:15:40.918 +74918ms hook GPSRouteProducer 0x44cc7c call=56 graph=0x59101d990 query=0x79d8e330 outResult=0x79d8e490 query_start00=(-1566.44,1128.65,17.18,1) query_end10=(-1563.6,1130.93,17.1799,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.919 +74919ms hook GPSRouteProducer result call=54 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=5.650 edgeCostMax=35.802 edgeCostAvg=24.821 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] spatialAllowed=7 spatialLookupOk=7 spatialLookupFailed=0 spatialAdjusted=7 spatialClasses=[R:7:avgMult=19.000] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=34.336 original=1.807 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a00057;1:3>3 cost=16.046 original=0.845 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a0005a;2:3>3 cost=35.802 original=1.884 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a0005a dst=0x1000008a00059;3:3>255 cost=24.212 original=1.274 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008a00059 dst=0x0;4:3>3 cost=29.685 original=1.562 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00057 dst=0x1000008a00060;5:3>3 cost=5.650 original=0.297 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00060 dst=0x1000008a00061;6:3>3 cost=28.018 original=1.475 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00061 dst=0x1000008a00062]
2026-06-27 04:15:40.947 +74947ms hook GPSRouteProducer result call=52 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=3222540704/0xc01411a0 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=84 edgeCostMin=0.000 edgeCostMax=81.119 edgeCostAvg=24.421 edgeSrcClasses=[4:84] edgeDstClasses=[4:83,invalid:1] spatialAllowed=84 spatialLookupOk=83 spatialLookupFailed=1 spatialAdjusted=83 spatialClasses=[P:83:avgMult=19.000] edgeRetRvas=[0x44f457:83,0x44f629:1] edgeSamples=[0:4>4 cost=0.506 original=0.027 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700221;1:4>4 cost=33.803 original=1.779 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700229;2:4>4 cost=20.183 original=1.062 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x100000770021c;3:4>4 cost=25.733 original=1.354 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x1000007700224;4:4>4 cost=0.834 original=0.044 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770021c dst=0x100000770021a;5:4>4 cost=39.821 original=2.096 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700223;6:4>4 cost=74.693 original=3.931 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700225;7:4>4 cost=7.625 original=0.401 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x10000077001f1]
2026-06-27 04:15:40.948 +74948ms hook GPSRouteProducer 0x44cc7c call=60 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1511.22,1267.18,27.49,1) query_end10=(-1507.89,1268.47,27.4886,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1073801472/0x4000e900 query_ptr98=0 query_ptra0=0 query_flagsa8=3199052272/0xbeada9f0 ret_rva=0x6517d1
2026-06-27 04:15:40.948 +74948ms hook GPSRouteProducer 0x44cc7c call=58 graph=0x59101d990 query=0x79e8dfc0 outResult=0x79e8e120 query_start00=(-1585.96,1240.98,17.29,1) query_end10=(-1592.05,1244.19,17.9096,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.949 +74949ms hook GPSRouteProducer result call=55 value=0x42ae6120 out_u0c=14/0xe out_u1c=13/0xd out_u20=3206428912/0xbf1e38f0 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=117 edgeCostMin=0.003 edgeCostMax=64.899 edgeCostAvg=22.728 edgeSrcClasses=[4:117] edgeDstClasses=[4:116,invalid:1] spatialAllowed=117 spatialLookupOk=117 spatialLookupFailed=0 spatialAdjusted=117 spatialClasses=[R:96:avgMult=19.000,P:21:avgMult=19.000] edgeRetRvas=[0x44f457:116,0x44f629:1] edgeSamples=[0:4>4 cost=8.535 original=0.449 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c0023d;1:4>4 cost=1.615 original=0.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c00240;2:4>4 cost=17.924 original=0.943 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c0023e;3:4>4 cost=0.082 original=0.004 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c00246;4:4>4 cost=40.386 original=2.126 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c00245;5:4>4 cost=0.065 original=0.003 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c001e1;6:4>4 cost=64.899 original=3.416 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001d1;7:4>4 cost=0.042 original=0.002 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001e0]
2026-06-27 04:15:40.949 +74949ms hook GPSRouteProducer result call=53 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=1.084 edgeCostMax=74.756 edgeCostAvg=18.350 edgeSrcClasses=[3:12,4:3] edgeDstClasses=[3:10,4:4,invalid:1] spatialAllowed=15 spatialLookupOk=15 spatialLookupFailed=0 spatialAdjusted=15 spatialClasses=[R:15:avgMult=19.000] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:3>3 cost=7.830 original=0.412 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a9 dst=0x10000081001a7;1:3>3 cost=1.084 original=0.057 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a9 dst=0x1000008100278;2:3>3 cost=24.561 original=1.293 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100278 dst=0x10000081001ad;3:3>3 cost=10.891 original=0.573 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100278 dst=0x10000081001c1;4:3>3 cost=5.252 original=0.276 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a7 dst=0x10000081001a6;5:3>3 cost=47.667 original=2.509 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001c1 dst=0x1000007c00207;6:3>255 cost=8.092 original=0.426 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007c00207 dst=0x0;7:3>3 cost=74.756 original=3.935 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001c1 dst=0x10000081001c3]
2026-06-27 04:15:40.949 +74949ms hook GPSRouteProducer result call=31 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=3206428304/0xbf1e3690 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=99 edgeCostMin=0.195 edgeCostMax=68.519 edgeCostAvg=23.569 edgeSrcClasses=[4:99] edgeDstClasses=[4:97,invalid:2] spatialAllowed=99 spatialLookupOk=99 spatialLookupFailed=0 spatialAdjusted=99 spatialClasses=[R:23:avgMult=19.000,P:76:avgMult=19.000] edgeRetRvas=[0x44f457:97,0x44f629:2] edgeSamples=[0:4>4 cost=2.759 original=0.145 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c8 dst=0x1000007c001c7;1:4>4 cost=26.738 original=1.407 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001e2;2:4>4 cost=9.941 original=0.523 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001ca;3:4>4 cost=7.049 original=0.371 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ca dst=0x1000007c001f4;4:4>4 cost=38.462 original=2.024 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001f3;5:4>4 cost=20.966 original=1.103 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001ed;6:4>4 cost=32.300 original=1.700 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001c4;7:4>4 cost=12.576 original=0.662 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001e3]
2026-06-27 04:15:40.950 +74950ms hook GPSRouteProducer 0x44cc7c call=57 graph=0x59101d990 query=0x794ce010 outResult=0x794ce2b8 query_start00=(-1598.3,1165.62,17.76,1) query_end10=(-1608.35,1151.42,17.7606,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1110249984/0x422d1200 query_ptr98=0 query_ptra0=0 query_flagsa8=2781838736/0xa5cf7d90 ret_rva=0x6517d1
2026-06-27 04:15:40.950 +74950ms hook GPSRouteProducer 0x44cc7c call=59 graph=0x59101d990 query=0x7990dfc0 outResult=0x7990e120 query_start00=(-1532.46,1145.68,17.18,1) query_end10=(-1537.74,1141.3,17.18,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.950 +74950ms hook GPSRouteProducer 0x44cc7c call=61 graph=0x59101d990 query=0x795ce010 outResult=0x795ce2b8 query_start00=(-1607.06,1164.64,17.76,1) query_end10=(-1599.34,1159.61,17.7598,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108422400/0x42112f00 query_ptr98=0 query_ptra0=0 query_flagsa8=3371368272/0xc8f2ff50 ret_rva=0x6517d1
2026-06-27 04:15:40.951 +74951ms hook GPSRouteProducer result call=51 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2951316048/0xafe98250 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=4.198 edgeCostMax=66.260 edgeCostAvg=21.093 edgeSrcClasses=[3:5,4:15] edgeDstClasses=[3:7,4:12,invalid:1] spatialAllowed=20 spatialLookupOk=20 spatialLookupFailed=0 spatialAdjusted=20 spatialClasses=[R:20:avgMult=19.000] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:4>4 cost=30.874 original=1.625 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c0020a;1:4>4 cost=10.196 original=0.537 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c00211;2:4>4 cost=33.154 original=1.745 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00216;3:4>4 cost=40.399 original=2.126 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00217;4:4>255 cost=28.044 original=1.476 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000007c00217 dst=0x0;5:4>4 cost=9.802 original=0.516 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020a dst=0x1000007c0020e;6:4>4 cost=22.924 original=1.207 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x10000081001c5;7:4>3 cost=5.604 original=0.295 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x1000007c00156]
2026-06-27 04:15:40.963 +74963ms hook GPSRouteProducer 0x44cc7c call=62 graph=0x59101d990 query=0x7980dfc0 outResult=0x7980e120 query_start00=(-1570.87,1146.54,17.1971,1) query_end10=(-1563.95,1152.3,17.1776,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.977 +74977ms hook GPSRouteProducer 0x44cc7c call=64 graph=0x59101d990 query=0x796ce010 outResult=0x796ce2b8 query_start00=(-1566.6,1155.07,17.18,1) query_end10=(-1572.66,1150.79,17.1752,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1091045120/0x41080700 query_ptr98=0 query_ptra0=0 query_flagsa8=2530418192/0x96d31e10 ret_rva=0x6517d1
2026-06-27 04:15:40.977 +74977ms hook GPSRouteProducer result call=48 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3222540704/0xc01411a0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=124 edgeCostMin=1.274 edgeCostMax=71.275 edgeCostAvg=23.056 edgeSrcClasses=[4:124] edgeDstClasses=[4:122,invalid:2] spatialAllowed=124 spatialLookupOk=124 spatialLookupFailed=0 spatialAdjusted=124 spatialClasses=[R:30:avgMult=19.000,P:94:avgMult=19.000] edgeRetRvas=[0x44f457:122,0x44f629:2] edgeSamples=[0:4>4 cost=5.248 original=0.276 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c3 dst=0x1000007c001c2;1:4>4 cost=5.486 original=0.289 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c2 dst=0x1000007c001ec;2:4>4 cost=16.913 original=0.890 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001ed;3:4>4 cost=24.490 original=1.289 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001eb;4:4>4 cost=14.447 original=0.760 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ed dst=0x1000007c001f4;5:4>4 cost=2.688 original=0.141 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001eb dst=0x1000007c001f1;6:4>4 cost=24.234 original=1.275 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001db;7:4>4 cost=27.003 original=1.421 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001ef]
2026-06-27 04:15:40.977 +74977ms hook GPSRouteProducer result call=40 value=0x42ae6120 out_u0c=25/0x19 out_u1c=19/0x13 out_u20=3206538192/0xbf1fe3d0 out_u24=5/0x5 out_u2c=19/0x13 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=390 edgeCostMin=0.000 edgeCostMax=83.805 edgeCostAvg=16.963 edgeSrcClasses=[3:119,4:214,15:57] edgeDstClasses=[3:113,4:214,15:61,invalid:2] spatialAllowed=390 spatialLookupOk=389 spatialLookupFailed=1 spatialAdjusted=389 spatialClasses=[P:389:avgMult=19.000] edgeRetRvas=[0x44f457:388,0x44f629:2] edgeSamples=[0:3>3 cost=8.117 original=0.427 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000ce;1:3>3 cost=0.472 original=0.025 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000d4;2:3>3 cost=1.222 original=0.064 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d4 dst=0x10000082000d5;3:3>3 cost=24.585 original=1.294 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x1000008200114;4:3>3 cost=14.422 original=0.759 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x10000082000d6;5:3>3 cost=33.249 original=1.750 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x10000082000d3;6:3>3 cost=18.142 original=0.955 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x1000008200092;7:3>3 cost=17.127 original=0.901 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200113]
2026-06-27 04:15:40.978 +74978ms hook GPSRouteProducer result call=60 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=13.973 edgeCostMax=37.077 edgeCostAvg=26.123 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] spatialAllowed=5 spatialLookupOk=5 spatialLookupFailed=0 spatialAdjusted=5 spatialClasses=[R:5:avgMult=19.000] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=34.336 original=1.807 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a00057;1:3>3 cost=15.363 original=0.809 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a0005a;2:3>3 cost=37.077 original=1.951 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a0005a dst=0x1000008a00059;3:3>255 cost=13.973 original=0.735 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008a00059 dst=0x0;4:3>3 cost=29.867 original=1.572 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00057 dst=0x1000008a00060]
2026-06-27 04:15:40.978 +74978ms hook GPSRouteProducer result call=56 value=0x42ae6120 out_u0c=8/0x8 out_u1c=5/0x5 out_u20=2842863888/0xa972a910 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=57 edgeCostMin=0.397 edgeCostMax=70.473 edgeCostAvg=15.823 edgeSrcClasses=[3:11,4:32,5:14] edgeDstClasses=[3:12,4:32,5:12,invalid:1] spatialAllowed=57 spatialLookupOk=57 spatialLookupFailed=0 spatialAdjusted=57 spatialClasses=[R:57:avgMult=19.000] edgeRetRvas=[0x44f457:56,0x44f629:1] edgeSamples=[0:4>4 cost=3.951 original=0.208 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000006700197 dst=0x100000670019c;1:4>4 cost=2.299 original=0.121 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019c dst=0x100000670019f;2:4>4 cost=13.190 original=0.694 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x1000006700198;3:4>4 cost=7.376 original=0.388 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x10000067001a2;4:4>4 cost=13.144 original=0.692 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a1;5:4>4 cost=16.995 original=0.894 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a0;6:4>5 cost=20.632 original=1.086 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x10000067001f5;7:4>4 cost=1.790 original=0.094 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x100000670019a]
2026-06-27 04:15:40.978 +74978ms hook GPSRouteProducer 0x44cc7c call=65 graph=0x59101d990 query=0x79b0e010 outResult=0x79b0e2b8 query_start00=(-1557.8,1146.91,17.18,1) query_end10=(-1557.44,1151.73,17.1796,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1095266304/0x41487000 query_ptr98=0 query_ptra0=0 query_flagsa8=3336585744/0xc6e04210 ret_rva=0x6517d1
2026-06-27 04:15:40.980 +74980ms hook GPSRouteProducer 0x44cc7c call=67 graph=0x59101d990 query=0x79a0e010 outResult=0x79a0e2b8 query_start00=(-1567.28,1157.42,17.1922,1) query_end10=(-1575.52,1149.83,17.1607,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1073846272/0x40019800 query_ptr98=0 query_ptra0=0 query_flagsa8=2781800272/0xa5cee750 ret_rva=0x6517d1
2026-06-27 04:15:40.980 +74980ms hook GPSRouteProducer 0x44cc7c call=68 graph=0x59101d990 query=0x31bf70 outResult=0x31c0d0 query_start00=(-1540.02,1172.84,17.16,1) query_end10=(-1542.61,1166.46,17.1925,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.029 +75029ms hook GPSRouteProducer result call=59 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.028 edgeCostMax=105.560 edgeCostAvg=20.565 edgeSrcClasses=[3:34] edgeDstClasses=[3:33,invalid:1] spatialAllowed=34 spatialLookupOk=34 spatialLookupFailed=0 spatialAdjusted=34 spatialClasses=[R:34:avgMult=19.000] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.295 original=0.068 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000f5 dst=0x1000008100102;1:3>3 cost=16.157 original=0.850 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x1000008100100;2:3>3 cost=0.171 original=0.009 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100102 dst=0x100000810010b;3:3>3 cost=0.028 original=0.001 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000810010b dst=0x1000008100111;4:3>3 cost=10.144 original=0.534 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100111 dst=0x1000008100122;5:3>3 cost=54.193 original=2.852 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100122 dst=0x1000008100114;6:3>3 cost=3.103 original=0.163 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100122 dst=0x1000008100126;7:3>3 cost=91.904 original=4.837 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100126 dst=0x1000008100120]
2026-06-27 04:15:40.029 +75029ms hook GPSRouteProducer result call=67 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3206216048/0xbf1af970 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=130 edgeCostMin=0.092 edgeCostMax=76.699 edgeCostAvg=22.489 edgeSrcClasses=[4:130] edgeDstClasses=[4:128,invalid:2] spatialAllowed=130 spatialLookupOk=130 spatialLookupFailed=0 spatialAdjusted=130 spatialClasses=[R:35:avgMult=19.000,P:95:avgMult=19.000] edgeRetRvas=[0x44f457:128,0x44f629:2] edgeSamples=[0:4>4 cost=5.169 original=0.272 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c3 dst=0x1000007c001c2;1:4>4 cost=5.636 original=0.297 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c2 dst=0x1000007c001ec;2:4>4 cost=14.586 original=0.768 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001ed;3:4>4 cost=24.540 original=1.292 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001eb;4:4>4 cost=14.834 original=0.781 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ed dst=0x1000007c001f4;5:4>4 cost=2.688 original=0.141 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001eb dst=0x1000007c001f1;6:4>4 cost=24.292 original=1.279 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001db;7:4>4 cost=27.003 original=1.421 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001ef]
2026-06-27 04:15:40.029 +75029ms hook GPSRouteProducer result call=64 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3206215184/0xbf1af610 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=73 edgeCostMin=0.014 edgeCostMax=73.092 edgeCostAvg=24.518 edgeSrcClasses=[4:73] edgeDstClasses=[4:71,invalid:2] spatialAllowed=73 spatialLookupOk=73 spatialLookupFailed=0 spatialAdjusted=73 spatialClasses=[R:29:avgMult=19.000,P:44:avgMult=19.000] edgeRetRvas=[0x44f457:71,0x44f629:2] edgeSamples=[0:4>4 cost=0.772 original=0.041 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c8 dst=0x1000007c001c7;1:4>4 cost=26.790 original=1.410 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001e2;2:4>4 cost=25.690 original=1.352 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001ca;3:4>4 cost=7.409 original=0.390 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ca dst=0x1000007c001f4;4:4>4 cost=31.938 original=1.681 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001c4;5:4>4 cost=6.851 original=0.361 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001e3;6:4>4 cost=19.367 original=1.019 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001f3;7:4>4 cost=29.869 original=1.572 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001ed]
2026-06-27 04:15:40.030 +75030ms hook GPSRouteProducer 0x44cc7c call=70 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1566.44,1128.65,17.18,1) query_end10=(-1562.61,1131.16,17.1799,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098495232/0x4179b500 query_ptr98=0 query_ptra0=0 query_flagsa8=3415993488/0xcb9bec90 ret_rva=0x6517d1
2026-06-27 04:15:40.030 +75030ms hook GPSRouteProducer 0x44cc7c call=71 graph=0x59101d990 query=0x79c8e010 outResult=0x79c8e2b8 query_start00=(-1554.14,1144.06,17.18,1) query_end10=(-1557.87,1155.15,17.1797,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101341440/0x41a52300 query_ptr98=0 query_ptra0=0 query_flagsa8=2746193488/0xa3af9650 ret_rva=0x6517d1
2026-06-27 04:15:40.030 +75030ms hook GPSRouteProducer result call=62 value=0x42ae6120 out_u0c=14/0xe out_u1c=13/0xd out_u20=3222540704/0xc01411a0 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=117 edgeCostMin=0.003 edgeCostMax=64.899 edgeCostAvg=22.728 edgeSrcClasses=[4:117] edgeDstClasses=[4:116,invalid:1] spatialAllowed=117 spatialLookupOk=117 spatialLookupFailed=0 spatialAdjusted=117 spatialClasses=[R:96:avgMult=19.000,P:21:avgMult=19.000] edgeRetRvas=[0x44f457:116,0x44f629:1] edgeSamples=[0:4>4 cost=8.535 original=0.449 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c0023d;1:4>4 cost=1.615 original=0.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0023f dst=0x1000007c00240;2:4>4 cost=17.924 original=0.943 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c0023e;3:4>4 cost=0.082 original=0.004 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00240 dst=0x1000007c00246;4:4>4 cost=40.386 original=2.126 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c00245;5:4>4 cost=0.065 original=0.003 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00246 dst=0x1000007c001e1;6:4>4 cost=64.899 original=3.416 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001d1;7:4>4 cost=0.042 original=0.002 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e1 dst=0x1000007c001e0]
2026-06-27 04:15:40.031 +75031ms hook GPSRouteProducer result call=61 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2971806336/0xb1222a80 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=76 edgeCostMin=0.172 edgeCostMax=80.144 edgeCostAvg=28.306 edgeSrcClasses=[4:76] edgeDstClasses=[4:75,invalid:1] spatialAllowed=76 spatialLookupOk=76 spatialLookupFailed=0 spatialAdjusted=76 spatialClasses=[P:76:avgMult=19.000] edgeRetRvas=[0x44f457:75,0x44f629:1] edgeSamples=[0:4>4 cost=0.494 original=0.026 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700221;1:4>4 cost=33.803 original=1.779 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700229;2:4>4 cost=20.173 original=1.062 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x100000770021c;3:4>4 cost=25.610 original=1.348 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x1000007700224;4:4>4 cost=0.849 original=0.045 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770021c dst=0x100000770021a;5:4>4 cost=71.933 original=3.786 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700223;6:4>4 cost=48.178 original=2.536 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700225;7:4>4 cost=7.462 original=0.393 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x10000077001f1]
2026-06-27 04:15:40.031 +75031ms hook GPSRouteProducer 0x44cc7c call=69 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1511.22,1267.18,27.49,1) query_end10=(-1513.22,1269.28,27.4887,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1036713984/0x3dcb0000 query_ptr98=0 query_ptra0=0 query_flagsa8=3199052272/0xbeada9f0 ret_rva=0x6517d1
2026-06-27 04:15:40.032 +75032ms hook GPSRouteProducer 0x44cc7c call=73 graph=0x59101d990 query=0x796ce010 outResult=0x796ce2b8 query_start00=(-1566.6,1155.07,17.18,1) query_end10=(-1572.59,1150.45,17.1752,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1071537408/0x3fde5d00 query_ptr98=0 query_ptra0=0 query_flagsa8=2530418192/0x96d31e10 ret_rva=0x6517d1
2026-06-27 04:15:40.050 +75050ms hook GPSRouteProducer 0x44cc7c call=72 graph=0x59101d990 query=0x79a0dfc0 outResult=0x79a0e120 query_start00=(-1567.28,1157.42,17.1922,1) query_end10=(-1563.28,1151.12,17.1801,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.071 +75071ms hook GPSRouteProducer 0x44cc7c call=74 graph=0x59101d990 query=0x795cdfc0 outResult=0x795ce120 query_start00=(-1607.06,1164.64,17.76,1) query_end10=(-1599.34,1159.61,17.7598,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.091 +75091ms hook GPSRouteProducer result call=68 value=0x42ae6120 out_u0c=14/0xe out_u1c=5/0x5 out_u20=2244012320/0x85c0e920 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=91 edgeCostMin=0.338 edgeCostMax=63.463 edgeCostAvg=16.039 edgeSrcClasses=[3:73,4:18] edgeDstClasses=[3:70,4:20,invalid:1] spatialAllowed=91 spatialLookupOk=91 spatialLookupFailed=0 spatialAdjusted=91 spatialClasses=[P:91:avgMult=19.000] edgeRetRvas=[0x44f457:90,0x44f629:1] edgeSamples=[0:3>3 cost=8.062 original=0.424 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000ce;1:3>3 cost=1.460 original=0.077 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d1 dst=0x10000082000d4;2:3>3 cost=2.539 original=0.134 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d4 dst=0x10000082000d5;3:3>3 cost=11.172 original=0.588 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x1000008200114;4:3>3 cost=17.739 original=0.934 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d5 dst=0x10000082000d6;5:3>3 cost=28.635 original=1.507 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200113;6:3>3 cost=7.585 original=0.399 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008200114 dst=0x1000008200115;7:3>3 cost=26.888 original=1.415 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000082000d6 dst=0x10000082000d3]
2026-06-27 04:15:40.093 +75093ms hook GPSRouteProducer result call=73 value=0x42ae6120 out_u0c=10/0xa out_u1c=9/0x9 out_u20=3277691312/0xc35d99b0 out_u24=5/0x5 out_u2c=9/0x9 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=66 edgeCostMin=0.756 edgeCostMax=61.554 edgeCostAvg=24.923 edgeSrcClasses=[4:66] edgeDstClasses=[4:65,invalid:1] spatialAllowed=66 spatialLookupOk=66 spatialLookupFailed=0 spatialAdjusted=66 spatialClasses=[R:20:avgMult=19.000,P:46:avgMult=19.000] edgeRetRvas=[0x44f457:65,0x44f629:1] edgeSamples=[0:4>4 cost=0.756 original=0.040 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c8 dst=0x1000007c001c7;1:4>4 cost=26.791 original=1.410 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001e2;2:4>4 cost=28.108 original=1.479 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001ca;3:4>4 cost=31.137 original=1.639 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001c4;4:4>4 cost=6.851 original=0.361 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001e3;5:4>4 cost=7.220 original=0.380 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ca dst=0x1000007c001f4;6:4>4 cost=27.697 original=1.458 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e3 dst=0x1000007c001e7;7:4>4 cost=32.270 original=1.698 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e3 dst=0x1000007c001e4]
2026-06-27 04:15:40.094 +75094ms hook GPSRouteProducer result call=65 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2975221408/0xb15646a0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=3.531 edgeCostMax=58.131 edgeCostAvg=22.884 edgeSrcClasses=[3:9,4:25] edgeDstClasses=[3:11,4:21,invalid:2] spatialAllowed=34 spatialLookupOk=34 spatialLookupFailed=0 spatialAdjusted=34 spatialClasses=[R:34:avgMult=19.000] edgeRetRvas=[0x44f457:32,0x44f629:2] edgeSamples=[0:4>4 cost=30.874 original=1.625 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c0020a;1:4>4 cost=9.382 original=0.494 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c00211;2:4>4 cost=32.218 original=1.696 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00216;3:4>4 cost=56.574 original=2.978 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00217;4:4>4 cost=7.544 original=0.397 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020a dst=0x1000007c0020e;5:4>4 cost=20.014 original=1.053 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x10000081001c5;6:4>3 cost=7.153 original=0.376 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x1000007c00156;7:4>4 cost=13.502 original=0.711 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00216 dst=0x1000007c00213]
2026-06-27 04:15:40.095 +75095ms hook GPSRouteProducer result call=69 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=2.900 edgeCostMax=34.528 edgeCostAvg=22.848 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] spatialAllowed=5 spatialLookupOk=5 spatialLookupFailed=0 spatialAdjusted=5 spatialClasses=[R:5:avgMult=19.000] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=30.203 original=1.590 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a00057;1:3>3 cost=34.528 original=1.817 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a0005a;2:3>3 cost=20.358 original=1.071 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00057 dst=0x1000008a00060;3:3>255 cost=2.900 original=0.153 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008a00060 dst=0x0;4:3>3 cost=26.250 original=1.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a0005a dst=0x1000008a00059]
2026-06-27 04:15:40.095 +75095ms hook GPSRouteProducer result call=71 value=0x42ae6120 out_u0c=14/0xe out_u1c=9/0x9 out_u20=3047505824/0xb5a53fa0 out_u24=5/0x5 out_u2c=9/0x9 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=117 edgeCostMin=0.000 edgeCostMax=97.019 edgeCostAvg=19.910 edgeSrcClasses=[3:60,4:57] edgeDstClasses=[3:60,4:56,invalid:1] spatialAllowed=117 spatialLookupOk=116 spatialLookupFailed=1 spatialAdjusted=116 spatialClasses=[R:107:avgMult=19.000,P:9:avgMult=19.000] edgeRetRvas=[0x44f457:116,0x44f629:1] edgeSamples=[0:3>3 cost=1.816 original=0.096 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a9 dst=0x10000081001a7;1:3>3 cost=0.318 original=0.017 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a9 dst=0x1000008100278;2:3>3 cost=13.421 original=0.706 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100278 dst=0x10000081001ad;3:3>3 cost=16.542 original=0.871 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100278 dst=0x10000081001c1;4:3>3 cost=0.560 original=0.029 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001a7 dst=0x10000081001a6;5:3>3 cost=21.730 original=1.144 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001ad dst=0x10000081001ac;6:3>3 cost=10.874 original=0.572 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001ad dst=0x10000081001a8;7:3>3 cost=71.761 original=3.777 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081001c1 dst=0x1000007c00207]
2026-06-27 04:15:40.095 +75095ms hook GPSRouteProducer result call=70 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2842863888/0xa972a910 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=79 edgeCostMin=0.440 edgeCostMax=70.353 edgeCostAvg=14.817 edgeSrcClasses=[3:24,4:39,5:16] edgeDstClasses=[3:26,4:38,5:14,invalid:1] spatialAllowed=79 spatialLookupOk=79 spatialLookupFailed=0 spatialAdjusted=79 spatialClasses=[R:79:avgMult=19.000] edgeRetRvas=[0x44f457:78,0x44f629:1] edgeSamples=[0:4>4 cost=3.246 original=0.171 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000006700197 dst=0x100000670019c;1:4>4 cost=1.532 original=0.081 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019c dst=0x100000670019f;2:4>4 cost=16.615 original=0.874 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x1000006700198;3:4>4 cost=8.400 original=0.442 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x10000067001a2;4:4>4 cost=13.703 original=0.721 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a1;5:4>4 cost=16.995 original=0.894 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a0;6:4>5 cost=21.634 original=1.139 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x10000067001f5;7:4>4 cost=0.599 original=0.032 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x100000670019a]
2026-06-27 04:15:40.131 +75131ms hook GPSRouteProducer result call=74 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2971806336/0xb1222a80 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=76 edgeCostMin=0.172 edgeCostMax=80.144 edgeCostAvg=28.306 edgeSrcClasses=[4:76] edgeDstClasses=[4:75,invalid:1] spatialAllowed=76 spatialLookupOk=76 spatialLookupFailed=0 spatialAdjusted=76 spatialClasses=[P:76:avgMult=19.000] edgeRetRvas=[0x44f457:75,0x44f629:1] edgeSamples=[0:4>4 cost=0.494 original=0.026 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700221;1:4>4 cost=33.803 original=1.779 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700228 dst=0x1000007700229;2:4>4 cost=20.173 original=1.062 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x100000770021c;3:4>4 cost=25.610 original=1.348 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700221 dst=0x1000007700224;4:4>4 cost=0.849 original=0.045 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770021c dst=0x100000770021a;5:4>4 cost=71.933 original=3.786 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700223;6:4>4 cost=48.178 original=2.536 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700224 dst=0x1000007700225;7:4>4 cost=7.462 original=0.393 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700229 dst=0x10000077001f1]
2026-06-27 04:15:40.131 +75131ms hook GPSRouteProducer result call=58 value=0x42ae6120 out_u0c=13/0xd out_u1c=2/0x2 out_u20=2979208160/0xb1931be0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=298 edgeCostMin=0.000 edgeCostMax=82.504 edgeCostAvg=4.614 edgeSrcClasses=[3:250,15:48] edgeDstClasses=[3:246,15:51,invalid:1] spatialAllowed=298 spatialLookupOk=296 spatialLookupFailed=2 spatialAdjusted=296 spatialClasses=[H:228:avgMult=0.050,P:68:avgMult=19.000] edgeRetRvas=[0x44f457:297,0x44f629:1] edgeSamples=[0:3>3 cost=13.657 original=0.719 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f0011c;1:3>3 cost=11.880 original=0.625 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011d dst=0x1000007f00118;2:3>3 cost=16.093 original=0.847 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00118 dst=0x1000007f00001;3:3>3 cost=17.848 original=0.939 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011a;4:3>3 cost=20.624 original=1.085 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011c dst=0x1000007f0011b;5:3>3 cost=3.221 original=0.170 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00001 dst=0x1000007f00004;6:3>3 cost=7.568 original=0.398 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f0011a dst=0x1000007f00119;7:3>3 cost=2.711 original=0.143 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007f00004 dst=0x1000007f0000c]
2026-06-27 04:15:40.131 +75131ms hook GPSRouteProducer result call=72 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3047505824/0xb5a53fa0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=72 edgeCostMin=0.030 edgeCostMax=63.263 edgeCostAvg=21.874 edgeSrcClasses=[4:72] edgeDstClasses=[4:71,invalid:1] spatialAllowed=72 spatialLookupOk=72 spatialLookupFailed=0 spatialAdjusted=72 spatialClasses=[R:10:avgMult=19.000,P:62:avgMult=19.000] edgeRetRvas=[0x44f457:71,0x44f629:1] edgeSamples=[0:4>4 cost=5.833 original=0.307 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c3 dst=0x1000007c001c2;1:4>4 cost=4.750 original=0.250 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c2 dst=0x1000007c001ec;2:4>4 cost=24.517 original=1.290 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001ed;3:4>4 cost=6.312 original=0.332 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ec dst=0x1000007c001eb;4:4>4 cost=5.211 original=0.274 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001eb dst=0x1000007c001f1;5:4>4 cost=27.061 original=1.424 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001db;6:4>4 cost=52.522 original=2.764 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f1 dst=0x1000007c001ef;7:4>4 cost=7.912 original=0.416 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ed dst=0x1000007c001f4]
2026-06-27 04:15:40.132 +75132ms hook GPSRouteProducer 0x44cc7c call=77 graph=0x59101d990 query=0x793ce010 outResult=0x793ce2b8 query_start00=(-1511.22,1267.18,27.49,1) query_end10=(-1513.02,1247.03,20.9871,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1081692672/0x40795200 query_ptr98=0 query_ptra0=0 query_flagsa8=3199052272/0xbeada9f0 ret_rva=0x6517d1
2026-06-27 04:15:40.132 +75132ms hook GPSRouteProducer 0x44cc7c call=75 graph=0x59101d990 query=0x796cdfc0 outResult=0x796ce120 query_start00=(-1566.6,1155.07,17.18,1) query_end10=(-1572.66,1150.79,17.1752,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.132 +75132ms hook GPSRouteProducer 0x44cc7c call=76 graph=0x59101d990 query=0x79b0e010 outResult=0x79b0e2b8 query_start00=(-1557.8,1146.91,17.18,1) query_end10=(-1554.57,1140.9,17.1906,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1093809664/0x41323600 query_ptr98=0 query_ptra0=0 query_flagsa8=3336585744/0xc6e04210 ret_rva=0x6517d1
2026-06-27 04:15:40.133 +75133ms hook GPSRouteProducer 0x44cc7c call=79 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1566.44,1128.65,17.18,1) query_end10=(-1570.37,1130.88,17.1801,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3415993488/0xcb9bec90 ret_rva=0x6517d1
2026-06-27 04:15:40.189 +75189ms hook GPSRouteProducer result call=75 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3206594304/0xbf20bf00 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=73 edgeCostMin=0.014 edgeCostMax=73.092 edgeCostAvg=24.518 edgeSrcClasses=[4:73] edgeDstClasses=[4:71,invalid:2] spatialAllowed=73 spatialLookupOk=73 spatialLookupFailed=0 spatialAdjusted=73 spatialClasses=[R:29:avgMult=19.000,P:44:avgMult=19.000] edgeRetRvas=[0x44f457:71,0x44f629:2] edgeSamples=[0:4>4 cost=0.772 original=0.041 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c8 dst=0x1000007c001c7;1:4>4 cost=26.790 original=1.410 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001e2;2:4>4 cost=25.690 original=1.352 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001c7 dst=0x1000007c001ca;3:4>4 cost=7.409 original=0.390 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001ca dst=0x1000007c001f4;4:4>4 cost=31.938 original=1.681 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001c4;5:4>4 cost=6.851 original=0.361 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001e2 dst=0x1000007c001e3;6:4>4 cost=19.367 original=1.019 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001f3;7:4>4 cost=29.869 original=1.572 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c001f4 dst=0x1000007c001ed]
2026-06-27 04:15:40.189 +75189ms hook GPSRouteProducer result call=57 value=0x42ae6120 out_u0c=21/0x15 out_u1c=20/0x14 out_u20=3206595808/0xbf20c4e0 out_u24=5/0x5 out_u2c=20/0x14 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=246 edgeCostMin=0.267 edgeCostMax=91.918 edgeCostAvg=26.606 edgeSrcClasses=[4:246] edgeDstClasses=[4:245,invalid:1] spatialAllowed=246 spatialLookupOk=246 spatialLookupFailed=0 spatialAdjusted=246 spatialClasses=[R:8:avgMult=19.000,P:238:avgMult=19.000] edgeRetRvas=[0x44f457:245,0x44f629:1] edgeSamples=[0:4>4 cost=7.392 original=0.389 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x10000077001fd;1:4>4 cost=6.361 original=0.335 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x1000007700208;2:4>4 cost=18.030 original=0.949 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x100000770020a;3:4>4 cost=2.165 original=0.114 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x10000077001ff;4:4>4 cost=36.617 original=1.927 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x1000007700209;5:4>4 cost=8.236 original=0.433 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001ff dst=0x10000077001fe;6:4>4 cost=4.279 original=0.225 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020a dst=0x100000770020f;7:4>4 cost=1.394 original=0.073 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001fe dst=0x100000780006c]
2026-06-27 04:15:40.189 +75189ms hook GPSRouteProducer result call=79 value=0x42ae6120 out_u0c=10/0xa out_u1c=8/0x8 out_u20=3277691312/0xc35d99b0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.022 edgeCostMax=67.578 edgeCostAvg=15.263 edgeSrcClasses=[3:10,4:25,5:14] edgeDstClasses=[3:12,4:23,5:12,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:49:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>4 cost=1.466 original=0.077 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000006700197 dst=0x100000670019c;1:4>4 cost=0.254 original=0.013 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019c dst=0x100000670019f;2:4>4 cost=20.622 original=1.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x1000006700198;3:4>4 cost=1.210 original=0.064 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x10000067001a2;4:4>4 cost=15.523 original=0.817 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a1;5:4>4 cost=32.375 original=1.704 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a0;6:4>5 cost=15.637 original=0.823 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x10000067001f5;7:4>4 cost=15.228 original=0.801 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x100000670019a]
2026-06-27 04:15:40.190 +75190ms hook GPSRouteProducer result call=76 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2951312720/0xafe97550 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=83 edgeCostMin=0.450 edgeCostMax=111.681 edgeCostAvg=23.711 edgeSrcClasses=[3:27,4:56] edgeDstClasses=[3:28,4:54,invalid:1] spatialAllowed=83 spatialLookupOk=83 spatialLookupFailed=0 spatialAdjusted=83 spatialClasses=[R:73:avgMult=19.000,P:10:avgMult=19.000] edgeRetRvas=[0x44f457:82,0x44f629:1] edgeSamples=[0:4>4 cost=30.874 original=1.625 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c0020a;1:4>4 cost=10.621 original=0.559 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c00211;2:4>4 cost=12.662 original=0.666 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00216;3:4>4 cost=43.144 original=2.271 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00217;4:4>4 cost=23.838 original=1.255 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00216 dst=0x1000007c00213;5:4>4 cost=7.302 original=0.384 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020a dst=0x1000007c0020e;6:4>4 cost=19.649 original=1.034 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x10000081001c5;7:4>3 cost=7.370 original=0.388 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x1000007c00156]
2026-06-27 04:15:40.190 +75190ms hook GPSRouteProducer 0x44cc7c call=80 graph=0x59101d990 query=0x794cdfc0 outResult=0x794ce120 query_start00=(-1598.3,1165.62,17.76,1) query_end10=(-1608.34,1160.11,17.7601,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:40.206 +75206ms hook GPSRouteProducer 0x44cc7c call=81 graph=0x59101d990 query=0x79d8e010 outResult=0x79d8e2b8 query_start00=(-1566.44,1128.65,17.18,1) query_end10=(-1562.64,1131.51,17.1799,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1100103424/0x41923f00 query_ptr98=0 query_ptra0=0 query_flagsa8=3415993488/0xcb9bec90 ret_rva=0x6517d1
2026-06-27 04:15:41.264 +75264ms hook GPSRouteProducer 0x44cc7c call=82 graph=0x59101d990 query=0x79b0e010 outResult=0x79b0e2b8 query_start00=(-1557.8,1146.91,17.18,1) query_end10=(-1565.27,1151.12,17.1799,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096795136/0x415fc400 query_ptr98=0 query_ptra0=0 query_flagsa8=3336585744/0xc6e04210 ret_rva=0x6517d1
2026-06-27 04:15:41.304 +75304ms hook GPSRouteProducer result call=81 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2842863888/0xa972a910 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=85 edgeCostMin=0.219 edgeCostMax=70.941 edgeCostAvg=14.602 edgeSrcClasses=[3:28,4:41,5:16] edgeDstClasses=[3:30,4:40,5:14,invalid:1] spatialAllowed=85 spatialLookupOk=85 spatialLookupFailed=0 spatialAdjusted=85 spatialClasses=[R:85:avgMult=19.000] edgeRetRvas=[0x44f457:84,0x44f629:1] edgeSamples=[0:4>4 cost=3.717 original=0.196 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000006700197 dst=0x100000670019c;1:4>4 cost=2.021 original=0.106 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019c dst=0x100000670019f;2:4>4 cost=14.212 original=0.748 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x1000006700198;3:4>4 cost=7.708 original=0.406 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x10000067001a2;4:4>4 cost=13.233 original=0.696 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a1;5:4>4 cost=16.995 original=0.894 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a0;6:4>5 cost=20.797 original=1.095 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x10000067001f5;7:4>4 cost=1.583 original=0.083 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x100000670019a]
2026-06-27 04:15:41.304 +75304ms hook GPSRouteProducer result call=80 value=0x42ae6120 out_u0c=10/0xa out_u1c=9/0x9 out_u20=3277691312/0xc35d99b0 out_u24=5/0x5 out_u2c=9/0x9 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=107 edgeCostMin=0.489 edgeCostMax=71.043 edgeCostAvg=22.518 edgeSrcClasses=[4:107] edgeDstClasses=[4:105,invalid:2] spatialAllowed=107 spatialLookupOk=107 spatialLookupFailed=0 spatialAdjusted=107 spatialClasses=[P:107:avgMult=19.000] edgeRetRvas=[0x44f457:105,0x44f629:2] edgeSamples=[0:4>4 cost=8.305 original=0.437 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x10000077001fd;1:4>4 cost=6.334 original=0.333 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x1000007700208;2:4>4 cost=19.590 original=1.031 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020b dst=0x100000770020a;3:4>4 cost=6.921 original=0.364 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x10000077001ff;4:4>4 cost=34.043 original=1.792 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007700208 dst=0x1000007700209;5:4>4 cost=9.231 original=0.486 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000077001ff dst=0x10000077001fe;6:4>4 cost=4.171 original=0.220 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020a dst=0x100000770020f;7:4>4 cost=25.977 original=1.367 spatial=P mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000770020f dst=0x1000007700204]
2026-06-27 04:15:41.319 +75319ms hook GPSRouteProducer 0x44cc7c call=83 graph=0x59101d990 query=0x79d8dfc0 outResult=0x79d8e120 query_start00=(-1566.44,1128.65,17.18,1) query_end10=(-1570.37,1130.88,17.1801,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:41.341 +75341ms hook GPSRouteProducer result call=82 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3206592480/0xbf20b7e0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=117 edgeCostMin=0.749 edgeCostMax=137.784 edgeCostAvg=22.124 edgeSrcClasses=[3:33,4:84] edgeDstClasses=[3:35,4:80,invalid:2] spatialAllowed=117 spatialLookupOk=117 spatialLookupFailed=0 spatialAdjusted=117 spatialClasses=[R:91:avgMult=19.000,P:26:avgMult=19.000] edgeRetRvas=[0x44f457:115,0x44f629:2] edgeSamples=[0:4>4 cost=25.336 original=1.333 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c0020a;1:4>4 cost=20.256 original=1.066 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c00211;2:4>4 cost=31.338 original=1.649 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00216;3:4>4 cost=32.048 original=1.687 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00217;4:4>4 cost=8.485 original=0.447 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020a dst=0x1000007c0020e;5:4>4 cost=24.072 original=1.267 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x10000081001c5;6:4>3 cost=6.387 original=0.336 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x1000007c00156;7:3>3 cost=5.748 original=0.303 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00156 dst=0x1000007c00159]
2026-06-27 04:15:41.342 +75342ms hook GPSRouteProducer result call=83 value=0x42ae6120 out_u0c=10/0xa out_u1c=8/0x8 out_u20=3277691312/0xc35d99b0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.022 edgeCostMax=67.578 edgeCostAvg=15.263 edgeSrcClasses=[3:10,4:25,5:14] edgeDstClasses=[3:12,4:23,5:12,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:49:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>4 cost=1.466 original=0.077 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000006700197 dst=0x100000670019c;1:4>4 cost=0.254 original=0.013 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019c dst=0x100000670019f;2:4>4 cost=20.622 original=1.085 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x1000006700198;3:4>4 cost=1.210 original=0.064 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000670019f dst=0x10000067001a2;4:4>4 cost=15.523 original=0.817 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a1;5:4>4 cost=32.375 original=1.704 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a2 dst=0x10000067001a0;6:4>5 cost=15.637 original=0.823 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x10000067001f5;7:4>4 cost=15.228 original=0.801 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000067001a1 dst=0x100000670019a]
2026-06-27 04:15:41.343 +75343ms hook GPSRouteProducer 0x44cc7c call=84 graph=0x59101d990 query=0x79b0dfc0 outResult=0x79b0e120 query_start00=(-1557.8,1146.91,17.18,1) query_end10=(-1557.44,1151.73,17.1796,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:41.353 +75353ms hook GPSRouteProducer result call=84 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2975221408/0xb15646a0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=3.531 edgeCostMax=58.131 edgeCostAvg=22.884 edgeSrcClasses=[3:9,4:25] edgeDstClasses=[3:11,4:21,invalid:2] spatialAllowed=34 spatialLookupOk=34 spatialLookupFailed=0 spatialAdjusted=34 spatialClasses=[R:34:avgMult=19.000] edgeRetRvas=[0x44f457:32,0x44f629:2] edgeSamples=[0:4>4 cost=30.874 original=1.625 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c0020a;1:4>4 cost=9.382 original=0.494 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00210 dst=0x1000007c00211;2:4>4 cost=32.218 original=1.696 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00216;3:4>4 cost=56.574 original=2.978 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00211 dst=0x1000007c00217;4:4>4 cost=7.544 original=0.397 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020a dst=0x1000007c0020e;5:4>4 cost=20.014 original=1.053 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x10000081001c5;6:4>3 cost=7.153 original=0.376 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c0020e dst=0x1000007c00156;7:4>4 cost=13.502 original=0.711 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007c00216 dst=0x1000007c00213]
2026-06-27 04:15:41.426 +75426ms hook GPSRouteProducer result call=77 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2312/0x908 out_state42=1 edgeCostCalls=3064 edgeCostMin=0.000 edgeCostMax=177.890 edgeCostAvg=17.327 edgeSrcClasses=[3:1017,4:1606,5:329,15:112] edgeDstClasses=[3:1041,4:1581,5:336,15:106] spatialAllowed=3064 spatialLookupOk=3064 spatialLookupFailed=0 spatialAdjusted=3064 spatialClasses=[H:842:avgMult=0.050,R:1645:avgMult=19.000,P:567:avgMult=19.000,.:10:avgMult=19.000] edgeRetRvas=[0x44f457:3064] edgeSamples=[0:3>3 cost=42.839 original=2.255 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a00057;1:3>3 cost=34.528 original=1.817 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a0005a;2:3>3 cost=27.019 original=1.422 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a0005a dst=0x1000008a00059;3:3>3 cost=40.290 original=2.121 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00057 dst=0x1000008a00060;4:3>3 cost=29.832 original=1.570 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00059 dst=0x1000008a00056;5:3>3 cost=7.235 original=0.381 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00060 dst=0x1000008a00061;6:3>3 cost=22.361 original=1.177 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00061 dst=0x1000008a00062;7:3>3 cost=12.385 original=0.652 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00056 dst=0x1000008a0005c]
2026-06-27 04:15:41.426 +75426ms hook GPSRouteProducer 0x44cc7c call=85 graph=0x59101d990 query=0x793cdfc0 outResult=0x793ce120 query_start00=(-1511.22,1267.18,27.49,1) query_end10=(-1513.22,1269.28,27.4887,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:41.427 +75427ms hook GPSRouteProducer result call=85 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=2.900 edgeCostMax=34.528 edgeCostAvg=22.848 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] spatialAllowed=5 spatialLookupOk=5 spatialLookupFailed=0 spatialAdjusted=5 spatialClasses=[R:5:avgMult=19.000] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=30.203 original=1.590 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a00057;1:3>3 cost=34.528 original=1.817 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00058 dst=0x1000008a0005a;2:3>3 cost=20.358 original=1.071 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a00057 dst=0x1000008a00060;3:3>255 cost=2.900 original=0.153 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008a00060 dst=0x0;4:3>3 cost=26.250 original=1.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008a0005a dst=0x1000008a00059]
2026-06-27 04:15:41.471 +75471ms hook GPSRouteProducer 0x44cc7c call=86 graph=0x59101d990 query=0x793cf8c0 outResult=0x793cf860 query_start00=(-1501.03,1155.36,18.8027,1) query_end10=(-1503.92,1156.68,18.8027,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2034039440/0x793cfa90 ret_rva=0x6517d1
2026-06-27 04:15:41.472 +75472ms hook GPSRouteProducer result call=86 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:41.561 +75561ms hook GPSRouteProducer 0x44cc7c call=87 graph=0x59101d990 query=0x793cf8c0 outResult=0x793cf860 query_start00=(-1547.31,1235.89,19.0584,1) query_end10=(-1489.32,1264.84,22.8609,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1083545456/0x40959770 ret_rva=0x6517d1
2026-06-27 04:15:41.708 +75708ms hook GPSRouteProducer result call=87 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2312/0x908 out_state42=1 edgeCostCalls=2804 edgeCostMin=0.000 edgeCostMax=226.851 edgeCostAvg=20.175 edgeSrcClasses=[3:491,4:2261,10:1,12:8,15:43] edgeDstClasses=[3:520,4:2231,10:1,12:8,15:44] spatialAllowed=2804 spatialLookupOk=2800 spatialLookupFailed=4 spatialAdjusted=2800 spatialClasses=[H:494:avgMult=0.050,R:2193:avgMult=19.000,G:36:avgMult=19.000,P:72:avgMult=19.000,.:5:avgMult=19.000] edgeRetRvas=[0x44f457:2804] edgeSamples=[0:4>4 cost=5.073 original=0.267 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000840009a dst=0x1000008400096;1:4>4 cost=13.162 original=0.693 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000840009a dst=0x10000084000a8;2:4>4 cost=43.033 original=2.265 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000840009a dst=0x1000008400089;3:4>4 cost=42.159 original=2.219 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400096 dst=0x1000008400068;4:4>4 cost=8.533 original=0.449 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400096 dst=0x1000008400097;5:4>4 cost=25.294 original=1.331 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000084000a8 dst=0x100000840007f;6:4>4 cost=29.283 original=1.541 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000084000a8 dst=0x1000008400088;7:4>4 cost=3.406 original=0.179 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400097 dst=0x100000840008e]
2026-06-27 04:15:41.709 +75709ms hook GPSRouteProducer 0x44cc7c call=88 graph=0x59101d990 query=0x793cf8c0 outResult=0x793cf860 query_start00=(-1553.99,1242.15,19.0584,1) query_end10=(-1555.19,1243.78,19.0602,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2034039248/0x793cf9d0 ret_rva=0x6517d1
2026-06-27 04:15:41.709 +75709ms hook GPSRouteProducer result call=88 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2967602096/0xb0e203b0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=16.629 edgeCostMax=33.949 edgeCostAvg=23.878 edgeSrcClasses=[4:8] edgeDstClasses=[4:7,invalid:1] spatialAllowed=8 spatialLookupOk=8 spatialLookupFailed=0 spatialAdjusted=8 spatialClasses=[R:8:avgMult=19.000] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:4>4 cost=16.629 original=0.875 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400181;1:4>255 cost=21.798 original=1.147 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008400181 dst=0x0;2:4>4 cost=29.924 original=1.575 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400182;3:4>4 cost=18.115 original=0.953 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400183 dst=0x1000008400180;4:4>4 cost=25.874 original=1.362 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017a;5:4>4 cost=19.746 original=1.039 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400180 dst=0x100000840017f;6:4>4 cost=33.949 original=1.787 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x100000840017e;7:4>4 cost=24.991 original=1.315 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008400182 dst=0x1000008400078]
2026-06-27 04:15:41.715 +75715ms hook GPSRouteProducer 0x44cc7c call=90 graph=0x59101d990 query=0x794cf6b0 outResult=0x1aa6bfa70 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:41.721 +75721ms hook GPSRouteProducer result call=90 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2930040416/0xaea4de60 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.855 edgeCostAvg=29.491 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.910 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=9.998 original=0.526 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.271 original=3.383 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.531 original=3.554 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.341 original=0.386 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.855 original=4.992 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.766 original=1.988 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.383 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:41.902 +75902ms hook GPSRouteProducer 0x44cc7c call=91 graph=0x59101d990 query=0x794cf8c0 outResult=0x794cf860 query_start00=(-1501.03,1155.36,18.8027,1) query_end10=(-1503.92,1156.68,18.8027,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2035088016/0x794cfa90 ret_rva=0x6517d1
2026-06-27 04:15:41.902 +75902ms hook GPSRouteProducer result call=91 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=3206582508/0xbf2090ec out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:42.386 +76386ms hook GPSRouteProducer 0x44cc7c call=92 graph=0x59101d990 query=0x796cf6a0 outResult=0x796cf630 query_start00=(-1639.15,1222.62,17.39,1) query_end10=(-1645.7,1225.11,17.42,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1099956248/0x41900018 ret_rva=0x6517d1
2026-06-27 04:15:42.388 +76388ms hook GPSRouteProducer result call=92 value=0x42ae6120 out_u0c=12/0xc out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.001 edgeCostMax=0.209 edgeCostAvg=0.046 edgeSrcClasses=[3:26] edgeDstClasses=[3:25,invalid:1] spatialAllowed=26 spatialLookupOk=26 spatialLookupFailed=0 spatialAdjusted=26 spatialClasses=[H:26:avgMult=0.050] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=0.013 original=0.256 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a60008c;1:3>3 cost=0.039 original=0.772 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a600092;2:3>3 cost=0.209 original=4.189 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a600097;3:3>3 cost=0.167 original=3.338 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60008c dst=0x100000a600082;4:3>3 cost=0.012 original=0.247 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600082 dst=0x100000a600074;5:3>3 cost=0.001 original=0.020 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600074 dst=0x100000a60006e;6:3>3 cost=0.049 original=0.989 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60006e dst=0x100000a60006d;7:3>3 cost=0.022 original=0.450 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60006d dst=0x100000a600153]
2026-06-27 04:15:42.399 +76399ms hook GPSRouteProducer 0x44cc7c call=94 graph=0x59101d990 query=0x796cf650 outResult=0x796cf5e0 query_start00=(-1639.15,1222.62,17.39,1) query_end10=(-1643.56,1223.09,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=24/0x18 ret_rva=0x6517d1
2026-06-27 04:15:42.399 +76399ms hook GPSRouteProducer result call=94 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:42.028 +77028ms hook GPSRouteProducer 0x44cc7c call=96 graph=0x59101d990 query=0x795cf650 outResult=0x795cf5e0 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1638.9,1227.39,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=24/0x18 ret_rva=0x6517d1
2026-06-27 04:15:42.029 +77029ms hook GPSRouteProducer result call=96 value=0x42ae6120 out_u0c=10/0xa out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.002 edgeCostMax=0.134 edgeCostAvg=0.046 edgeSrcClasses=[3:15] edgeDstClasses=[3:14,invalid:1] spatialAllowed=15 spatialLookupOk=15 spatialLookupFailed=0 spatialAdjusted=15 spatialClasses=[H:15:avgMult=0.050] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.039 original=0.779 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.064 original=1.272 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a60017f;3:3>3 cost=0.041 original=0.820 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a600186;4:3>3 cost=0.063 original=1.262 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600186 dst=0x100000a600179;5:3>3 cost=0.021 original=0.414 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600186 dst=0x100000a600187;6:3>3 cost=0.002 original=0.048 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600187 dst=0x100000a600189;7:3>3 cost=0.032 original=0.638 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600189 dst=0x100000a600178]
2026-06-27 04:15:42.173 +77173ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a0f52190 query=0x79a0fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3738,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:15:42.174 +77174ms hook GPSRouteProducer 0x44cc7c call=97 graph=0x59101d990 query=0x79a0f500 outResult=0x1aa6bfa70 query_start00=(-1569.68,1213.26,17.3738,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a243f360 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-27 04:15:42.178 +77178ms hook GPSRouteProducer result call=97 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2870457856/0xab17b600 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.828 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x8d74d3:47,0x8d76b0:2] edgeSamples=[0:4>3 cost=0.930 original=0.049 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.002 original=0.526 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.238 original=3.381 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.506 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.356 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.828 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.839 original=1.992 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.377 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:42.178 +77178ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
2026-06-27 04:15:42.178 +77178ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a0f52190 query=0x79a0fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3738,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:15:42.179 +77179ms hook GPSRouteProducer 0x44cc7c call=98 graph=0x59101d990 query=0x79a0f500 outResult=0x5a9423ac0 query_start00=(-1569.68,1213.26,17.3738,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a243f360 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
2026-06-27 04:15:42.182 +77182ms hook GPSRouteProducer result call=98 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2870457856/0xab17b600 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.828 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x8d74d3:47,0x8d76b0:2] edgeSamples=[0:4>3 cost=0.930 original=0.049 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.002 original=0.526 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.238 original=3.381 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.506 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.356 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.828 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.839 original=1.992 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.377 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x8d74d3 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:42.182 +77182ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
2026-06-27 04:15:42.213 +77213ms hook GPSRouteProducer 0x44cc7c call=99 graph=0x59101d990 query=0x79a0f6b0 outResult=0x5a53b83c0 query_start00=(-1569.68,1213.26,17.3742,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:42.216 +77216ms hook GPSRouteProducer result call=99 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2870469552/0xab17e3b0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.830 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.927 original=0.049 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.003 original=0.526 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.240 original=3.381 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.508 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.356 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.830 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.834 original=1.991 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.377 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:42.223 +77223ms hook GPSRouteProducer 0x44cc7c call=100 graph=0x59101d990 query=0x7980e330 outResult=0x7980e490 query_start00=(-1530.75,1139.44,17.18,1) query_end10=(-1533.72,1141.89,17.1792,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:42.225 +77225ms hook GPSRouteProducer result call=100 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=24 edgeCostMin=0.274 edgeCostMax=57.774 edgeCostAvg=15.997 edgeSrcClasses=[3:24] edgeDstClasses=[3:23,invalid:1] spatialAllowed=24 spatialLookupOk=24 spatialLookupFailed=0 spatialAdjusted=24 spatialClasses=[R:24:avgMult=19.000] edgeRetRvas=[0x44f457:23,0x44f629:1] edgeSamples=[0:3>3 cost=25.119 original=1.322 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;1:3>3 cost=0.274 original=0.014 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100116;2:3>3 cost=24.527 original=1.291 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;3:3>3 cost=4.175 original=0.220 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;4:3>3 cost=35.830 original=1.886 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=10.448 original=0.550 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=0.998 original=0.053 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110;7:3>3 cost=7.312 original=0.385 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100110 dst=0x10000081000c1]
2026-06-27 04:15:42.225 +77225ms hook GPSRouteProducer 0x44cc7c call=101 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1530.75,1139.44,17.18,1) query_end10=(-1532.89,1141.35,17.1793,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1044984832/0x3e493400 query_ptr98=0 query_ptra0=0 query_flagsa8=3198470672/0xbea4ca10 ret_rva=0x6517d1
2026-06-27 04:15:42.226 +77226ms hook GPSRouteProducer result call=101 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.264 edgeCostMax=36.813 edgeCostAvg=12.594 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] spatialAllowed=14 spatialLookupOk=14 spatialLookupFailed=0 spatialAdjusted=14 spatialClasses=[R:14:avgMult=19.000] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=25.119 original=1.322 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;1:3>3 cost=0.264 original=0.014 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100116;2:3>3 cost=24.767 original=1.304 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;3:3>3 cost=4.101 original=0.216 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;4:3>3 cost=36.813 original=1.938 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=10.048 original=0.529 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>255 cost=19.701 original=1.037 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008100126 dst=0x0;7:3>3 cost=0.907 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110]
2026-06-27 04:15:42.226 +77226ms hook GPSRouteProducer 0x44cc7c call=102 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1530.75,1139.44,17.18,1) query_end10=(-1528.37,1141.11,17.1793,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1042766080/0x3e275900 query_ptr98=0 query_ptra0=0 query_flagsa8=3198470672/0xbea4ca10 ret_rva=0x6517d1
2026-06-27 04:15:42.227 +77227ms hook GPSRouteProducer result call=102 value=0x42ae6120 out_u0c=10/0xa out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.207 edgeCostMax=67.770 edgeCostAvg=15.203 edgeSrcClasses=[3:17] edgeDstClasses=[3:16,invalid:1] spatialAllowed=17 spatialLookupOk=17 spatialLookupFailed=0 spatialAdjusted=17 spatialClasses=[R:17:avgMult=19.000] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:3>3 cost=19.428 original=1.023 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;1:3>3 cost=0.631 original=0.033 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100116;2:3>3 cost=25.000 original=1.316 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;3:3>3 cost=4.886 original=0.257 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;4:3>3 cost=0.207 original=0.011 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110;5:3>3 cost=2.152 original=0.113 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100110 dst=0x10000081000c1;6:3>3 cost=4.631 original=0.244 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000c1 dst=0x10000081000c2;7:3>3 cost=1.093 original=0.058 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000081000c2 dst=0x10000081000c4]
2026-06-27 04:15:42.228 +77228ms hook GPSRouteProducer 0x44cc7c call=103 graph=0x59101d990 query=0x7980e010 outResult=0x7980e2b8 query_start00=(-1530.75,1139.44,17.18,1) query_end10=(-1535.54,1143,17.1603,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1107660288/0x42058e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3198470672/0xbea4ca10 ret_rva=0x6517d1
2026-06-27 04:15:42.230 +77230ms hook GPSRouteProducer result call=103 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=38 edgeCostMin=0.283 edgeCostMax=58.991 edgeCostAvg=17.707 edgeSrcClasses=[3:38] edgeDstClasses=[3:37,invalid:1] spatialAllowed=38 spatialLookupOk=38 spatialLookupFailed=0 spatialAdjusted=38 spatialClasses=[R:38:avgMult=19.000] edgeRetRvas=[0x44f457:37,0x44f629:1] edgeSamples=[0:3>3 cost=25.119 original=1.322 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;1:3>3 cost=0.283 original=0.015 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100116;2:3>3 cost=24.301 original=1.279 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;3:3>3 cost=4.277 original=0.225 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;4:3>3 cost=34.687 original=1.826 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=10.951 original=0.576 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>3 cost=1.111 original=0.058 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110;7:3>3 cost=7.712 original=0.406 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100110 dst=0x10000081000c1]
2026-06-27 04:15:42.231 +77231ms hook GPSRouteProducer 0x44cc7c call=104 graph=0x59101d990 query=0x7980dfc0 outResult=0x7980e120 query_start00=(-1530.75,1139.44,17.18,1) query_end10=(-1532.89,1141.35,17.1793,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
2026-06-27 04:15:42.232 +77232ms hook GPSRouteProducer result call=104 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.264 edgeCostMax=36.813 edgeCostAvg=12.594 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] spatialAllowed=14 spatialLookupOk=14 spatialLookupFailed=0 spatialAdjusted=14 spatialClasses=[R:14:avgMult=19.000] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=25.119 original=1.322 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100112;1:3>3 cost=0.264 original=0.014 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100116;2:3>3 cost=24.767 original=1.304 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100119 dst=0x1000008100120;3:3>3 cost=4.101 original=0.216 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100116 dst=0x100000810010d;4:3>3 cost=36.813 original=1.938 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100104;5:3>3 cost=10.048 original=0.529 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100120 dst=0x1000008100126;6:3>255 cost=19.701 original=1.037 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x1000008100126 dst=0x0;7:3>3 cost=0.907 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008100112 dst=0x1000008100110]
2026-06-27 04:15:43.276 +77276ms hook GPSRouteProducer 0x44cc7c call=105 graph=0x59101d990 query=0x7990f8e0 outResult=0x7990f870 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1647.11,1236.41,17.6,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2425107792/0x908c3550 ret_rva=0x6517d1
2026-06-27 04:15:43.278 +77278ms hook GPSRouteProducer result call=105 value=0x42ae6120 out_u0c=14/0xe out_u1c=3/0x3 out_u20=2936824480/0xaf0c62a0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=27 edgeCostMin=0.000 edgeCostMax=0.101 edgeCostAvg=0.037 edgeSrcClasses=[3:24,15:3] edgeDstClasses=[3:23,15:3,invalid:1] spatialAllowed=27 spatialLookupOk=27 spatialLookupFailed=0 spatialAdjusted=27 spatialClasses=[H:27:avgMult=0.050] edgeRetRvas=[0x44f457:26,0x44f629:1] edgeSamples=[0:3>15 cost=0.010 original=0.191 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.009 original=0.183 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:15>15 cost=0.055 original=1.091 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d7 dst=0x100000a7000d8;3:15>3 cost=0.048 original=0.962 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000c3;4:15>15 cost=0.077 original=1.543 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000da;5:3>3 cost=0.052 original=1.047 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000bb;6:3>3 cost=0.023 original=0.461 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000c6;7:3>3 cost=0.052 original=1.048 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c6 dst=0x100000a7000c8]
2026-06-27 04:15:43.310 +77310ms hook GPSRouteProducer 0x44cc7c call=106 graph=0x59101d990 query=0x79e8f8e0 outResult=0x79e8f870 query_start00=(-1647.05,1234.99,17.39,1) query_end10=(-1643.09,1241.89,18.2202,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2425107792/0x908c3550 ret_rva=0x6517d1
2026-06-27 04:15:43.312 +77312ms hook GPSRouteProducer result call=106 value=0x42ae6120 out_u0c=19/0x13 out_u1c=4/0x4 out_u20=2903241088/0xad0bf180 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=33 edgeCostMin=0.004 edgeCostMax=0.270 edgeCostAvg=0.048 edgeSrcClasses=[3:30,15:3] edgeDstClasses=[3:29,15:3,invalid:1] spatialAllowed=33 spatialLookupOk=33 spatialLookupFailed=0 spatialAdjusted=33 spatialClasses=[H:33:avgMult=0.050] edgeRetRvas=[0x44f457:32,0x44f629:1] edgeSamples=[0:3>3 cost=0.033 original=0.667 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.034 original=0.679 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.050 original=1.008 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.004 original=0.078 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000ab;4:3>3 cost=0.053 original=1.056 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000b9;5:3>3 cost=0.011 original=0.227 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000ad dst=0x100000a7000aa;6:3>3 cost=0.010 original=0.203 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000aa dst=0x100000a7000a8;7:3>3 cost=0.032 original=0.640 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000a8 dst=0x100000a7000bc]
2026-06-27 04:15:43.341 +77341ms hook GPSRouteProducer 0x44cc7c call=107 graph=0x59101d990 query=0x7990f8e0 outResult=0x7990f870 query_start00=(-1651.96,1232.69,17.3876,1) query_end10=(-1651.39,1243.34,18.5,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2425107792/0x908c3550 ret_rva=0x6517d1
2026-06-27 04:15:43.343 +77343ms hook GPSRouteProducer result call=107 value=0x42ae6120 out_u0c=17/0x11 out_u1c=5/0x5 out_u20=2914983024/0xadbf1c70 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=32 edgeCostMin=0.000 edgeCostMax=0.110 edgeCostAvg=0.042 edgeSrcClasses=[3:24,4:4,15:4] edgeDstClasses=[3:23,4:4,15:4,invalid:1] spatialAllowed=32 spatialLookupOk=32 spatialLookupFailed=0 spatialAdjusted=32 spatialClasses=[H:32:avgMult=0.050] edgeRetRvas=[0x44f457:31,0x44f629:1] edgeSamples=[0:3>3 cost=0.023 original=0.452 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a200166;1:3>3 cost=0.066 original=1.329 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700006;2:3>3 cost=0.051 original=1.012 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700007;3:3>3 cost=0.019 original=0.383 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700006 dst=0x100000a700000;4:3>3 cost=0.031 original=0.629 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700006 dst=0x100000a700004;5:3>3 cost=0.020 original=0.400 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700004 dst=0x100000a700003;6:3>3 cost=0.022 original=0.447 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700003 dst=0x100000a700002;7:3>3 cost=0.019 original=0.378 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700002 dst=0x100000a7000ac]
2026-06-27 04:15:43.346 +77346ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=1 tracked=1 perQueryCall=9 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x52069c outPath=0x79c8fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 04:15:43.347 +77347ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=1 tracked=1 perQueryCall=10 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x520783 outPath=0x79c8fbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000301669cb050000002e0000002e0000000000000000000000000000000000000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5cb691630 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd4e6140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a440614ecd,3.52043,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f43a1fd934,0.000609773,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c39d0b5df,0.000398084,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e39b83f5a,0.000351424,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 04:15:43.347 +77347ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=1 tracked=1 perQueryCall=11 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x520783 outPath=0x79c8fbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000301669cb050000002e000000000000000000000000000000000000000000000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cb691630 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 04:15:43.370 +77370ms hook GPSRouteProducer 0x44cc7c call=108 graph=0x59101d990 query=0x31d880 outResult=0x31d810 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1647.05,1238.4,17.6,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2425107792/0x908c3550 ret_rva=0x6517d1
2026-06-27 04:15:43.371 +77371ms hook GPSRouteProducer result call=108 value=0x42ae6120 out_u0c=10/0xa out_u1c=3/0x3 out_u20=2697416688/0xa0c74ff0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.000 edgeCostMax=0.244 edgeCostAvg=0.089 edgeSrcClasses=[3:12,15:3] edgeDstClasses=[3:10,4:1,15:3,invalid:1] spatialAllowed=15 spatialLookupOk=15 spatialLookupFailed=0 spatialAdjusted=15 spatialClasses=[H:15:avgMult=0.050] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:3>3 cost=0.078 original=1.563 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.027 original=0.547 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.174 original=3.486 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a700132;3:3>3 cost=0.047 original=0.934 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a70010c;4:3>3 cost=0.149 original=2.977 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010a;5:3>3 cost=0.134 original=2.685 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010d;6:3>4 cost=0.244 original=4.888 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010d dst=0x100000a700131;7:3>3 cost=0.009 original=0.178 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010d dst=0x100000a70010b]
2026-06-27 04:15:43.374 +77374ms hook GPSQueryResultFetch 0x7094b8 call=29 queryId=2 tracked=1 perQueryCall=11 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x52069c outPath=0x795cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
2026-06-27 04:15:43.377 +77377ms hook GPSQueryResultFetch 0x7094b8 call=30 queryId=2 tracked=1 perQueryCall=12 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x520783 outPath=0x795cfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000305409b2050000001d0000001d0000000000000000000000000000000000000001000000010000000000000000000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5b2095430 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd4e6140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a440614ecd,3.52043,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2400000000,0,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d1126700000000,0,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
2026-06-27 04:15:43.377 +77377ms hook GPSQueryResultFetch 0x7094b8 call=31 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x520783 outPath=0x795cfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000305409b2050000001d000000000000000000000000000000000000000000000001000000020000000100000000000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b2095430 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
2026-06-27 04:15:43.402 +77402ms hook GPSRouteProducer 0x44cc7c call=109 graph=0x59101d990 query=0x7990f8e0 outResult=0x7990f870 query_start00=(-1639.15,1222.62,17.39,1) query_end10=(-1641.26,1240.79,18.2186,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2425107792/0x908c3550 ret_rva=0x6517d1
2026-06-27 04:15:43.405 +77405ms hook GPSRouteProducer result call=109 value=0x42ae6120 out_u0c=27/0x1b out_u1c=4/0x4 out_u20=2937251824/0xaf12e7f0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=53 edgeCostMin=0.001 edgeCostMax=0.305 edgeCostAvg=0.063 edgeSrcClasses=[3:50,15:3] edgeDstClasses=[3:49,15:3,invalid:1] spatialAllowed=53 spatialLookupOk=53 spatialLookupFailed=0 spatialAdjusted=53 spatialClasses=[H:53:avgMult=0.050] edgeRetRvas=[0x44f457:52,0x44f629:1] edgeSamples=[0:3>3 cost=0.003 original=0.063 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a60008c;1:3>3 cost=0.240 original=4.791 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a600092;2:3>3 cost=0.305 original=6.104 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600095 dst=0x100000a600097;3:3>3 cost=0.179 original=3.572 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60008c dst=0x100000a600082;4:3>3 cost=0.005 original=0.099 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600082 dst=0x100000a600074;5:3>3 cost=0.002 original=0.032 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600074 dst=0x100000a60006e;6:3>3 cost=0.039 original=0.782 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60006e dst=0x100000a60006d;7:3>3 cost=0.023 original=0.450 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a60006d dst=0x100000a600153]
2026-06-27 04:15:43.232 +78232ms hook GPSRouteProducer 0x44cc7c call=111 graph=0x59101d990 query=0x796cf6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:43.236 +78236ms hook GPSRouteProducer result call=111 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2552987328/0x982b7ec0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.924 original=0.049 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.002 original=0.526 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.247 original=3.381 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.514 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.351 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.806 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.378 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:44.415 +78415ms hook GPSRouteProducer 0x44cc7c call=112 graph=0x59101d990 query=0x79d893f0 outResult=0x5c1ab1a48 query_start00=(-1651.96,1232.69,17.3876,1) query_end10=(-1645.59,1243.34,18.1926,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=18/0x12 ret_rva=0x1b1072
2026-06-27 04:15:44.417 +78417ms hook GPSRouteProducer result call=112 value=0x42ae6120 out_u0c=18/0x12 out_u1c=3/0x3 out_u20=2884707136/0xabf12340 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=30 edgeCostMin=0.001 edgeCostMax=0.259 edgeCostAvg=0.066 edgeSrcClasses=[3:27,15:3] edgeDstClasses=[3:25,4:1,15:3,invalid:1] spatialAllowed=30 spatialLookupOk=30 spatialLookupFailed=0 spatialAdjusted=30 spatialClasses=[H:30:avgMult=0.050] edgeRetRvas=[0x44f457:29,0x44f629:1] edgeSamples=[0:3>3 cost=0.043 original=0.854 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a200166;1:3>3 cost=0.056 original=1.110 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700006;2:3>3 cost=0.030 original=0.610 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700007;3:3>3 cost=0.052 original=1.036 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700006 dst=0x100000a700000;4:3>3 cost=0.009 original=0.181 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700006 dst=0x100000a700004;5:3>3 cost=0.030 original=0.608 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700004 dst=0x100000a700003;6:3>3 cost=0.001 original=0.028 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700003 dst=0x100000a700002;7:3>3 cost=0.024 original=0.474 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700002 dst=0x100000a7000ac]
2026-06-27 04:15:44.637 +78637ms hook GPSRouteProducer 0x44cc7c call=113 graph=0x59101d990 query=0x79b095f0 outResult=0x79b09590 query_start00=(-1651.96,1232.69,17.3876,1) query_end10=(-1653.62,1233.81,17.3876,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.638 +78638ms hook GPSRouteProducer result call=113 value=0x42ae6120 out_u0c=7/0x7 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.004 edgeCostMax=0.080 edgeCostAvg=0.035 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] spatialAllowed=11 spatialLookupOk=11 spatialLookupFailed=0 spatialAdjusted=11 spatialClasses=[H:11:avgMult=0.050] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.026 original=0.529 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a200166;1:3>3 cost=0.058 original=1.166 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700006;2:3>3 cost=0.030 original=0.591 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700008 dst=0x100000a700007;3:3>3 cost=0.080 original=1.598 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a200166 dst=0x100000a200162;4:3>3 cost=0.035 original=0.693 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a200166 dst=0x100000a200167;5:3>3 cost=0.014 original=0.280 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a200167 dst=0x100000a200165;6:3>3 cost=0.046 original=0.918 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a200167 dst=0x100000a20015f;7:3>3 cost=0.075 original=1.492 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a200165 dst=0x100000a200160]
2026-06-27 04:15:44.697 +78697ms hook GPSRouteProducer 0x44cc7c call=118 graph=0x59101d990 query=0x7990f8c0 outResult=0x7990f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.698 +78698ms hook GPSRouteProducer result call=118 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.721 +78721ms hook GPSRouteProducer 0x44cc7c call=119 graph=0x59101d990 query=0x79e8f8c0 outResult=0x79e8f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.721 +78721ms hook GPSRouteProducer result call=119 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.747 +78747ms hook GPSRouteProducer 0x44cc7c call=120 graph=0x59101d990 query=0x79b0f8c0 outResult=0x79b0f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.748 +78748ms hook GPSRouteProducer result call=120 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.777 +78777ms hook GPSRouteProducer 0x44cc7c call=123 graph=0x59101d990 query=0x79d8f8c0 outResult=0x79d8f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.777 +78777ms hook GPSRouteProducer result call=123 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.801 +78801ms hook GPSRouteProducer 0x44cc7c call=124 graph=0x59101d990 query=0x7980f8c0 outResult=0x7980f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.801 +78801ms hook GPSRouteProducer result call=124 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.825 +78825ms hook GPSRouteProducer 0x44cc7c call=125 graph=0x59101d990 query=0x7990f8c0 outResult=0x7990f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.825 +78825ms hook GPSRouteProducer result call=125 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.850 +78850ms hook GPSRouteProducer 0x44cc7c call=126 graph=0x59101d990 query=0x7990f8c0 outResult=0x7990f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.850 +78850ms hook GPSRouteProducer result call=126 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.873 +78873ms hook GPSRouteProducer 0x44cc7c call=127 graph=0x59101d990 query=0x794cf8c0 outResult=0x794cf860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1649.98,1242.98,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.873 +78873ms hook GPSRouteProducer result call=127 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=4/0x4 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] spatialAllowed=0 spatialLookupOk=0 spatialLookupFailed=0 spatialAdjusted=0 spatialClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
2026-06-27 04:15:44.897 +78897ms hook GPSRouteProducer 0x44cc7c call=128 graph=0x59101d990 query=0x79b0f9d0 outResult=0x79b0f940 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1637.25,1246.35,18.2,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x6517d1
2026-06-27 04:15:44.899 +78899ms hook GPSRouteProducer result call=128 value=0x42ae6120 out_u0c=16/0x10 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1151036108/0x449b6acc out_flags40=1/0x1 out_state42=1 edgeCostCalls=27 edgeCostMin=0.000 edgeCostMax=9.742 edgeCostAvg=0.609 edgeSrcClasses=[3:27] edgeDstClasses=[3:26,invalid:1] spatialAllowed=27 spatialLookupOk=26 spatialLookupFailed=1 spatialAdjusted=26 spatialClasses=[H:25:avgMult=0.050,.:1:avgMult=19.000] edgeRetRvas=[0x44f457:26,0x44f629:1] edgeSamples=[0:3>3 cost=0.436 original=8.727 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.003 original=0.067 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.140 original=2.807 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700128;3:3>3 cost=0.832 original=16.634 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700125;4:3>3 cost=0.382 original=7.641 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700127;5:3>3 cost=0.068 original=1.365 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700125 dst=0x100000a700124;6:3>3 cost=0.062 original=1.233 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700124 dst=0x100000a700123;7:3>3 cost=0.083 original=1.654 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700123 dst=0x100000a700121]
2026-06-27 04:15:44.899 +78899ms hook GPSRouteProducer 0x44cc7c call=129 graph=0x59101d990 query=0x79b0f8c0 outResult=0x79b0f860 query_start00=(-1645.59,1243.34,18.1926,1) query_end10=(-1642.06,1242.56,18.2,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
2026-06-27 04:15:44.900 +78900ms hook GPSRouteProducer result call=129 value=0x42ae6120 out_u0c=9/0x9 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.003 edgeCostMax=1.162 edgeCostAvg=0.396 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] spatialAllowed=9 spatialLookupOk=9 spatialLookupFailed=0 spatialAdjusted=9 spatialClasses=[H:9:avgMult=0.050] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.434 original=8.686 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.003 original=0.054 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.189 original=3.773 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700128;3:3>3 cost=1.135 original=22.708 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700125;4:3>3 cost=0.212 original=4.250 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700127;5:3>3 cost=0.071 original=1.418 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700127 dst=0x100000a7000fc;6:3>3 cost=1.162 original=23.249 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fc dst=0x100000a7000f7;7:3>3 cost=0.347 original=6.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fc dst=0x100000a7000fd]
2026-06-27 04:15:44.920 +78920ms hook GPSRouteProducer 0x44cc7c call=130 graph=0x59101d990 query=0x79d895f0 outResult=0x79d89590 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1636.82,1229.19,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.921 +78921ms hook GPSRouteProducer 0x44cc7c call=131 graph=0x59101d990 query=0x793c93f0 outResult=0x5c1ab1a48 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.15,1222.62,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=18/0x12 ret_rva=0x1b1072
2026-06-27 04:15:44.921 +78921ms hook GPSRouteProducer result call=130 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.020 edgeCostMax=0.064 edgeCostAvg=0.041 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] spatialAllowed=5 spatialLookupOk=5 spatialLookupFailed=0 spatialAdjusted=5 spatialClasses=[H:5:avgMult=0.050] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.039 original=0.779 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.064 original=1.272 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a60017f;3:3>3 cost=0.041 original=0.820 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a600186;4:3>255 cost=0.020 original=0.401 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a600186 dst=0x0]
2026-06-27 04:15:44.924 +78924ms hook GPSRouteProducer 0x44cc7c call=132 graph=0x59101d990 query=0x79d895f0 outResult=0x79d89590 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1633.79,1231.8,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.925 +78925ms hook GPSRouteProducer result call=131 value=0x42ae6120 out_u0c=26/0x1a out_u1c=3/0x3 out_u20=2550465632/0x98050460 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=53 edgeCostMin=0.000 edgeCostMax=0.302 edgeCostAvg=0.058 edgeSrcClasses=[3:50,15:3] edgeDstClasses=[3:49,15:3,invalid:1] spatialAllowed=53 spatialLookupOk=53 spatialLookupFailed=0 spatialAdjusted=53 spatialClasses=[H:53:avgMult=0.050] edgeRetRvas=[0x44f457:52,0x44f629:1] edgeSamples=[0:3>15 cost=0.006 original=0.118 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.010 original=0.196 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:15>15 cost=0.023 original=0.450 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d7 dst=0x100000a7000d8;3:15>3 cost=0.076 original=1.520 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000c3;4:15>15 cost=0.041 original=0.829 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000da;5:3>3 cost=0.099 original=1.978 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000bb;6:3>3 cost=0.007 original=0.131 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000c6;7:3>3 cost=0.008 original=0.154 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c6 dst=0x100000a7000c8]
2026-06-27 04:15:44.925 +78925ms hook GPSRouteProducer result call=132 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.014 edgeCostMax=0.049 edgeCostAvg=0.033 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] spatialAllowed=7 spatialLookupOk=7 spatialLookupFailed=0 spatialAdjusted=7 spatialClasses=[H:7:avgMult=0.050] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.040 original=0.803 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.027 original=0.547 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600182 dst=0x100000a600181;3:3>3 cost=0.014 original=0.282 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600181 dst=0x100000a600180;4:3>3 cost=0.049 original=0.989 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a700087;5:3>255 cost=0.015 original=0.291 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a700087 dst=0x0;6:3>3 cost=0.041 original=0.810 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a60017e]
2026-06-27 04:15:44.948 +78948ms hook GPSRouteProducer 0x44cc7c call=133 graph=0x59101d990 query=0x799095f0 outResult=0x79909590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.949 +78949ms hook GPSRouteProducer result call=133 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:44.961 +78961ms hook GPSRouteProducer 0x44cc7c call=135 graph=0x59101d990 query=0x796c95f0 outResult=0x796c9590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.962 +78962ms hook GPSRouteProducer result call=135 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2984191128/0xb1df2498 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:44.962 +78962ms hook GPSRouteProducer 0x44cc7c call=136 graph=0x59101d990 query=0x796c95f0 outResult=0x796c9590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.962 +78962ms hook GPSRouteProducer result call=136 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:44.015 +79015ms hook GPSRouteProducer 0x44cc7c call=138 graph=0x59101d990 query=0x7980f9d0 outResult=0x7980f940 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.42,1236.13,17.6,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x6517d1
2026-06-27 04:15:44.016 +79016ms hook GPSRouteProducer result call=138 value=0x42ae6120 out_u0c=13/0xd out_u1c=3/0x3 out_u20=2872173936/0xab31e570 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1151007011/0x449af923 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.022 edgeCostMax=0.496 edgeCostAvg=0.229 edgeSrcClasses=[3:13,15:3] edgeDstClasses=[3:12,15:3,invalid:1] spatialAllowed=16 spatialLookupOk=16 spatialLookupFailed=0 spatialAdjusted=16 spatialClasses=[H:16:avgMult=0.050] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>15 cost=0.023 original=0.468 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.028 original=0.558 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:15>15 cost=0.188 original=3.764 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d7 dst=0x100000a7000d8;3:15>3 cost=0.317 original=6.347 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000c3;4:15>15 cost=0.261 original=5.224 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000da;5:3>3 cost=0.260 original=5.202 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000bb;6:3>3 cost=0.246 original=4.922 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000c6;7:3>3 cost=0.334 original=6.686 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c6 dst=0x100000a7000c8]
2026-06-27 04:15:44.065 +79065ms hook GPSRouteProducer 0x44cc7c call=141 graph=0x59101d990 query=0x79e8c440 outResult=0x5c1ab1a48 query_start00=(-1645.8,1241.61,18.19,1) query_end10=(-1649.69,1234.07,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1076780882/0x402e5f52 ret_rva=0x1b1072
2026-06-27 04:15:44.068 +79068ms hook GPSRouteProducer result call=141 value=0x42ae6120 out_u0c=11/0xb out_u1c=3/0x3 out_u20=2813611600/0xa7b44e50 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=22 edgeCostMin=0.002 edgeCostMax=0.253 edgeCostAvg=0.088 edgeSrcClasses=[3:19,15:3] edgeDstClasses=[3:17,4:1,15:3,invalid:1] spatialAllowed=22 spatialLookupOk=22 spatialLookupFailed=0 spatialAdjusted=22 spatialClasses=[H:22:avgMult=0.050] edgeRetRvas=[0x44f457:21,0x44f629:1] edgeSamples=[0:3>3 cost=0.153 original=3.052 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.137 original=2.739 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.150 original=3.000 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a700132;3:3>3 cost=0.114 original=2.283 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a70010c;4:3>3 cost=0.237 original=4.742 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010a;5:3>3 cost=0.031 original=0.628 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010d;6:3>4 cost=0.253 original=5.059 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010d dst=0x100000a700131;7:3>3 cost=0.006 original=0.113 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010d dst=0x100000a70010b]
2026-06-27 04:15:44.114 +79114ms hook GPSRouteProducer 0x44cc7c call=144 graph=0x59101d990 query=0x799093f0 outResult=0x5c1ab1ba8 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1645.8,1241.61,18.19,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=18/0x12 ret_rva=0x1b1072
2026-06-27 04:15:44.117 +79117ms hook GPSRouteProducer result call=144 value=0x42ae6120 out_u0c=30/0x1e out_u1c=2/0x2 out_u20=2977316832/0xb1763fe0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=59 edgeCostMin=0.000 edgeCostMax=0.295 edgeCostAvg=0.055 edgeSrcClasses=[3:56,15:3] edgeDstClasses=[3:54,4:1,15:3,invalid:1] spatialAllowed=59 spatialLookupOk=59 spatialLookupFailed=0 spatialAdjusted=59 spatialClasses=[H:59:avgMult=0.050] edgeRetRvas=[0x44f457:58,0x44f629:1] edgeSamples=[0:3>3 cost=0.000 original=0.010 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.049 original=0.981 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.050 original=0.996 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a60017f;3:3>3 cost=0.028 original=0.570 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a600186;4:3>3 cost=0.001 original=0.012 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600182 dst=0x100000a600181;5:3>3 cost=0.025 original=0.507 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600181 dst=0x100000a600180;6:3>3 cost=0.022 original=0.445 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a700087;7:3>3 cost=0.053 original=1.066 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a60017e]
2026-06-27 04:15:44.129 +79129ms hook GPSRouteProducer 0x44cc7c call=145 graph=0x59101d990 query=0x7990f880 outResult=0x7990f810 query_start00=(-1516.57,1155.31,18.0662,1) query_end10=(-1519.07,1156.25,18.08,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2039544272/0x7990f9d0 ret_rva=0x6517d1
2026-06-27 04:15:44.130 +79130ms hook GPSRouteProducer result call=145 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=2787466288/0xa6255c30 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.004 edgeCostMax=0.127 edgeCostAvg=0.049 edgeSrcClasses=[4:12] edgeDstClasses=[4:8,15:3,invalid:1] spatialAllowed=12 spatialLookupOk=12 spatialLookupFailed=0 spatialAdjusted=12 spatialClasses=[H:12:avgMult=0.050] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:4>15 cost=0.093 original=1.858 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b3 dst=0x100000860036c;1:4>4 cost=0.045 original=0.906 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b3 dst=0x10000086004b2;2:4>4 cost=0.004 original=0.075 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b3 dst=0x10000086004b4;3:4>15 cost=0.087 original=1.732 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b4 dst=0x10000086004f2;4:4>4 cost=0.006 original=0.128 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b4 dst=0x10000086004b5;5:4>4 cost=0.041 original=0.811 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b5 dst=0x10000086004b7;6:4>15 cost=0.127 original=2.548 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b7 dst=0x10000086004f4;7:4>4 cost=0.006 original=0.111 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b7 dst=0x10000086004b9]
2026-06-27 04:15:44.131 +79131ms hook GPSRouteProducer 0x44cc7c call=146 graph=0x59101d990 query=0x79d895f0 outResult=0x79d89590 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1636.82,1229.19,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.131 +79131ms hook GPSRouteProducer result call=146 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.020 edgeCostMax=0.064 edgeCostAvg=0.041 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] spatialAllowed=5 spatialLookupOk=5 spatialLookupFailed=0 spatialAdjusted=5 spatialClasses=[H:5:avgMult=0.050] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.039 original=0.779 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.064 original=1.272 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a60017f;3:3>3 cost=0.041 original=0.820 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a600186;4:3>255 cost=0.020 original=0.401 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a600186 dst=0x0]
2026-06-27 04:15:44.132 +79132ms hook GPSRouteProducer 0x44cc7c call=147 graph=0x59101d990 query=0x79d895f0 outResult=0x79d89590 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1633.79,1231.8,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.133 +79133ms hook GPSRouteProducer result call=147 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.014 edgeCostMax=0.049 edgeCostAvg=0.033 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] spatialAllowed=7 spatialLookupOk=7 spatialLookupFailed=0 spatialAdjusted=7 spatialClasses=[H:7:avgMult=0.050] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.040 original=0.803 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.027 original=0.547 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600182 dst=0x100000a600181;3:3>3 cost=0.014 original=0.282 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600181 dst=0x100000a600180;4:3>3 cost=0.049 original=0.989 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a700087;5:3>255 cost=0.015 original=0.291 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a700087 dst=0x0;6:3>3 cost=0.041 original=0.810 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600180 dst=0x100000a60017e]
2026-06-27 04:15:44.224 +79224ms hook GPSRouteProducer 0x44cc7c call=154 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1647.05,1234.99,17.39,1) query_end10=(-1649.02,1235.34,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.225 +79225ms hook GPSRouteProducer result call=154 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.022 edgeCostMax=0.086 edgeCostAvg=0.042 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.035 original=0.695 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.033 original=0.662 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.025 original=0.503 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.086 original=1.723 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000ab;4:3>3 cost=0.022 original=0.434 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000b9;5:3>255 cost=0.053 original=1.063 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000b9 dst=0x0]
2026-06-27 04:15:44.225 +79225ms hook GPSRouteProducer 0x44cc7c call=155 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1647.05,1234.99,17.39,1) query_end10=(-1645.08,1234.64,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:44.226 +79226ms hook GPSRouteProducer result call=155 value=0x42ae6120 out_u0c=8/0x8 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.003 edgeCostMax=0.035 edgeCostAvg=0.018 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] spatialAllowed=9 spatialLookupOk=9 spatialLookupFailed=0 spatialAdjusted=9 spatialClasses=[H:9:avgMult=0.050] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.035 original=0.695 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.033 original=0.662 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.025 original=0.503 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.003 original=0.063 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000ad dst=0x100000a7000aa;4:3>3 cost=0.026 original=0.516 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000aa dst=0x100000a7000a8;5:3>3 cost=0.005 original=0.093 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000a8 dst=0x100000a7000bc;6:3>3 cost=0.019 original=0.374 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bc dst=0x100000a7000bd;7:3>3 cost=0.003 original=0.052 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bd dst=0x100000a7000be]
2026-06-27 04:15:44.230 +79230ms hook GPSRouteProducer 0x44cc7c call=157 graph=0x59101d990 query=0x795cf8c0 outResult=0x795cf860 query_start00=(-1635.3,1230.49,17.39,1) query_end10=(-1638.9,1227.39,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1084123568/0x409e69b0 ret_rva=0x6517d1
2026-06-27 04:15:44.231 +79231ms hook GPSRouteProducer result call=157 value=0x42ae6120 out_u0c=10/0xa out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.002 edgeCostMax=0.134 edgeCostAvg=0.046 edgeSrcClasses=[3:15] edgeDstClasses=[3:14,invalid:1] spatialAllowed=15 spatialLookupOk=15 spatialLookupFailed=0 spatialAdjusted=15 spatialClasses=[H:15:avgMult=0.050] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:3>3 cost=0.042 original=0.850 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600182;1:3>3 cost=0.039 original=0.779 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600183 dst=0x100000a600184;2:3>3 cost=0.064 original=1.272 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a60017f;3:3>3 cost=0.041 original=0.820 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600184 dst=0x100000a600186;4:3>3 cost=0.063 original=1.262 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600186 dst=0x100000a600179;5:3>3 cost=0.021 original=0.414 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600186 dst=0x100000a600187;6:3>3 cost=0.002 original=0.048 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600187 dst=0x100000a600189;7:3>3 cost=0.032 original=0.638 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a600189 dst=0x100000a600178]
2026-06-27 04:15:44.232 +79232ms hook GPSRouteProducer 0x44cc7c call=158 graph=0x59101d990 query=0x79d8f6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:44.236 +79236ms hook GPSRouteProducer result call=158 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2939860208/0xaf3ab4f0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.836 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.922 original=0.049 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.005 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.249 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.512 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.351 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.836 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.813 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.378 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:45.348 +79348ms hook GPSRouteProducer 0x44cc7c call=163 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.348 +79348ms hook GPSRouteProducer result call=163 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:45.350 +79350ms hook GPSRouteProducer 0x44cc7c call=164 graph=0x59101d990 query=0x79c8c970 outResult=0x5c1ab1ba8 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1649.69,1234.07,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1076780882/0x402e5f52 ret_rva=0x1b1072
2026-06-27 04:15:45.352 +79352ms hook GPSRouteProducer result call=164 value=0x42ae6120 out_u0c=18/0x12 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=39 edgeCostMin=0.001 edgeCostMax=0.100 edgeCostAvg=0.031 edgeSrcClasses=[3:39] edgeDstClasses=[3:38,invalid:1] spatialAllowed=39 spatialLookupOk=39 spatialLookupFailed=0 spatialAdjusted=39 spatialClasses=[H:39:avgMult=0.050] edgeRetRvas=[0x44f457:38,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.012 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.014 original=0.290 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.002 original=0.039 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.010 original=0.209 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.030 original=0.602 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.041 original=0.815 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.364 +79364ms hook GPSRouteProducer 0x44cc7c call=166 graph=0x59101d990 query=0x793c95f0 outResult=0x793c9590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.365 +79365ms hook GPSRouteProducer result call=166 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2917658680/0xade7f038 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:45.365 +79365ms hook GPSRouteProducer 0x44cc7c call=167 graph=0x59101d990 query=0x793c95f0 outResult=0x793c9590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.366 +79366ms hook GPSRouteProducer result call=167 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:45.377 +79377ms hook GPSRouteProducer 0x44cc7c call=168 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1657.45,1200.51,18.2039,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1050179584/0x3e987800 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.384 +79384ms hook GPSRouteProducer result call=168 value=0x42ae6120 out_u0c=30/0x1e out_u1c=6/0x6 out_u20=2911908832/0xad9033e0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=68 edgeCostMin=0.001 edgeCostMax=0.405 edgeCostAvg=0.059 edgeSrcClasses=[3:55,4:6,5:1,15:6] edgeDstClasses=[3:55,4:5,5:2,15:5,invalid:1] spatialAllowed=68 spatialLookupOk=68 spatialLookupFailed=0 spatialAdjusted=68 spatialClasses=[H:68:avgMult=0.050] edgeRetRvas=[0x44f457:67,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.014 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.017 original=0.335 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.001 original=0.030 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.020 original=0.390 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.038 original=0.768 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.038 original=0.752 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.384 +79384ms hook GPSRouteProducer 0x44cc7c call=169 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1658.88,1199.67,18.1999,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101367808/0x41a58a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.388 +79388ms hook GPSRouteProducer result call=169 value=0x42ae6120 out_u0c=33/0x21 out_u1c=9/0x9 out_u20=3227793392/0xc06437f0 out_u24=5/0x5 out_u2c=9/0x9 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=70 edgeCostMin=0.000 edgeCostMax=0.278 edgeCostAvg=0.057 edgeSrcClasses=[3:53,4:6,5:5,15:6] edgeDstClasses=[3:53,4:5,5:6,15:5,invalid:1] spatialAllowed=70 spatialLookupOk=70 spatialLookupFailed=0 spatialAdjusted=70 spatialClasses=[H:70:avgMult=0.050] edgeRetRvas=[0x44f457:69,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.014 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.017 original=0.344 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.001 original=0.029 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.018 original=0.366 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.037 original=0.749 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.037 original=0.737 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.388 +79388ms hook GPSRouteProducer 0x44cc7c call=170 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1659.26,1188.25,18.2,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1084882944/0x40aa0000 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.394 +79394ms hook GPSRouteProducer result call=170 value=0x42ae6120 out_u0c=39/0x27 out_u1c=14/0xe out_u20=3262699936/0xc278d9a0 out_u24=5/0x5 out_u2c=14/0xe out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=92 edgeCostMin=0.001 edgeCostMax=0.443 edgeCostAvg=0.064 edgeSrcClasses=[3:55,4:16,5:15,15:6] edgeDstClasses=[3:55,4:14,5:17,15:5,invalid:1] spatialAllowed=92 spatialLookupOk=92 spatialLookupFailed=0 spatialAdjusted=92 spatialClasses=[H:92:avgMult=0.050] edgeRetRvas=[0x44f457:91,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.014 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.016 original=0.326 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.002 original=0.031 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.021 original=0.421 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.040 original=0.794 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.038 original=0.765 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.394 +79394ms hook GPSRouteProducer 0x44cc7c call=171 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1661.12,1187.02,18.2,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101416448/0x41a64800 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.399 +79399ms hook GPSRouteProducer result call=171 value=0x42ae6120 out_u0c=41/0x29 out_u1c=16/0x10 out_u20=3262699936/0xc278d9a0 out_u24=5/0x5 out_u2c=16/0x10 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=92 edgeCostMin=0.001 edgeCostMax=0.285 edgeCostAvg=0.063 edgeSrcClasses=[3:55,4:16,5:15,15:6] edgeDstClasses=[3:55,4:14,5:17,15:5,invalid:1] spatialAllowed=92 spatialLookupOk=92 spatialLookupFailed=0 spatialAdjusted=92 spatialClasses=[H:92:avgMult=0.050] edgeRetRvas=[0x44f457:91,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.014 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.017 original=0.333 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.001 original=0.030 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.020 original=0.394 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.039 original=0.772 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.038 original=0.751 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.399 +79399ms hook GPSRouteProducer 0x44cc7c call=172 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1691.62,1235,18.2022,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1131097344/0x436b2d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.425 +79425ms hook GPSRouteProducer result call=172 value=0x42ae6120 out_u0c=78/0x4e out_u1c=47/0x2f out_u20=3095800144/0xb8862950 out_u24=5/0x5 out_u2c=47/0x2f out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=434 edgeCostMin=0.000 edgeCostMax=0.980 edgeCostAvg=0.070 edgeSrcClasses=[3:167,4:263,15:4] edgeDstClasses=[3:166,4:262,5:1,15:4,invalid:1] spatialAllowed=434 spatialLookupOk=434 spatialLookupFailed=0 spatialAdjusted=434 spatialClasses=[H:434:avgMult=0.050] edgeRetRvas=[0x44f457:433,0x44f629:1] edgeSamples=[0:3>3 cost=0.002 original=0.037 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.015 original=0.292 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.024 original=0.470 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.003 original=0.059 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.006 original=0.119 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.012 original=0.235 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.029 original=0.585 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.425 +79425ms hook GPSRouteProducer 0x44cc7c call=173 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1691.38,1255.77,18.206,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=3249643264/0xc1b19f00 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.817 +79817ms hook GPSRouteProducer result call=173 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=3095800144/0xb8862950 out_u24=5/0x5 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=2312/0x908 out_state42=1 edgeCostCalls=7197 edgeCostMin=0.000 edgeCostMax=134.714 edgeCostAvg=1.155 edgeSrcClasses=[3:1737,4:4918,5:514,15:28] edgeDstClasses=[3:1780,4:4870,5:519,15:28] spatialAllowed=7197 spatialLookupOk=7185 spatialLookupFailed=12 spatialAdjusted=7185 spatialClasses=[H:6863:avgMult=0.050,R:216:avgMult=19.000,P:6:avgMult=19.000,.:100:avgMult=19.000] edgeRetRvas=[0x44f457:7197] edgeSamples=[0:3>3 cost=0.001 original=0.018 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.018 original=0.366 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.003 original=0.069 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.014 original=0.272 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.011 original=0.225 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.028 original=0.556 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.817 +79817ms hook GPSRouteProducer 0x44cc7c call=174 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1690.7,1215.36,18.1816,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1140523520/0x43fb0200 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.845 +79845ms hook GPSRouteProducer result call=174 value=0x42ae6120 out_u0c=76/0x4c out_u1c=44/0x2c out_u20=3095800144/0xb8862950 out_u24=5/0x5 out_u2c=44/0x2c out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=527 edgeCostMin=0.000 edgeCostMax=0.799 edgeCostAvg=0.073 edgeSrcClasses=[3:111,4:409,5:2,15:5] edgeDstClasses=[3:113,4:402,5:6,15:5,invalid:1] spatialAllowed=527 spatialLookupOk=527 spatialLookupFailed=0 spatialAdjusted=527 spatialClasses=[H:527:avgMult=0.050] edgeRetRvas=[0x44f457:526,0x44f629:1] edgeSamples=[0:3>3 cost=0.006 original=0.121 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.015 original=0.292 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.364 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.001 original=0.025 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.010 original=0.194 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.042 original=0.832 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.056 original=1.116 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.846 +79846ms hook GPSRouteProducer 0x44cc7c call=175 graph=0x59101d990 query=0x795cf2f0 outResult=0x795cf598 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1689.08,1187.04,18.2031,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1097829376/0x416f8c00 query_ptr98=0 query_ptra0=0 query_flagsa8=3165218480/0xbca966b0 ret_rva=0x6517d1
2026-06-27 04:15:45.853 +79853ms hook GPSRouteProducer result call=175 value=0x42ae6120 out_u0c=59/0x3b out_u1c=33/0x21 out_u20=3095800144/0xb8862950 out_u24=5/0x5 out_u2c=33/0x21 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=128 edgeCostMin=0.000 edgeCostMax=0.769 edgeCostAvg=0.064 edgeSrcClasses=[3:50,4:70,5:3,15:5] edgeDstClasses=[3:49,4:68,5:5,15:5,invalid:1] spatialAllowed=128 spatialLookupOk=128 spatialLookupFailed=0 spatialAdjusted=128 spatialClasses=[H:128:avgMult=0.050] edgeRetRvas=[0x44f457:127,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.022 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.015 original=0.292 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.363 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.000 original=0.009 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.015 original=0.302 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.038 original=0.751 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.043 original=0.851 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:45.027 +80027ms hook GPSRouteProducer 0x44cc7c call=186 graph=0x59101d990 query=0x798095f0 outResult=0x79809590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.028 +80028ms hook GPSRouteProducer result call=186 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:45.039 +80039ms hook GPSRouteProducer 0x44cc7c call=188 graph=0x59101d990 query=0x799095f0 outResult=0x79909590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.040 +80040ms hook GPSRouteProducer result call=188 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2936545016/0xaf081ef8 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:45.041 +80041ms hook GPSRouteProducer 0x44cc7c call=190 graph=0x59101d990 query=0x799095f0 outResult=0x79909590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.041 +80041ms hook GPSRouteProducer result call=190 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:45.102 +80102ms hook GPSRouteProducer 0x44cc7c call=194 graph=0x59101d990 query=0x79a095f0 outResult=0x79a09590 query_start00=(-1647.05,1234.99,17.39,1) query_end10=(-1649.02,1235.34,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.103 +80103ms hook GPSRouteProducer result call=194 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.022 edgeCostMax=0.086 edgeCostAvg=0.042 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.035 original=0.695 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.033 original=0.662 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.025 original=0.503 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.086 original=1.723 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000ab;4:3>3 cost=0.022 original=0.434 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b7 dst=0x100000a7000b9;5:3>255 cost=0.053 original=1.063 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000b9 dst=0x0]
2026-06-27 04:15:45.103 +80103ms hook GPSRouteProducer 0x44cc7c call=195 graph=0x59101d990 query=0x79a095f0 outResult=0x79a09590 query_start00=(-1647.05,1234.99,17.39,1) query_end10=(-1645.08,1234.64,17.39,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.104 +80104ms hook GPSRouteProducer result call=195 value=0x42ae6120 out_u0c=8/0x8 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.003 edgeCostMax=0.035 edgeCostAvg=0.018 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] spatialAllowed=9 spatialLookupOk=9 spatialLookupFailed=0 spatialAdjusted=9 spatialClasses=[H:9:avgMult=0.050] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.035 original=0.695 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.033 original=0.662 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.025 original=0.503 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.003 original=0.063 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000ad dst=0x100000a7000aa;4:3>3 cost=0.026 original=0.516 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000aa dst=0x100000a7000a8;5:3>3 cost=0.005 original=0.093 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000a8 dst=0x100000a7000bc;6:3>3 cost=0.019 original=0.374 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bc dst=0x100000a7000bd;7:3>3 cost=0.003 original=0.052 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bd dst=0x100000a7000be]
2026-06-27 04:15:45.173 +80173ms hook GPSRouteProducer 0x44cc7c call=200 graph=0x59101d990 query=0x79a0f880 outResult=0x79a0f810 query_start00=(-1517.45,1156.86,18.0662,1) query_end10=(-1520.91,1159.31,17.2021,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2040592848/0x79a0f9d0 ret_rva=0x6517d1
2026-06-27 04:15:45.182 +80182ms hook GPSRouteProducer result call=200 value=0x42ae6120 out_u0c=8/0x8 out_u1c=7/0x7 out_u20=2821196400/0xa8280a70 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=153 edgeCostMin=0.002 edgeCostMax=8.118 edgeCostAvg=0.196 edgeSrcClasses=[3:8,4:100,15:45] edgeDstClasses=[3:8,4:100,15:44,invalid:1] spatialAllowed=153 spatialLookupOk=153 spatialLookupFailed=0 spatialAdjusted=153 spatialClasses=[H:148:avgMult=0.050,R:5:avgMult=19.000] edgeRetRvas=[0x44f457:152,0x44f629:1] edgeSamples=[0:4>4 cost=0.065 original=1.298 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b9 dst=0x10000086004b8;1:4>4 cost=0.024 original=0.471 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b9 dst=0x10000086004b7;2:4>4 cost=0.053 original=1.062 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b9 dst=0x10000086004b1;3:4>15 cost=0.026 original=0.521 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b8 dst=0x1000008600514;4:4>4 cost=0.106 original=2.123 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x10000086004b8 dst=0x10000086004b6;5:15>15 cost=0.077 original=1.531 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008600514 dst=0x1000008600513;6:15>15 cost=0.095 original=1.897 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008600514 dst=0x1000008600512;7:15>15 cost=0.869 original=0.046 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000008600512 dst=0x1000008600510]
2026-06-27 04:15:45.227 +80227ms hook GPSRouteProducer 0x44cc7c call=203 graph=0x59101d990 query=0x798095f0 outResult=0x79809590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.227 +80227ms hook GPSRouteProducer result call=203 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:45.238 +80238ms hook GPSRouteProducer 0x44cc7c call=205 graph=0x59101d990 query=0x317590 outResult=0x317530 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.239 +80239ms hook GPSRouteProducer result call=205 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2242292560/0x85a6ab50 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:45.239 +80239ms hook GPSRouteProducer 0x44cc7c call=206 graph=0x59101d990 query=0x317590 outResult=0x317530 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:45.240 +80240ms hook GPSRouteProducer result call=206 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:46.323 +80323ms hook GPSRouteProducer 0x44cc7c call=211 graph=0x59101d990 query=0x795cf9d0 outResult=0x795cf940 query_start00=(-1644.68,1243.14,18.1925,1) query_end10=(-1637.25,1246.35,18.2,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x6517d1
2026-06-27 04:15:46.325 +80325ms hook GPSRouteProducer result call=211 value=0x42ae6120 out_u0c=16/0x10 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1151034475/0x449b646b out_flags40=1/0x1 out_state42=1 edgeCostCalls=27 edgeCostMin=0.000 edgeCostMax=9.742 edgeCostAvg=0.625 edgeSrcClasses=[3:27] edgeDstClasses=[3:26,invalid:1] spatialAllowed=27 spatialLookupOk=26 spatialLookupFailed=1 spatialAdjusted=26 spatialClasses=[H:25:avgMult=0.050,.:1:avgMult=19.000] edgeRetRvas=[0x44f457:26,0x44f629:1] edgeSamples=[0:3>3 cost=0.108 original=2.160 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.454 original=9.076 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.172 original=3.437 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700128;3:3>3 cost=0.973 original=19.456 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700125;4:3>3 cost=0.344 original=6.875 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700128 dst=0x100000a700127;5:3>3 cost=0.068 original=1.365 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700125 dst=0x100000a700124;6:3>3 cost=0.062 original=1.233 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700124 dst=0x100000a700123;7:3>3 cost=0.083 original=1.654 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700123 dst=0x100000a700121]
2026-06-27 04:15:46.441 +80441ms hook GPSRouteProducer 0x44cc7c call=216 graph=0x59101d990 query=0x794cf9d0 outResult=0x794cf940 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.42,1236.13,17.6,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x6517d1
2026-06-27 04:15:46.442 +80442ms hook GPSRouteProducer result call=216 value=0x42ae6120 out_u0c=13/0xd out_u1c=3/0x3 out_u20=2931065008/0xaeb480b0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1151007011/0x449af923 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.022 edgeCostMax=0.496 edgeCostAvg=0.229 edgeSrcClasses=[3:13,15:3] edgeDstClasses=[3:12,15:3,invalid:1] spatialAllowed=16 spatialLookupOk=16 spatialLookupFailed=0 spatialAdjusted=16 spatialClasses=[H:16:avgMult=0.050] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>15 cost=0.023 original=0.468 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.028 original=0.558 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:15>15 cost=0.188 original=3.764 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d7 dst=0x100000a7000d8;3:15>3 cost=0.317 original=6.347 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000c3;4:15>15 cost=0.261 original=5.224 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d8 dst=0x100000a7000da;5:3>3 cost=0.260 original=5.202 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000bb;6:3>3 cost=0.246 original=4.922 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c3 dst=0x100000a7000c6;7:3>3 cost=0.334 original=6.686 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000c6 dst=0x100000a7000c8]
2026-06-27 04:15:46.442 +80442ms hook GPSRouteProducer 0x44cc7c call=218 graph=0x59101d990 query=0x794cf8c0 outResult=0x794cf860 query_start00=(-1647.76,1227.18,17.4285,1) query_end10=(-1689.08,1187.04,18.2031,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1099636400/0x418b1eb0 ret_rva=0x6517d1
2026-06-27 04:15:46.449 +80449ms hook GPSRouteProducer result call=218 value=0x42ae6120 out_u0c=59/0x3b out_u1c=33/0x21 out_u20=3075611408/0xb7521b10 out_u24=5/0x5 out_u2c=33/0x21 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=128 edgeCostMin=0.000 edgeCostMax=0.769 edgeCostAvg=0.064 edgeSrcClasses=[3:50,4:70,5:3,15:5] edgeDstClasses=[3:49,4:68,5:5,15:5,invalid:1] spatialAllowed=128 spatialLookupOk=128 spatialLookupFailed=0 spatialAdjusted=128 spatialClasses=[H:128:avgMult=0.050] edgeRetRvas=[0x44f457:127,0x44f629:1] edgeSamples=[0:3>3 cost=0.001 original=0.022 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001cf;1:3>3 cost=0.082 original=1.642 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d0 dst=0x100000a6001d1;2:3>3 cost=0.015 original=0.292 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001cc;3:3>3 cost=0.018 original=0.363 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d1 dst=0x100000a6001d2;4:3>3 cost=0.000 original=0.009 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d2 dst=0x100000a6001d3;5:3>3 cost=0.015 original=0.302 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d3 dst=0x100000a6001d4;6:3>3 cost=0.038 original=0.751 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d4 dst=0x100000a6001d5;7:3>3 cost=0.043 original=0.851 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a6001d5 dst=0x100000a6001d6]
2026-06-27 04:15:46.512 +80512ms hook GPSRouteProducer 0x44cc7c call=221 graph=0x59101d990 query=0x79e8c440 outResult=0x5c1ab1ba8 query_start00=(-1645.8,1241.61,18.19,1) query_end10=(-1652.69,1235.18,17.605,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1076780882/0x402e5f52 ret_rva=0x1b1072
2026-06-27 04:15:46.701 +80701ms hook GPSRouteProducer result call=221 value=0x42ae6120 out_u0c=10/0xa out_u1c=3/0x3 out_u20=2927773440/0xae824700 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2305/0x901 out_state42=1 edgeCostCalls=3214 edgeCostMin=0.000 edgeCostMax=193.950 edgeCostAvg=0.641 edgeSrcClasses=[3:1016,4:1861,5:300,15:37] edgeDstClasses=[3:1018,4:1838,5:322,15:36] spatialAllowed=3214 spatialLookupOk=3211 spatialLookupFailed=3 spatialAdjusted=3211 spatialClasses=[H:3147:avgMult=0.050,R:48:avgMult=19.000,P:3:avgMult=19.000,.:13:avgMult=19.000] edgeRetRvas=[0x44f457:3214] edgeSamples=[0:3>3 cost=0.092 original=1.843 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700126;1:3>3 cost=0.137 original=2.739 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700133 dst=0x100000a700134;2:3>3 cost=0.032 original=0.643 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700128;3:3>3 cost=0.150 original=3.000 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a700132;4:3>3 cost=0.069 original=1.381 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700134 dst=0x100000a70010c;5:3>3 cost=0.192 original=3.843 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010a;6:3>3 cost=0.069 original=1.373 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010c dst=0x100000a70010d;7:3>4 cost=0.210 original=4.199 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a70010d dst=0x100000a700131]
2026-06-27 04:15:46.725 +80725ms hook GPSRouteProducer 0x44cc7c call=223 graph=0x59101d990 query=0x794cf6a0 outResult=0x794cf630 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1645.8,1241.61,18.1928,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1101004824/0x41a00018 ret_rva=0x6517d1
2026-06-27 04:15:46.727 +80727ms hook GPSRouteProducer result call=223 value=0x42ae6120 out_u0c=8/0x8 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.010 edgeCostMax=0.288 edgeCostAvg=0.097 edgeSrcClasses=[3:13,15:1] edgeDstClasses=[3:11,15:2,invalid:1] spatialAllowed=14 spatialLookupOk=14 spatialLookupFailed=0 spatialAdjusted=14 spatialClasses=[H:14:avgMult=0.050] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>15 cost=0.021 original=0.419 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.051 original=1.011 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.096 original=1.923 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.092 original=1.842 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:15>15 cost=0.010 original=0.204 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000d7 dst=0x100000a7000d8;5:3>3 cost=0.139 original=2.789 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fd dst=0x100000a7000fc;6:3>3 cost=0.168 original=3.359 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fd dst=0x100000a7000fa;7:3>3 cost=0.010 original=0.196 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fc dst=0x100000a700127]
2026-06-27 04:15:46.789 +80789ms hook GPSRouteProducer 0x44cc7c call=228 graph=0x59101d990 query=0x79d8f6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:46.795 +80795ms hook GPSRouteProducer result call=228 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2884535040/0xabee8300 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:46.810 +80810ms hook GPSRouteProducer 0x44cc7c call=229 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.811 +80811ms hook GPSRouteProducer result call=229 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:46.823 +80823ms hook GPSRouteProducer 0x44cc7c call=231 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.824 +80824ms hook GPSRouteProducer result call=231 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2848511792/0xa9c8d730 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:46.824 +80824ms hook GPSRouteProducer 0x44cc7c call=232 graph=0x59101d990 query=0x79e895f0 outResult=0x79e89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.825 +80825ms hook GPSRouteProducer result call=232 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:46.072 +81072ms hook GPSRouteProducer 0x44cc7c call=244 graph=0x59101d990 query=0x794cf6a0 outResult=0x794cf630 query_start00=(-1643.92,1242.97,18.1923,1) query_end10=(-1645.8,1241.61,18.1928,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=24/0x18 ret_rva=0x6517d1
2026-06-27 04:15:46.073 +81073ms hook GPSRouteProducer result call=244 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.002 edgeCostMax=0.086 edgeCostAvg=0.039 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=0.030 original=0.597 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700133;1:3>255 cost=0.086 original=1.728 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a700133 dst=0x0;2:3>3 cost=0.002 original=0.041 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a700126 dst=0x100000a700128]
2026-06-27 04:15:46.198 +81198ms hook GPSRouteProducer 0x44cc7c call=250 graph=0x59101d990 query=0x79c895f0 outResult=0x79c89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.198 +81198ms hook GPSRouteProducer result call=250 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:46.211 +81211ms hook GPSRouteProducer 0x44cc7c call=252 graph=0x59101d990 query=0x799095f0 outResult=0x79909590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.212 +81212ms hook GPSRouteProducer result call=252 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2892601392/0xac699830 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:46.213 +81213ms hook GPSRouteProducer 0x44cc7c call=253 graph=0x59101d990 query=0x799095f0 outResult=0x79909590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:46.213 +81213ms hook GPSRouteProducer result call=253 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:47.275 +81275ms hook GPSRouteProducer 0x44cc7c call=257 graph=0x59101d990 query=0x7980f9d0 outResult=0x7980f940 query_start00=(-1646.34,1234.43,17.39,1) query_end10=(-1642.76,1238.14,17.6435,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x6517d1
2026-06-27 04:15:47.276 +81276ms hook GPSRouteProducer result call=257 value=0x42ae6120 out_u0c=14/0xe out_u1c=1/0x1 out_u20=2844701488/0xa98eb330 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1150963128/0x449a4db8 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.001 edgeCostMax=0.145 edgeCostAvg=0.032 edgeSrcClasses=[3:22,15:1] edgeDstClasses=[3:21,15:1,invalid:1] spatialAllowed=23 spatialLookupOk=23 spatialLookupFailed=0 spatialAdjusted=23 spatialClasses=[H:23:avgMult=0.050] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=0.002 original=0.042 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000ad;1:3>3 cost=0.002 original=0.040 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b0;2:3>3 cost=0.066 original=1.326 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000b3 dst=0x100000a7000b7;3:3>3 cost=0.001 original=0.011 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000ad dst=0x100000a7000aa;4:3>3 cost=0.031 original=0.619 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000aa dst=0x100000a7000a8;5:3>3 cost=0.012 original=0.246 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000a8 dst=0x100000a7000bc;6:3>3 cost=0.012 original=0.232 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bc dst=0x100000a7000bd;7:3>3 cost=0.020 original=0.393 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000bd dst=0x100000a7000be]
2026-06-27 04:15:47.608 +81608ms hook GPSRouteProducer 0x44cc7c call=270 graph=0x59101d990 query=0x79c895f0 outResult=0x79c89590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:47.608 +81608ms hook GPSRouteProducer result call=270 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:47.619 +81619ms hook GPSRouteProducer 0x44cc7c call=272 graph=0x59101d990 query=0x79a095f0 outResult=0x79a09590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1639.26,1239.85,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:47.620 +81620ms hook GPSRouteProducer result call=272 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2966988208/0xb0d8a5b0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.001 edgeCostMax=0.080 edgeCostAvg=0.037 edgeSrcClasses=[3:6] edgeDstClasses=[3:4,15:1,invalid:1] spatialAllowed=6 spatialLookupOk=6 spatialLookupFailed=0 spatialAdjusted=6 spatialClasses=[H:6:avgMult=0.050] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb;2:3>3 cost=0.037 original=0.743 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000f8;3:3>3 cost=0.080 original=1.609 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000fb dst=0x100000a7000fd;4:3>3 cost=0.001 original=0.023 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f8 dst=0x100000a7000f6;5:3>255 cost=0.047 original=0.931 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000f6 dst=0x0]
2026-06-27 04:15:47.620 +81620ms hook GPSRouteProducer 0x44cc7c call=273 graph=0x59101d990 query=0x79a095f0 outResult=0x79a09590 query_start00=(-1641.26,1239.79,18.1908,1) query_end10=(-1643.26,1239.72,18.1908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2698236752/0xa0d3d350 ret_rva=0x6517d1
2026-06-27 04:15:47.621 +81621ms hook GPSRouteProducer result call=273 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=0.015 edgeCostMax=0.061 edgeCostAvg=0.038 edgeSrcClasses=[3:2,15:1] edgeDstClasses=[3:1,15:1,invalid:1] spatialAllowed=3 spatialLookupOk=3 spatialLookupFailed=0 spatialAdjusted=3 spatialClasses=[H:3:avgMult=0.050] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>15 cost=0.039 original=0.788 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000d7;1:15>255 cost=0.061 original=1.215 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f629 cur=0x100000a7000d7 dst=0x0;2:3>3 cost=0.015 original=0.304 spatial=H mult=0.050 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x100000a7000f5 dst=0x100000a7000fb]
2026-06-27 04:15:47.783 +81783ms hook GPSRouteProducer 0x44cc7c call=283 graph=0x59101d990 query=0x7980f6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:47.787 +81787ms hook GPSRouteProducer result call=283 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2906408832/0xad3c4780 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:48.782 +82782ms hook GPSRouteProducer 0x44cc7c call=336 graph=0x59101d990 query=0x793cf6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:48.787 +82787ms hook GPSRouteProducer result call=336 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2998351488/0xb2b73680 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:49.786 +83786ms hook GPSRouteProducer 0x44cc7c call=380 graph=0x59101d990 query=0x79b0f6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:49.790 +83790ms hook GPSRouteProducer result call=380 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2836518640/0xa911d6f0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:50.785 +84785ms hook GPSRouteProducer 0x44cc7c call=428 graph=0x59101d990 query=0x793cf6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:50.788 +84788ms hook GPSRouteProducer result call=428 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2998352576/0xb2b73ac0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:15:51.783 +85783ms hook GPSRouteProducer 0x44cc7c call=475 graph=0x59101d990 query=0x7980f6b0 outResult=0x5a53b80e0 query_start00=(-1569.68,1213.26,17.3722,1) query_end10=(-1573.57,1218.24,16.7885,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=1082995348/0x408d3294 ret_rva=0x70aa22
2026-06-27 04:15:51.786 +85786ms hook GPSRouteProducer result call=475 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2906408832/0xad3c4780 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=49 edgeCostMin=0.657 edgeCostMax=94.838 edgeCostAvg=29.489 edgeSrcClasses=[3:23,4:26] edgeDstClasses=[3:26,4:21,invalid:2] spatialAllowed=49 spatialLookupOk=49 spatialLookupFailed=0 spatialAdjusted=49 spatialClasses=[R:33:avgMult=19.000,G:16:avgMult=19.000] edgeRetRvas=[0x44f457:47,0x44f629:2] edgeSamples=[0:4>3 cost=0.919 original=0.048 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e000cf;1:4>4 cost=10.007 original=0.527 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e00136;2:4>4 cost=64.253 original=3.382 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00134 dst=0x1000007e0013a;3:3>3 cost=67.515 original=3.553 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000ca;4:3>3 cost=7.350 original=0.387 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000cf dst=0x1000007e000d1;5:3>3 cost=94.838 original=4.991 spatial=G mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000ce;6:3>3 cost=37.809 original=1.990 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e000d1 dst=0x1000007e000d3;7:4>4 cost=30.379 original=1.599 spatial=R mult=19.000 allowed=1 lookup=1 adjusted=1 ret=0x44f457 cur=0x1000007e00136 dst=0x1000007e000f6]
2026-06-27 04:16:22.575 +116575ms hook GPSQuerySubmit 0x70a42c call=41 manager=0x1a0f52190 query=0x79e8fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:16:22.579 +116579ms hook GPSQuerySubmit result call=41 queryId=41 manager_nextIdD4=42/0x2a
2026-06-27 04:16:22.648 +116648ms hook GPSQueryResultFetch 0x7094b8 call=7457 queryId=41 tracked=1 perQueryCall=6 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x796cfbb0 ret_rva=0x52069c outPath=0x796cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000006856a6b101000000002814400000000000dc6eb001000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=22120/0x5668 gpsResult_state42=166 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7255022592/0x1b06edc00
2026-06-27 04:16:22.651 +116651ms hook GPSQueryResultFetch 0x7094b8 call=7458 queryId=41 tracked=1 perQueryCall=7 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x796cfbb0 ret_rva=0x520783 outPath=0x796cfbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a9000000f0dc97b705000000220000002200000000000000000000006856a6b101000000012814400100000000dc6eb001000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5b797dcf0 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c3a44a632,0.000750157,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac397639c8,0.000234819,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=22120/0x5668 gpsResult_state42=166 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7255022592/0x1b06edc00
2026-06-27 04:16:22.651 +116651ms hook GPSQueryResultFetch 0x7094b8 call=7459 queryId=41 tracked=1 perQueryCall=8 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x796cfbb0 ret_rva=0x520783 outPath=0x796cfbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a900000000000000f0dc97b705000000220000000000000000000000000000006856a6b101000000012814400200000001dc6eb001000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b797dcf0 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=22120/0x5668 gpsResult_state42=166 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7255022593/0x1b06edc01
2026-06-27 04:16:30.348 +124348ms hook GPSQuerySubmit 0x70a42c call=50 manager=0x1a0f52190 query=0x793cfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:16:30.351 +124351ms hook GPSQuerySubmit result call=50 queryId=50 manager_nextIdD4=51/0x33
2026-06-27 04:16:30.411 +124411ms hook GPSQueryResultFetch 0x7094b8 call=8332 queryId=50 tracked=1 perQueryCall=6 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x52069c outPath=0x79a0fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000000000000000000000000000000000000087c8f4211d450a003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=0/0x0 gpsResult_u50=740029745450223360/0xa451d21f4c88700
2026-06-27 04:16:30.415 +124415ms hook GPSQueryResultFetch 0x7094b8 call=8333 queryId=50 tracked=1 perQueryCall=7 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x520783 outPath=0x79a0fbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000e0cbe0a50500000027000000270000000000000000000000000000000000000001000000010000000087c8f4211d450a983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5a5e0cbe0 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f43a1fd934,0.000609773,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c39d0b5df,0.000398084,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e39b83f5a,0.000351424,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=740029745450223360/0xa451d21f4c88700
2026-06-27 04:16:30.415 +124415ms hook GPSQueryResultFetch 0x7094b8 call=8334 queryId=50 tracked=1 perQueryCall=8 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x520783 outPath=0x79a0fbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000e0cbe0a50500000027000000000000000000000000000000000000000000000001000000020000000187c8f4211d450a483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a5e0cbe0 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=740029745450223361/0xa451d21f4c88701
2026-06-27 04:16:36.532 +130532ms hook GPSQuerySubmit 0x70a42c call=57 manager=0x1a0f52190 query=0x794cfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1082787844/0x408a0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:16:36.535 +130535ms hook GPSQuerySubmit result call=57 queryId=57 manager_nextIdD4=58/0x3a
2026-06-27 04:16:36.616 +130616ms hook GPSQueryResultFetch 0x7094b8 call=9016 queryId=57 tracked=1 perQueryCall=8 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x52069c outPath=0x79a0fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000f00188ad0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=496/0x1f0 gpsResult_state42=136 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
2026-06-27 04:16:36.618 +130618ms hook GPSQueryResultFetch 0x7094b8 call=9017 queryId=57 tracked=1 perQueryCall=9 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x520783 outPath=0x79a0fbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb00000080d055bb050000002e0000002e0000000000000000000000f00188ad0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5bb55d080 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f43a1fd934,0.000609773,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c39d0b5df,0.000398084,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e399c6df9,0.000298366,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=496/0x1f0 gpsResult_state42=136 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
2026-06-27 04:16:36.619 +130619ms hook GPSQueryResultFetch 0x7094b8 call=9018 queryId=57 tracked=1 perQueryCall=10 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79a0fbb0 ret_rva=0x520783 outPath=0x79a0fbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb0000000000000080d055bb050000002e000000000000000000000000000000f00188ad0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bb55d080 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=496/0x1f0 gpsResult_state42=136 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
2026-06-27 04:16:41.311 +135311ms hook GPSQuerySubmit 0x70a42c call=63 manager=0x1a0f52190 query=0x7990fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2843674628/0xa97f0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
2026-06-27 04:16:41.314 +135314ms hook GPSQuerySubmit result call=63 queryId=63 manager_nextIdD4=64/0x40
2026-06-27 04:16:41.353 +135353ms hook GPSQueryResultFetch 0x7094b8 call=9549 queryId=63 tracked=1 perQueryCall=4 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x794cfbb0 ret_rva=0x52069c outPath=0x794cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000000000000000000000ffffff0000000000000000ffffffff003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=4294967040/0xffffff00 gpsResult_u50=18446744069414584320/0xffffffff00000000
2026-06-27 04:16:41.354 +135354ms hook GPSQueryResultFetch 0x7094b8 call=9550 queryId=63 tracked=1 perQueryCall=5 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x794cfbb0 ret_rva=0x520783 outPath=0x794cfbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d4000000c004cdc9050000001e0000001e0000000000000000000000000000000000000001ffffff0100000000000000ffffffff983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c9cd04c0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d1126700000000,0,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01030007,0,210,212,414dd53600000000,0,12.8646,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=8589934337/0x1ffffff01 gpsResult_u50=18446744069414584320/0xffffffff00000000
2026-06-27 04:16:41.354 +135354ms hook GPSQueryResultFetch 0x7094b8 call=9551 queryId=63 tracked=1 perQueryCall=6 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x794cfbb0 ret_rva=0x520783 outPath=0x794cfbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d400000000000000c004cdc9050000001e000000000000000000000000000000000000000000000001ffffff0200000001000000ffffffff483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c9cd04c0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=12884901633/0x2ffffff01 gpsResult_u50=18446744069414584321/0xffffffff00000001
2026-06-27 04:18:20.135 +235135ms spatial weights reloaded highway=19 road=0.05 gpsonly=0.05 pavement=0.05 unknown=0.05
2026-06-27 04:18:45.334 +259334ms hook GPSQueryResultFetch 0x7094b8 call=35418 queryId=188 tracked=1 perQueryCall=7 value=1 submitCall=188 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x52069c outPath=0x793cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000050e5b08e0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=58704/0xe550 gpsResult_state42=176 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
2026-06-27 04:18:45.337 +259337ms hook GPSQueryResultFetch 0x7094b8 call=35419 queryId=188 tracked=1 perQueryCall=8 value=1 submitCall=188 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x520783 outPath=0x793cfbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a9000000302635a4050000002200000022000000000000000000000050e5b08e0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5a4352630 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c3a44a632,0.000750157,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac397639c8,0.000234819,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=58704/0xe550 gpsResult_state42=176 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
2026-06-27 04:18:45.337 +259337ms hook GPSQueryResultFetch 0x7094b8 call=35420 queryId=188 tracked=1 perQueryCall=9 value=1 submitCall=188 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x520783 outPath=0x793cfbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a900000000000000302635a4050000002200000000000000000000000000000050e5b08e0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a4352630 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=58704/0xe550 gpsResult_state42=176 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
2026-06-27 04:18:51.522 +265522ms hook GPSQueryResultFetch 0x7094b8 call=36110 queryId=195 tracked=1 perQueryCall=6 value=1 submitCall=195 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x52069c outPath=0x793cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000701462ad0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=5232/0x1470 gpsResult_state42=98 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
2026-06-27 04:18:51.524 +265524ms hook GPSQueryResultFetch 0x7094b8 call=36111 queryId=195 tracked=1 perQueryCall=7 value=1 submitCall=195 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x520783 outPath=0x793cfbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be00000010c129bc0500000027000000270000000000000000000000701462ad0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5bc29c110 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f43a1fd934,0.000609773,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c39d0b5df,0.000398084,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e39b83f5a,0.000351424,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=5232/0x1470 gpsResult_state42=98 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
2026-06-27 04:18:51.525 +265525ms hook GPSQueryResultFetch 0x7094b8 call=36112 queryId=195 tracked=1 perQueryCall=8 value=1 submitCall=195 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x793cfbb0 ret_rva=0x520783 outPath=0x793cfbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be0000000000000010c129bc0500000027000000000000000000000000000000701462ad0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bc29c110 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=5232/0x1470 gpsResult_state42=98 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
2026-06-27 04:18:58.351 +272351ms hook GPSQueryResultFetch 0x7094b8 call=36856 queryId=203 tracked=1 perQueryCall=9 value=1 submitCall=203 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x52069c outPath=0x795cfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000000000000000000000ffffff0000000000000000ffffffff003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=4294967040/0xffffff00 gpsResult_u50=18446744069414584320/0xffffffff00000000
2026-06-27 04:18:58.354 +272354ms hook GPSQueryResultFetch 0x7094b8 call=36857 queryId=203 tracked=1 perQueryCall=10 value=1 submitCall=203 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x520783 outPath=0x795cfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000e08976b9050000002e0000002e0000000000000000000000000000000000000001ffffff0100000000000000ffffffff983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b97689e0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f43a1fd934,0.000609773,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c39d0b5df,0.000398084,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e399c6df9,0.000298366,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=8589934337/0x1ffffff01 gpsResult_u50=18446744069414584320/0xffffffff00000000
2026-06-27 04:18:58.354 +272354ms hook GPSQueryResultFetch 0x7094b8 call=36858 queryId=203 tracked=1 perQueryCall=11 value=1 submitCall=203 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x795cfbb0 ret_rva=0x520783 outPath=0x795cfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000e08976b9050000002e000000000000000000000000000000000000000000000001ffffff0200000001000000ffffffff483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b97689e0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=0/0x0 gpsResult_state42=0 gpsResult_u48=12884901633/0x2ffffff01 gpsResult_u50=18446744069414584321/0xffffffff00000001
2026-06-27 04:19:03.471 +277471ms hook GPSQueryResultFetch 0x7094b8 call=37416 queryId=209 tracked=1 perQueryCall=4 value=1 submitCall=209 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x52069c outPath=0x79c8fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c80620a20100000000000000000000000047719005000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=1736/0x6c8 gpsResult_state42=32 gpsResult_u48=0/0x0 gpsResult_u50=23898179328/0x590714700
2026-06-27 04:19:03.473 +277473ms hook GPSQueryResultFetch 0x7094b8 call=37417 queryId=209 tracked=1 perQueryCall=5 value=1 submitCall=209 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x520783 outPath=0x79c8fbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d4000000a0dca6a5050000001e0000001e0000000000000000000000c80620a20100000001000000010000000047719005000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5a5a6dca0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000cd586140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406158cd,3.52104,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee3a6267d8,0.000863669,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01030007,0,210,212,41b514d100000000,0,22.6352,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=1736/0x6c8 gpsResult_state42=32 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23898179328/0x590714700
2026-06-27 04:19:03.474 +277474ms hook GPSQueryResultFetch 0x7094b8 call=37418 queryId=209 tracked=1 perQueryCall=6 value=1 submitCall=209 submitRetRva=0x8d20d4 manager=0x1a0f52190 outPath=0x79c8fbb0 ret_rva=0x520783 outPath=0x79c8fbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d400000000000000a0dca6a5050000001e000000000000000000000000000000c80620a20100000001000000020000000147719005000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a5a6dca0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=1736/0x6c8 gpsResult_state42=32 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23898179329/0x590714701
@@ -0,0 +1,29 @@
2026-06-23 03:15:06.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff0740000 sdk=0x7f3a5c38 runtime=2.3.1
2026-06-23 03:15:06.001 +1ms registered Running game-state callbacks
2026-06-23 03:15:06.009 +9ms hook attach RunGPSQuery body 0x29bd128 target=0x1429bd128 rva=0x29bd128 result=ok original=0x1018c0480
2026-06-23 03:15:06.017 +17ms hook attach UpdateGPSQuery body 0x29bd254 target=0x1429bd254 rva=0x29bd254 result=ok original=0x1018c04e0
2026-06-23 03:15:06.024 +24ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0540
2026-06-23 03:15:06.032 +32ms hook attach GPSQueryDispatch 0x70a570 target=0x14070a570 rva=0x70a570 result=ok original=0x1018c05a0
2026-06-23 03:15:06.039 +39ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c0600
2026-06-23 03:15:06.046 +46ms hook attach GPSQueryStatus 0xaa5704 target=0x140aa5704 rva=0xaa5704 result=ok original=0x1018c0660
2026-06-23 03:15:06.054 +54ms hook attach GPSDispatchAdvance 0x8d17d8 target=0x1408d17d8 rva=0x8d17d8 result=ok original=0x1018c06c0
2026-06-23 03:15:06.062 +62ms hook attach GPSTrafficResultTake 0x709d5c target=0x140709d5c rva=0x709d5c result=ok original=0x1018c0720
2026-06-23 03:15:06.068 +68ms hook attach GPSRoutePostprocess 0x44830c target=0x14044830c rva=0x44830c result=ok original=0x1018c0780
2026-06-23 03:15:06.075 +75ms hook attach GPSTrafficEdgeScore 0x8d46cc target=0x1408d46cc rva=0x8d46cc result=ok original=0x1018c07e0
2026-06-23 03:15:26.225 +20225ms GameState Running OnEnter app=0x31fb80
2026-06-23 03:15:26.307 +20307ms GameState Running OnUpdate app=0x31fb80 count=0
2026-06-23 03:15:26.314 +20314ms GameState Running OnUpdate app=0x31fb80 count=1
2026-06-23 03:15:26.321 +20321ms GameState Running OnUpdate app=0x31fb80 count=2
2026-06-23 03:15:26.328 +20328ms GameState Running OnUpdate app=0x31fb80 count=3
2026-06-23 03:15:26.335 +20335ms GameState Running OnUpdate app=0x31fb80 count=4
2026-06-23 03:16:03.472 +56472ms hook GPSRoutePostprocess 0x44830c call=0 scale=0.5 outPath=0x66b8f460 trafficResult=0x66b8f560 trafficResult_count0c=3/0x3 trafficResult_records10=0x66b8f6a0 trafficResult_u2c=0/0x0 trafficResult_u30=0/0x0 trafficResult_u34=0/0x0 trafficResult_records10_raw=0064a343010000000100000000000000181b10ba050000000200000000000000c0f7b866000000001ec44e4001000000 routeRecords=0x66b8f430 ret_rva=0x447ba5
2026-06-23 03:16:03.474 +56474ms hook GPSRoutePostprocess result call=0 outPath_bytes20=9023d0ac01000000030000000300000060a4518e010000000400000004000000902d7fb0010000000100000001000000c8e9b242010000000000000000000000 outPath_u20=2899321744/0xacd02390 outPath_u24=1/0x1 outPath_ptr28=0x300000003 outPath_vec20_data=0x1acd02390 outPath_vec20_count=3 outPath_vec20_first=(0,1.30084,0,1.30084) outPath_vec20_last=(89.4566,0,87.1738,0) outPath_vec20s16_data=0x1acd02390 outPath_vec20s16_count=3 outPath_vec20s16_first=(0,1.30084,0,1.30084) outPath_vec20s16_last=(87.1738,0,-5.91568e-12,0) outPath_u2c=3/0x3 outPath_u30=6682682464/0x18e51a460 outPath_u30lo=2387715168/0x8e51a460 outPath_u34hi=1/0x1 outPath_ptr28_capacity30=2387715168 outPath_ptr28_count34=1 outPath_ptr28_rec40raw=<unreadable> outPath_ptr28_rec40=[0:<unreadable>] outPath_vec38_data=0x400000004 outPath_vec38_count=4 outPath_vec38_first=<unreadable> outPath_vec38_last=<unreadable> outPath_flags40=11664/0x2d90 outPath_state42=127 outPath_u48=4294967297/0x100000001 outPath_u50=5413988808/0x142b2e9c8
2026-06-23 03:16:03.474 +56474ms hook GPSRoutePostprocess 0x44830c call=1 scale=0.5 outPath=0x66b8f460 trafficResult=0x66b8f560 trafficResult_count0c=3/0x3 trafficResult_records10=0x66b8f6a0 trafficResult_u2c=0/0x0 trafficResult_u30=0/0x0 trafficResult_u34=0/0x0 trafficResult_records10_raw=0064a343010000000100000000000000a8c30fba050000000200000000000000c0f7b866000000001ec44e4001000000 routeRecords=0x66b8f430 ret_rva=0x447ba5
2026-06-23 03:16:03.476 +56476ms hook GPSRoutePostprocess result call=1 outPath_bytes20=9023d0ac0100000003000000030000005038518e01000000040000000400000050257fb0010000000100000001000000c8e9b242010000000000000000000000 outPath_u20=2899321744/0xacd02390 outPath_u24=1/0x1 outPath_ptr28=0x300000003 outPath_vec20_data=0x1acd02390 outPath_vec20_count=3 outPath_vec20_first=(0,0.0721436,0,0.0721436) outPath_vec20_last=(89.4566,0,87.1738,0) outPath_vec20s16_data=0x1acd02390 outPath_vec20s16_count=3 outPath_vec20s16_first=(0,0.0721436,0,0.0721436) outPath_vec20s16_last=(87.1738,0,-5.91568e-12,0) outPath_u2c=3/0x3 outPath_u30=6682654800/0x18e513850 outPath_u30lo=2387687504/0x8e513850 outPath_u34hi=1/0x1 outPath_ptr28_capacity30=2387687504 outPath_ptr28_count34=1 outPath_ptr28_rec40raw=<unreadable> outPath_ptr28_rec40=[0:<unreadable>] outPath_vec38_data=0x400000004 outPath_vec38_count=4 outPath_vec38_first=<unreadable> outPath_vec38_last=<unreadable> outPath_flags40=9552/0x2550 outPath_state42=127 outPath_u48=4294967297/0x100000001 outPath_u50=5413988808/0x142b2e9c8
2026-06-23 03:16:07.562 +60562ms hook GPSTrafficEdgeScore 0x8d46cc call=0 category=pavement driving=1 query41=1 laneFlags88=0xb base=37.854 multiplier=2.750 result=104.099 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f160 lane=0x15a37de8c0 ret_rva=0x8d456d
2026-06-23 03:16:07.563 +60563ms hook GPSTrafficEdgeScore 0x8d46cc call=1 category=pavement driving=1 query41=1 laneFlags88=0xb base=37.854 multiplier=2.750 result=104.099 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f190 lane=0x15a37de960 ret_rva=0x8d456d
2026-06-23 03:16:07.563 +60563ms hook GPSTrafficEdgeScore 0x8d46cc call=2 category=road driving=1 query41=1 laneFlags88=0x11 base=23.986 multiplier=0.700 result=16.790 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f1c0 lane=0x15a37dea00 ret_rva=0x8d456d
2026-06-23 03:16:07.563 +60563ms hook GPSTrafficEdgeScore 0x8d46cc call=3 category=road driving=1 query41=1 laneFlags88=0x11 base=28.956 multiplier=0.700 result=20.269 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f1f0 lane=0x15a37deaa0 ret_rva=0x8d456d
2026-06-23 03:16:07.564 +60564ms hook GPSTrafficEdgeScore 0x8d46cc call=4 category=highway driving=1 query41=1 laneFlags88=0x4011 base=39.640 multiplier=0.350 result=13.874 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f220 lane=0x15a37e4e00 ret_rva=0x8d456d
2026-06-23 03:16:07.564 +60564ms hook GPSTrafficEdgeScore 0x8d46cc call=5 category=highway driving=1 query41=1 laneFlags88=0x4011 base=37.488 multiplier=0.350 result=13.121 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x1ad27f250 lane=0x15a37e4ea0 ret_rva=0x8d456d
2026-06-23 03:16:07.564 +60564ms hook GPSTrafficEdgeScore 0x8d46cc call=6 category=pavement driving=1 query41=1 laneFlags88=0xa00a base=31.869 multiplier=2.750 result=87.640 ctx=0x79a3f960 query=0x79a3fa00 candidate=0x5c3e97cc0 lane=0x15a3599060 ret_rva=0x8d4674
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 983 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
ヘフL?
@@ -0,0 +1 @@
fff?
@@ -0,0 +1 @@
33>
@@ -0,0 +1 @@
333?
Binary file not shown.
@@ -0,0 +1,33 @@
module EdgeWeightGPS
private func EdgeWeightGPSLog(message: String) -> Void {
Log("[EdgeWeightGPS] " + message);
}
@wrapMethod(WorldMapMenuGameController)
private final func TryTrackQuestOrSetWaypoint() -> Void {
EdgeWeightGPSLog("WorldMapMenuGameController.TryTrackQuestOrSetWaypoint enter");
wrappedMethod();
EdgeWeightGPSLog("WorldMapMenuGameController.TryTrackQuestOrSetWaypoint exit");
}
@wrapMethod(WorldMapMenuGameController)
private final func UpdateTrackedQuest() -> Void {
EdgeWeightGPSLog("WorldMapMenuGameController.UpdateTrackedQuest enter");
wrappedMethod();
EdgeWeightGPSLog("WorldMapMenuGameController.UpdateTrackedQuest exit");
}
@wrapMethod(WorldMapMenuGameController)
private final func UpdateTravelDestination() -> Void {
EdgeWeightGPSLog("WorldMapMenuGameController.UpdateTravelDestination enter");
wrappedMethod();
EdgeWeightGPSLog("WorldMapMenuGameController.UpdateTravelDestination exit");
}
@wrapMethod(WorldMapMenuGameController)
private final func TrackQuestMappin(mappinController: ref<BaseMappinBaseController>) -> Void {
EdgeWeightGPSLog("WorldMapMenuGameController.TrackQuestMappin enter defined=" + ToString(IsDefined(mappinController)));
wrappedMethod(mappinController);
EdgeWeightGPSLog("WorldMapMenuGameController.TrackQuestMappin exit");
}
+40
View File
@@ -0,0 +1,40 @@
{
"Data": {
"RootChunk": {
"data": {
"lanes": [
{
"flags": 16400,
"maxSpeed": 17,
"length": 240.0,
"laneNumber": 1,
"playerGPSInfo": {
"subGraphId": 1,
"stronglyConnectedComponentId": 2
}
},
{
"flags": 16,
"maxSpeed": 10,
"length": 80.0,
"laneNumber": 2,
"playerGPSInfo": {
"subGraphId": 1,
"stronglyConnectedComponentId": 2
}
},
{
"flags": 24,
"maxSpeed": 10,
"length": 25.0,
"laneNumber": 3,
"playerGPSInfo": {
"subGraphId": 1,
"stronglyConnectedComponentId": 2
}
}
]
}
}
}
}
@@ -0,0 +1,43 @@
import json
import subprocess
import sys
import tempfile
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
TOOL = ROOT / "tools" / "patch_traffic_lanes.py"
def run_patch_sample(tmp_path):
output = tmp_path / "patched.json"
result = subprocess.run(
[
sys.executable,
str(TOOL),
str(ROOT / "samples" / "traffic_resource.json"),
str(output),
],
check=True,
text=True,
capture_output=True,
)
assert "lanes changed: 2" in result.stdout
patched = json.loads(output.read_text(encoding="utf-8"))
lanes = patched["Data"]["RootChunk"]["data"]["lanes"]
assert lanes[0]["maxSpeed"] == 25
assert lanes[1]["maxSpeed"] == 15
assert lanes[2]["maxSpeed"] == 10
def test_patch_sample(tmp_path):
run_patch_sample(tmp_path)
if __name__ == "__main__":
with tempfile.TemporaryDirectory() as tmp:
run_patch_sample(Path(tmp))
+203
View File
@@ -0,0 +1,203 @@
#!/usr/bin/env python3
"""Summarize GPS-relevant structure in all.traffic_persistent JSON."""
from __future__ import annotations
import argparse
import collections
import json
from pathlib import Path
from typing import Any
FLAGS = {
"FromRoadSpline": 1,
"Bidirectional": 2,
"PatrolRoute": 4,
"Pavement": 8,
"Road": 16,
"Intersection": 32,
"NeverDeadEnd": 64,
"TrafficDisabled": 128,
"CrossWalk": 256,
"GPSOnly": 512,
"ShowDebug": 1024,
"Blockade": 2048,
"Yield": 4096,
"NoAIDriving": 8192,
"Highway": 16384,
"NoAutodrive": 32768,
}
def flag_value(flags: Any) -> int:
if isinstance(flags, int):
return flags
if isinstance(flags, str):
return int(flags)
if isinstance(flags, dict):
if "Value" in flags:
return int(flags["Value"])
if "$value" in flags:
return int(flags["$value"])
return int(flags or 0)
def has(flags: int, name: str) -> bool:
return bool(flags & FLAGS[name])
def category(flags: int) -> str:
if has(flags, "Highway"):
return "highway"
if has(flags, "GPSOnly"):
return "gpsonly"
if has(flags, "Road"):
return "road"
if has(flags, "Pavement"):
return "pavement"
return "other"
def ref_index(ref: Any) -> int | None:
if isinstance(ref, int):
return ref
if isinstance(ref, str):
try:
return int(ref)
except ValueError:
return None
if isinstance(ref, dict):
for key in ("Index", "index", "laneIndex", "LaneIndex", "value", "$value"):
if key in ref:
return ref_index(ref[key])
return None
def lane_refs(value: Any) -> list[int]:
if value is None:
return []
if isinstance(value, list):
out: list[int] = []
for item in value:
idx = ref_index(item)
if idx is not None:
out.append(idx)
return out
if isinstance(value, dict) and "Elements" in value:
return lane_refs(value["Elements"])
return []
def gps_info(lane: dict[str, Any]) -> tuple[int | None, int | None]:
info = lane.get("playerGPSInfo") or {}
return info.get("subGraphId"), info.get("stronglyConnectedComponentId")
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("json_file", type=Path)
parser.add_argument("--lane-connections", type=Path)
parser.add_argument("--samples", type=int, default=12)
args = parser.parse_args()
data = json.loads(args.json_file.read_text(encoding="utf-8"))
root = data["Data"]["RootChunk"]["data"]
lanes = root["lanes"]
neighbor_groups = root.get("neighborGroups", [])
categories = []
flags_by_lane = []
for lane in lanes:
flags = flag_value(lane.get("flags", 0))
flags_by_lane.append(flags)
categories.append(category(flags))
print(f"lanes: {len(lanes)}")
print(f"neighborGroups: {len(neighbor_groups)}")
print("categories:", dict(collections.Counter(categories).most_common()))
gps_counter = collections.Counter(gps_info(lane) for lane in lanes)
print(f"gps components: {len(gps_counter)}")
print("top gps components:")
for (subgraph, scc), count in gps_counter.most_common(20):
cats = collections.Counter(
categories[i] for i, lane in enumerate(lanes) if gps_info(lane) == (subgraph, scc)
)
print(f" subGraph={subgraph} scc={scc}: {count} {dict(cats.most_common())}")
connection_rows: list[dict[str, Any]] | None = None
if args.lane_connections:
connection_data = json.loads(args.lane_connections.read_text(encoding="utf-8"))
connection_rows = connection_data["Data"]["RootChunk"]["data"]
transitions = collections.Counter()
probabilities: dict[tuple[str, str], collections.Counter[int]] = collections.defaultdict(
collections.Counter
)
sharp_angles = collections.Counter()
out_degree = collections.Counter()
missing_refs = 0
rows = enumerate(lanes) if connection_rows is None else (
(row["index"], row["value"]) for row in connection_rows
)
for i, lane_or_connections in rows:
refs = (
lane_refs(lane_or_connections.get("outLanes"))
if connection_rows is None
else lane_refs(lane_or_connections.get("outlanes"))
)
out_degree[len(refs)] += 1
raw_outs = (
lane_or_connections.get("outLanes", [])
if connection_rows is None
else lane_or_connections.get("outlanes", [])
)
for out, ref in zip(raw_outs, refs):
if ref < 0 or ref >= len(lanes):
missing_refs += 1
continue
pair = (categories[i], categories[ref])
transitions[pair] += 1
if isinstance(out, dict) and "exitProbabilityCompressed" in out:
probabilities[pair][out["exitProbabilityCompressed"]] += 1
if isinstance(out, dict) and "isSharpAngle" in out:
sharp_angles[(pair, out["isSharpAngle"])] += 1
print("out degree:", dict(sorted(out_degree.items())))
print(f"missing out refs: {missing_refs}")
print("category transitions:")
for (src, dst), count in transitions.most_common(30):
extra = ""
if probabilities[(src, dst)]:
extra = f" prob={probabilities[(src, dst)].most_common(6)}"
sharp = [(key[1], value) for key, value in sharp_angles.items() if key[0] == (src, dst)]
if sharp:
extra += f" sharp={sharp}"
print(f" {src:8s} -> {dst:8s}: {count}{extra}")
print("highway connector samples:")
shown = 0
for i, lane in enumerate(lanes):
if categories[i] != "highway":
continue
if connection_rows is None:
refs = [ref for ref in lane_refs(lane.get("outLanes")) if 0 <= ref < len(lanes)]
else:
row = connection_rows[i]["value"]
refs = [ref for ref in lane_refs(row.get("outlanes")) if 0 <= ref < len(lanes)]
ref_cats = collections.Counter(categories[ref] for ref in refs)
if ref_cats and any(cat != "highway" for cat in ref_cats):
subgraph, scc = gps_info(lane)
print(
f" lane={i} flags={flags_by_lane[i]} len={lane.get('length')} "
f"speed={lane.get('maxSpeed')} gps=({subgraph},{scc}) out={dict(ref_cats)}"
)
shown += 1
if shown >= args.samples:
break
return 0
if __name__ == "__main__":
raise SystemExit(main())
+77
View File
@@ -0,0 +1,77 @@
#!/usr/bin/env python3
from __future__ import annotations
import argparse
import json
from collections import Counter
from pathlib import Path
from typing import Any
from patch_traffic_lanes import FLAGS, as_int, has_flag, looks_like_lane
def visit(value: Any):
if isinstance(value, dict):
lanes = value.get("lanes")
if isinstance(lanes, list) and any(looks_like_lane(lane) for lane in lanes):
for lane in lanes:
if looks_like_lane(lane):
yield lane
for child in value.values():
yield from visit(child)
elif isinstance(value, list):
for child in value:
yield from visit(child)
def bucket(flags: int) -> str:
if has_flag(flags, "Highway"):
return "highway"
if has_flag(flags, "Pavement"):
return "pavement"
if has_flag(flags, "CrossWalk"):
return "crosswalk"
if has_flag(flags, "Road"):
return "road"
return "other"
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("json_file", type=Path)
args = parser.parse_args()
data = json.loads(args.json_file.read_text(encoding="utf-8"))
speeds: dict[str, Counter[int]] = {
"all": Counter(),
"highway": Counter(),
"road": Counter(),
"pavement": Counter(),
"crosswalk": Counter(),
"other": Counter(),
}
flags_counter: Counter[int] = Counter()
for lane in visit(data):
flags = as_int(lane.get("flags"))
speed = as_int(lane.get("maxSpeed"))
if flags is None or speed is None:
continue
speeds["all"][speed] += 1
speeds[bucket(flags)][speed] += 1
flags_counter[flags] += 1
for name, counter in speeds.items():
print(f"{name}: {sum(counter.values())} lanes")
print(" " + ", ".join(f"{speed}:{count}" for speed, count in counter.most_common(20)))
print("top flags:")
for flags, count in flags_counter.most_common(20):
names = [name for name, bit in FLAGS.items() if flags & bit]
print(f" {flags}: {count} ({', '.join(names)})")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+213
View File
@@ -0,0 +1,213 @@
#!/usr/bin/env python3
"""Summarize VAND navigation-graph blobs from streamingsector JSON files."""
from __future__ import annotations
import argparse
import base64
import collections
import dataclasses
import json
import math
import struct
from pathlib import Path
from typing import Any, Iterator
HEADER_SIZE = 0x64
POINT_SIZE = 0x14
COORD_SIZE = 0x0C
@dataclasses.dataclass
class VandBlob:
path: Path
ordinal: int
size: int
version: int
tile_x: int
tile_y: int
point_count: int
coord_count: int
aux_count: int
point_count_2: int
aux_count_2: int
point_count_3: int
class_counts: collections.Counter[int]
raw_class_counts: collections.Counter[int]
mask_counts: collections.Counter[int]
bounds: tuple[float, float, float, float, float, float] | None
def walk_json(value: Any) -> Iterator[str]:
if isinstance(value, dict):
blob = value.get("Bytes")
if isinstance(blob, str):
yield blob
for child in value.values():
yield from walk_json(child)
elif isinstance(value, list):
for child in value:
yield from walk_json(child)
def finite_bounds(coords: list[tuple[float, float, float]]) -> tuple[float, float, float, float, float, float] | None:
finite = [coord for coord in coords if all(math.isfinite(part) for part in coord)]
if not finite:
return None
xs = [coord[0] for coord in finite]
ys = [coord[1] for coord in finite]
zs = [coord[2] for coord in finite]
return min(xs), min(ys), min(zs), max(xs), max(ys), max(zs)
def parse_vand(path: Path, ordinal: int, data: bytes) -> VandBlob | None:
if len(data) < HEADER_SIZE or not data.startswith(b"VAND"):
return None
version = struct.unpack_from("<I", data, 0x04)[0]
tile_x = struct.unpack_from("<i", data, 0x08)[0]
tile_y = struct.unpack_from("<i", data, 0x0C)[0]
point_count = struct.unpack_from("<I", data, 0x18)[0]
coord_count = struct.unpack_from("<I", data, 0x1C)[0]
aux_count = struct.unpack_from("<I", data, 0x20)[0]
point_count_2 = struct.unpack_from("<I", data, 0x24)[0]
aux_count_2 = struct.unpack_from("<I", data, 0x28)[0]
point_count_3 = struct.unpack_from("<I", data, 0x2C)[0]
coord_offset = HEADER_SIZE
point_offset = coord_offset + coord_count * COORD_SIZE
point_end = point_offset + point_count * POINT_SIZE
if point_end > len(data):
return VandBlob(
path=path,
ordinal=ordinal,
size=len(data),
version=version,
tile_x=tile_x,
tile_y=tile_y,
point_count=point_count,
coord_count=coord_count,
aux_count=aux_count,
point_count_2=point_count_2,
aux_count_2=aux_count_2,
point_count_3=point_count_3,
class_counts=collections.Counter({-1: point_count}),
raw_class_counts=collections.Counter(),
mask_counts=collections.Counter(),
bounds=None,
)
coords: list[tuple[float, float, float]] = []
for index in range(coord_count):
coords.append(struct.unpack_from("<fff", data, coord_offset + index * COORD_SIZE))
class_counts: collections.Counter[int] = collections.Counter()
raw_class_counts: collections.Counter[int] = collections.Counter()
mask_counts: collections.Counter[int] = collections.Counter()
for index in range(point_count):
offset = point_offset + index * POINT_SIZE
mask = struct.unpack_from("<H", data, offset + 0x10)[0]
raw_class = data[offset + 0x13]
class_counts[raw_class & 0x3F] += 1
raw_class_counts[raw_class] += 1
mask_counts[mask] += 1
return VandBlob(
path=path,
ordinal=ordinal,
size=len(data),
version=version,
tile_x=tile_x,
tile_y=tile_y,
point_count=point_count,
coord_count=coord_count,
aux_count=aux_count,
point_count_2=point_count_2,
aux_count_2=aux_count_2,
point_count_3=point_count_3,
class_counts=class_counts,
raw_class_counts=raw_class_counts,
mask_counts=mask_counts,
bounds=finite_bounds(coords),
)
def iter_vand_blobs(path: Path) -> Iterator[VandBlob]:
document = json.loads(path.read_text(encoding="utf-8"))
ordinal = 0
for encoded in walk_json(document):
try:
data = base64.b64decode(encoded)
except ValueError:
continue
blob = parse_vand(path, ordinal, data)
if blob:
yield blob
ordinal += 1
def fmt_counter(counter: collections.Counter[int], limit: int) -> str:
return " ".join(f"{key}:{value}" for key, value in counter.most_common(limit))
def fmt_bounds(bounds: tuple[float, float, float, float, float, float] | None) -> str:
if not bounds:
return "<none>"
return (
f"({bounds[0]:.1f},{bounds[1]:.1f},{bounds[2]:.1f}).."
f"({bounds[3]:.1f},{bounds[4]:.1f},{bounds[5]:.1f})"
)
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("json_files", nargs="+", type=Path)
parser.add_argument("--detail", type=int, default=12)
parser.add_argument("--counter-limit", type=int, default=12)
args = parser.parse_args()
blobs: list[VandBlob] = []
for path in args.json_files:
blobs.extend(iter_vand_blobs(path))
total_points = sum(blob.point_count for blob in blobs)
total_coords = sum(blob.coord_count for blob in blobs)
class_counts: collections.Counter[int] = collections.Counter()
raw_counts: collections.Counter[int] = collections.Counter()
mask_counts: collections.Counter[int] = collections.Counter()
versions: collections.Counter[int] = collections.Counter()
files: collections.Counter[str] = collections.Counter()
for blob in blobs:
class_counts.update(blob.class_counts)
raw_counts.update(blob.raw_class_counts)
mask_counts.update(blob.mask_counts)
versions[blob.version] += 1
files[str(blob.path)] += 1
print(f"files={len(files)} blobs={len(blobs)} points={total_points} coords={total_coords}")
print(f"versions={dict(sorted(versions.items()))}")
print(f"classes={fmt_counter(class_counts, args.counter_limit)}")
print(f"raw13={fmt_counter(raw_counts, args.counter_limit)}")
print(f"masks={fmt_counter(mask_counts, args.counter_limit)}")
print("files:")
for path, count in files.most_common():
print(f" {path}: {count}")
if args.detail:
print("largest blobs:")
for blob in sorted(blobs, key=lambda item: item.point_count, reverse=True)[: args.detail]:
print(
f" {blob.path.name}#{blob.ordinal} size={blob.size} tile=({blob.tile_x},{blob.tile_y}) "
f"points={blob.point_count} coords={blob.coord_count} aux={blob.aux_count} "
f"classes={fmt_counter(blob.class_counts, args.counter_limit)} "
f"raw13={fmt_counter(blob.raw_class_counts, args.counter_limit)} "
f"bounds={fmt_bounds(blob.bounds)}"
)
return 0
if __name__ == "__main__":
raise SystemExit(main())
+53
View File
@@ -0,0 +1,53 @@
#!/usr/bin/env bash
set -euo pipefail
if [[ $# -lt 3 ]]; then
echo "usage: $0 <game-dir> <archive-or-archive-dir> <work-dir> [resource-regex] [resource-path] [mod-name]" >&2
exit 2
fi
game_dir=$1
archive_path=$2
work_dir=$3
resource_regex=${4:-'all\.traffic_persistent$'}
resource_path=${5:-'base/worlds/03_night_city/sectors/_generated/traffic/all.traffic_persistent'}
mod_name=${6:-zz_edge_weight_gps}
raw_dir="${work_dir}/01_raw"
json_dir="${work_dir}/02_json"
patched_json_dir="${work_dir}/03_json_patched"
patched_raw_dir="${work_dir}/04_raw_patched"
pack_root="${work_dir}/${mod_name}"
packed_dir="${work_dir}/05_packed"
resource_dir=$(dirname "${resource_path}")
resource_file=$(basename "${resource_path}")
resource_hash=3419764573789342681
mkdir -p "${raw_dir}/${resource_dir}" "${json_dir}" "${patched_json_dir}" "${patched_raw_dir}" "${pack_root}/${resource_dir}" "${packed_dir}"
if [[ -f "${archive_path}" ]]; then
kark_path="${raw_dir}/${resource_file}.kark"
decompressed_base="${raw_dir}/${resource_file}.raw"
python3 contrib/re/tools/extract_archive_segment.py "${archive_path}" "${resource_hash}" "${kark_path}"
contrib/re/tools/cp77_toolbox.sh oodle decompress "${kark_path}" "${decompressed_base}" || true
if [[ ! -f "${decompressed_base}.bin" ]]; then
echo "failed to decompress ${kark_path}" >&2
exit 1
fi
mv "${decompressed_base}.bin" "${raw_dir}/${resource_path}"
else
echo "raw segment extraction needs a single archive file, got: ${archive_path}" >&2
exit 2
fi
contrib/re/tools/cp77_toolbox.sh convert serialize "${raw_dir}" --outpath "${json_dir}"
python3 contrib/re/tools/patch_traffic_lanes.py "${json_dir}" "${patched_json_dir}" --copy-unchanged
contrib/re/tools/cp77_toolbox.sh convert deserialize "${patched_json_dir}" --outpath "${patched_raw_dir}"
cp "${patched_raw_dir}/${resource_file}" "${pack_root}/${resource_path}"
contrib/re/tools/cp77_toolbox.sh pack "${pack_root}" --outpath "${packed_dir}"
echo "packed archive output: ${packed_dir}"
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
container="${CP77_TOOLBOX_CONTAINER:-2077}"
tool="${HOME}/.dotnet/tools/cp77tools"
exec toolbox run --container "${container}" "${tool}" "$@"
+101
View File
@@ -0,0 +1,101 @@
#!/usr/bin/env python3
"""Disassemble a PE .text range by RVA and annotate direct branch targets."""
from __future__ import annotations
import argparse
import math
import struct
from pathlib import Path
from capstone import Cs, CS_ARCH_X86, CS_MODE_64
from capstone.x86 import X86_OP_IMM, X86_OP_MEM, X86_REG_RIP
from find_pe_string_xrefs import Section, parse_pe
def find_section(sections: list[Section], rva: int) -> Section:
for section in sections:
if section.contains_rva(rva):
return section
raise ValueError(f"RVA 0x{rva:x} is not inside any PE section")
def find_section_or_none(sections: list[Section], rva: int) -> Section | None:
for section in sections:
if section.contains_rva(rva):
return section
return None
def parse_rva(text: str) -> int:
return int(text, 16 if text.lower().startswith("0x") else 16)
def format_memory_annotation(data: bytes, sections: list[Section], target_rva: int) -> str:
section = find_section_or_none(sections, target_rva)
if section is None:
return f"rip_rva=0x{target_rva:x}"
offset = section.rva_to_offset(target_rva)
if offset < 0 or offset >= len(data):
return f"rip_rva=0x{target_rva:x}"
available = data[offset : min(len(data), offset + 8)]
fields = [f"rip_rva=0x{target_rva:x}"]
if len(available) >= 4:
u32 = struct.unpack_from("<I", available)[0]
f32 = struct.unpack_from("<f", available)[0]
fields.append(f"u32=0x{u32:08x}")
if math.isfinite(f32) and abs(f32) < 1.0e12:
fields.append(f"f32={f32:.9g}")
if len(available) >= 8:
u64 = struct.unpack_from("<Q", available)[0]
fields.append(f"u64=0x{u64:016x}")
return " ".join(fields)
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("pe", type=Path)
parser.add_argument("rva", type=parse_rva)
parser.add_argument("--size", type=lambda value: int(value, 0), default=0x200)
parser.add_argument("--before", type=lambda value: int(value, 0), default=0)
args = parser.parse_args()
data = args.pe.read_bytes()
image_base, sections = parse_pe(data)
start_rva = max(0, args.rva - args.before)
section = find_section(sections, start_rva)
end_rva = min(section.virtual_address + section.raw_size, start_rva + args.size)
start_offset = section.rva_to_offset(start_rva)
code = data[start_offset : start_offset + (end_rva - start_rva)]
disassembler = Cs(CS_ARCH_X86, CS_MODE_64)
disassembler.detail = True
print(f"image_base=0x{image_base:x} section={section.name} range=0x{start_rva:x}..0x{end_rva:x}")
for insn in disassembler.disasm(code, image_base + start_rva):
rva = insn.address - image_base
annotation = ""
if insn.group(1) or insn.group(2): # jump/call
for operand in insn.operands:
if operand.type == X86_OP_IMM:
annotation = f" ; target_rva=0x{operand.imm - image_base:x}"
break
elif insn.operands:
memory_annotations = []
for operand in insn.operands:
if operand.type == X86_OP_MEM and operand.mem.base == X86_REG_RIP:
target_rva = (insn.address + insn.size + operand.mem.disp) - image_base
memory_annotations.append(format_memory_annotation(data, sections, target_rva))
if memory_annotations:
annotation = " ; " + " ; ".join(memory_annotations)
marker = ">>" if rva == args.rva else " "
print(f"{marker} 0x{rva:08x}: {insn.mnemonic:<8} {insn.op_str}{annotation}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
if [[ $# -lt 1 ]]; then
echo "usage: $0 <archive-file-or-dir> [output-list]" >&2
exit 2
fi
archive_path=$1
output=${2:-traffic-resources.txt}
contrib/re/tools/cp77_toolbox.sh archive --list \
--regex 'traffic.*persistent|persistent.*traffic|traffic.*lane|world.*traffic' \
"${archive_path}" \
> "${output}"
echo "wrote ${output}"
+77
View File
@@ -0,0 +1,77 @@
#!/usr/bin/env python3
"""Extract a single compressed RED4 archive segment by resource hash."""
from __future__ import annotations
import argparse
import struct
from pathlib import Path
FILE_ENTRY_SIZE = 56
FILE_SEGMENT_SIZE = 16
def parse_hash(value: str) -> int:
return int(value, 0)
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("archive", type=Path)
parser.add_argument("resource_hash", type=parse_hash)
parser.add_argument("outpath", type=Path)
args = parser.parse_args()
with args.archive.open("rb") as archive:
header = archive.read(40)
if len(header) != 40:
raise SystemExit("archive header is too short")
magic, _version, index_pos, _index_size, *_rest = struct.unpack("<IIQIQIQ", header)
if magic != 1380009042:
raise SystemExit(f"unexpected archive magic: {magic}")
archive.seek(index_pos + 16)
file_count, segment_count, _dependency_count = struct.unpack("<III", archive.read(12))
found: tuple[int, int] | None = None
for _ in range(file_count):
entry = archive.read(FILE_ENTRY_SIZE)
(
key,
_timestamp,
_flags,
segments_start,
segments_end,
_dependencies_start,
_dependencies_end,
_sha1,
) = struct.unpack("<QqIIIII20s", entry)
if key == args.resource_hash:
if segments_end - segments_start != 1:
raise SystemExit(
f"resource has {segments_end - segments_start} segments; expected 1"
)
found = (segments_start, segments_end)
if found is None:
raise SystemExit(f"resource hash {args.resource_hash} not found")
segments = []
for _ in range(segment_count):
segments.append(struct.unpack("<QII", archive.read(FILE_SEGMENT_SIZE)))
offset, z_size, size = segments[found[0]]
archive.seek(offset)
data = archive.read(z_size)
if len(data) != z_size:
raise SystemExit("archive ended before segment data was fully read")
args.outpath.parent.mkdir(parents=True, exist_ok=True)
args.outpath.write_bytes(data)
print(f"wrote {args.outpath} z_size={z_size} size={size}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+79
View File
@@ -0,0 +1,79 @@
#!/usr/bin/env python3
"""Find simple direct x64 call/jump xrefs to code RVAs in a PE file."""
from __future__ import annotations
import argparse
import struct
from pathlib import Path
from find_pe_string_xrefs import Section, parse_pe
def iter_rel32_xrefs(data: bytes, section: Section, image_base: int, target_vas: set[int]) -> dict[int, list[tuple[int, str]]]:
hits: dict[int, list[tuple[int, str]]] = {target_va: [] for target_va in target_vas}
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
opcodes = {
0xE8: "call",
0xE9: "jmp",
}
for offset in range(start, max(start, end - 5)):
opcode = data[offset]
mnemonic = opcodes.get(opcode)
if mnemonic is None:
continue
disp = struct.unpack_from("<i", data, offset + 1)[0]
instr_rva = section.virtual_address + (offset - section.raw_offset)
target_va = image_base + instr_rva + 5 + disp
if target_va in target_vas:
hits[target_va].append((instr_rva, mnemonic))
# Common tail-call form: ff 25 <riprel32> imports/thunks are not resolved
# here. This helper intentionally stays small and deterministic.
return hits
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("pe", type=Path)
parser.add_argument("targets", nargs="+", help="name=rva_hex pairs")
args = parser.parse_args()
data = args.pe.read_bytes()
image_base, sections = parse_pe(data)
code_sections = [section for section in sections if section.is_code]
targets: list[tuple[str, int, int]] = []
target_vas: set[int] = set()
for item in args.targets:
name, _, rva_text = item.partition("=")
if not name or not rva_text:
raise ValueError(f"target must be name=rva_hex: {item}")
target_rva = int(rva_text, 16)
target_va = image_base + target_rva
targets.append((name, target_rva, target_va))
target_vas.add(target_va)
xrefs: dict[int, list[tuple[int, str]]] = {target_va: [] for target_va in target_vas}
for section in code_sections:
section_hits = iter_rel32_xrefs(data, section, image_base, target_vas)
for target_va, hits in section_hits.items():
xrefs[target_va].extend(hits)
print(f"image_base=0x{image_base:x}")
for name, target_rva, target_va in targets:
all_hits = sorted(xrefs[target_va])
print(f"{name}: target_rva=0x{target_rva:x} direct_xrefs={len(all_hits)}")
for instr_rva, mnemonic in all_hits[:64]:
print(f" {mnemonic}_rva=0x{instr_rva:x}")
if len(all_hits) > 64:
print(f" ... {len(all_hits) - 64} more")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+136
View File
@@ -0,0 +1,136 @@
#!/usr/bin/env python3
"""Find likely x64 RIP-relative references to known string RVAs in a PE file."""
from __future__ import annotations
import argparse
import dataclasses
import struct
from pathlib import Path
@dataclasses.dataclass(frozen=True)
class Section:
name: str
virtual_address: int
virtual_size: int
raw_offset: int
raw_size: int
characteristics: int
@property
def is_code(self) -> bool:
image_scn_cnt_code = 0x00000020
image_scn_mem_execute = 0x20000000
return bool(self.characteristics & image_scn_cnt_code) and bool(self.characteristics & image_scn_mem_execute)
def contains_rva(self, rva: int) -> bool:
size = max(self.virtual_size, self.raw_size)
return self.virtual_address <= rva < self.virtual_address + size
def rva_to_offset(self, rva: int) -> int:
return self.raw_offset + (rva - self.virtual_address)
def parse_pe(data: bytes) -> tuple[int, list[Section]]:
if data[:2] != b"MZ":
raise ValueError("not an MZ executable")
pe_offset = struct.unpack_from("<I", data, 0x3C)[0]
if data[pe_offset : pe_offset + 4] != b"PE\0\0":
raise ValueError("not a PE executable")
coff_offset = pe_offset + 4
section_count = struct.unpack_from("<H", data, coff_offset + 2)[0]
optional_size = struct.unpack_from("<H", data, coff_offset + 16)[0]
optional_offset = coff_offset + 20
magic = struct.unpack_from("<H", data, optional_offset)[0]
if magic != 0x20B:
raise ValueError("expected PE32+ executable")
image_base = struct.unpack_from("<Q", data, optional_offset + 24)[0]
section_offset = optional_offset + optional_size
sections: list[Section] = []
for index in range(section_count):
offset = section_offset + index * 40
name = data[offset : offset + 8].split(b"\0", 1)[0].decode("ascii", "replace")
virtual_size, virtual_address, raw_size, raw_offset = struct.unpack_from("<IIII", data, offset + 8)
characteristics = struct.unpack_from("<I", data, offset + 36)[0]
sections.append(Section(name, virtual_address, virtual_size, raw_offset, raw_size, characteristics))
return image_base, sections
def section_for_rva(sections: list[Section], rva: int) -> Section | None:
for section in sections:
if section.contains_rva(rva):
return section
return None
def iter_rip_xrefs(data: bytes, section: Section, image_base: int, target_vas: set[int]) -> dict[int, list[int]]:
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
hits: dict[int, list[int]] = {target_va: [] for target_va in target_vas}
# On x64, most string references are encoded as a signed 32-bit displacement
# relative to the address immediately after the displacement.
for offset in range(start, max(start, end - 4)):
disp = struct.unpack_from("<i", data, offset)[0]
instr_end_va = image_base + section.virtual_address + (offset - section.raw_offset) + 4
target_va = instr_end_va + disp
if target_va in target_vas:
hits[target_va].append(section.virtual_address + (offset - section.raw_offset))
return hits
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("pe", type=Path)
parser.add_argument("targets", nargs="+", help="name=rva_hex pairs")
args = parser.parse_args()
data = args.pe.read_bytes()
image_base, sections = parse_pe(data)
code_sections = [section for section in sections if section.is_code]
targets: list[tuple[str, int, int]] = []
target_vas: set[int] = set()
for item in args.targets:
name, _, rva_text = item.partition("=")
if not name or not rva_text:
raise ValueError(f"target must be name=rva_hex: {item}")
target_rva = int(rva_text, 16)
target_va = image_base + target_rva
targets.append((name, target_rva, target_va))
target_vas.add(target_va)
xrefs: dict[int, list[int]] = {target_va: [] for target_va in target_vas}
for section in code_sections:
section_hits = iter_rip_xrefs(data, section, image_base, target_vas)
for target_va, hits in section_hits.items():
xrefs[target_va].extend(hits)
print(f"image_base=0x{image_base:x}")
for name, target_rva, target_va in targets:
target_section = section_for_rva(sections, target_rva)
section_name = target_section.name if target_section else "<none>"
print(f"{name}: target_rva=0x{target_rva:x} target_section={section_name}")
all_hits = xrefs[target_va]
if not all_hits:
print(" no code xrefs found")
continue
for hit in all_hits[:32]:
print(f" code_xref_disp_rva=0x{hit:x} probable_instr_rva=0x{max(0, hit - 7):x}..0x{hit:x}")
if len(all_hits) > 32:
print(f" ... {len(all_hits) - 32} more")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+168
View File
@@ -0,0 +1,168 @@
#!/usr/bin/env python3
"""Find PE code blocks containing selected immediate byte values.
This is a lightweight triage helper, not a real disassembler. It groups .text
bytes into contiguous blocks split by int3 padding and reports blocks whose raw
bytes contain values of interest. It is useful when looking for native code that
touches compact flags such as worldTrafficLanePersistentFlags.
"""
from __future__ import annotations
import argparse
import dataclasses
import re
from pathlib import Path
from find_pe_string_xrefs import Section, parse_pe
DEFAULT_PATTERNS = {
"flag_road_u16": (0x0010, 2),
"flag_intersection_u16": (0x0020, 2),
"flag_traffic_disabled_u16": (0x0080, 2),
"flag_gpsonly_u16": (0x0200, 2),
"flag_no_ai_driving_u16": (0x2000, 2),
"flag_highway_u16": (0x4000, 2),
"flag_no_autodrive_u16": (0x8000, 2),
"flag_road_u32": (0x0010, 4),
"flag_intersection_u32": (0x0020, 4),
"flag_traffic_disabled_u32": (0x0080, 4),
"flag_gpsonly_u32": (0x0200, 4),
"flag_no_ai_driving_u32": (0x2000, 4),
"flag_highway_u32": (0x4000, 4),
"flag_no_autodrive_u32": (0x8000, 4),
"lane_size_u32": (0x00A0, 4),
"traffic_data_size_u32": (0x0110, 4),
}
@dataclasses.dataclass(frozen=True)
class Pattern:
name: str
needle: bytes
@dataclasses.dataclass(frozen=True)
class Hit:
rva: int
pattern: str
def parse_pattern(text: str) -> Pattern:
name, sep, spec = text.partition("=")
if not sep or not name:
raise argparse.ArgumentTypeError("patterns must be name=hex[:size]")
value_text, _, size_text = spec.partition(":")
value = int(value_text, 0)
size = int(size_text, 0) if size_text else 4
if size not in (1, 2, 4, 8):
raise argparse.ArgumentTypeError("pattern size must be 1, 2, 4, or 8")
if value < 0 or value >= (1 << (size * 8)):
raise argparse.ArgumentTypeError("pattern value does not fit size")
return Pattern(name=name, needle=value.to_bytes(size, "little"))
def default_patterns() -> list[Pattern]:
return [Pattern(name, value.to_bytes(size, "little")) for name, (value, size) in DEFAULT_PATTERNS.items()]
def iter_code_blocks(data: bytes, section: Section, min_size: int) -> list[tuple[int, bytes]]:
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
blob = data[start:end]
blocks: list[tuple[int, bytes]] = []
block_start = 0
for match in re.finditer(rb"\xcc{2,}", blob):
if match.start() - block_start >= min_size:
blocks.append((section.virtual_address + block_start, blob[block_start : match.start()]))
block_start = match.end()
if len(blob) - block_start >= min_size:
blocks.append((section.virtual_address + block_start, blob[block_start:]))
return blocks
def find_hits(block_rva: int, block: bytes, patterns: list[Pattern], max_offsets: int) -> tuple[dict[str, int], list[Hit]]:
counts: dict[str, int] = {}
hits: list[Hit] = []
for pattern in patterns:
offset = block.find(pattern.needle)
while offset != -1:
counts[pattern.name] = counts.get(pattern.name, 0) + 1
if len([hit for hit in hits if hit.pattern == pattern.name]) < max_offsets:
hits.append(Hit(block_rva + offset, pattern.name))
offset = block.find(pattern.needle, offset + 1)
return counts, hits
def score_counts(counts: dict[str, int]) -> int:
score = 0
for name, count in counts.items():
weight = 1
if name.endswith("_u32"):
weight = 2
if name in {"flag_highway_u16", "flag_highway_u32", "flag_gpsonly_u16", "flag_gpsonly_u32"}:
weight += 2
if name in {"lane_size_u32", "traffic_data_size_u32"}:
weight += 3
score += min(count, 8) * weight
names = set(counts)
if names & {"flag_highway_u16", "flag_highway_u32"} and names & {"flag_gpsonly_u16", "flag_gpsonly_u32"}:
score += 8
if names & {"flag_road_u16", "flag_road_u32"} and names & {"flag_highway_u16", "flag_highway_u32"}:
score += 4
return score
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("pe", type=Path)
parser.add_argument("--pattern", action="append", type=parse_pattern, default=[])
parser.add_argument("--no-defaults", action="store_true")
parser.add_argument("--require", action="append", default=[], help="Require a pattern name; repeatable")
parser.add_argument("--min-score", type=int, default=10)
parser.add_argument("--min-block-size", type=int, default=16)
parser.add_argument("--max-results", type=int, default=80)
parser.add_argument("--max-offsets", type=int, default=4)
args = parser.parse_args()
patterns = ([] if args.no_defaults else default_patterns()) + args.pattern
data = args.pe.read_bytes()
image_base, sections = parse_pe(data)
results: list[tuple[int, int, int, dict[str, int], list[Hit]]] = []
for section in sections:
if not section.is_code:
continue
for block_rva, block in iter_code_blocks(data, section, args.min_block_size):
counts, hits = find_hits(block_rva, block, patterns, args.max_offsets)
if not counts:
continue
if any(required not in counts for required in args.require):
continue
score = score_counts(counts)
if score < args.min_score:
continue
results.append((score, block_rva, block_rva + len(block), counts, hits))
results.sort(key=lambda item: (-item[0], item[1]))
print(f"image_base=0x{image_base:x}")
print(f"blocks={len(results)} min_score={args.min_score} require={args.require}")
for score, start_rva, end_rva, counts, hits in results[: args.max_results]:
count_text = ", ".join(f"{name}:{counts[name]}" for name in sorted(counts))
print(f"block rva=0x{start_rva:x}..0x{end_rva:x} size=0x{end_rva - start_rva:x} score={score}")
print(f" counts {count_text}")
for hit in sorted(hits, key=lambda item: item.rva):
print(f" hit rva=0x{hit.rva:x} pattern={hit.pattern}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+174
View File
@@ -0,0 +1,174 @@
#!/usr/bin/env python3
"""Map REDscript/native registration strings to nearby code pointer candidates."""
from __future__ import annotations
import argparse
import re
import struct
from pathlib import Path
from find_pe_string_xrefs import Section, parse_pe
def section_for_rva(sections: list[Section], rva: int) -> Section | None:
for section in sections:
if section.contains_rva(rva):
return section
return None
def is_readable_data(section: Section) -> bool:
return bool(section.characteristics & 0x40000000) and not section.is_code
def iter_ascii_strings(data: bytes, section: Section, min_len: int) -> list[tuple[int, str]]:
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
pattern = re.compile(rb"[\x20-\x7e]{%d,}" % min_len)
return [
(section.virtual_address + match.start(), match.group(0).decode("ascii", "replace"))
for match in pattern.finditer(data[start:end])
]
def read_i32(data: bytes, offset: int) -> int | None:
if offset < 0 or offset + 4 > len(data):
return None
return struct.unpack_from("<i", data, offset)[0]
def find_rip_disp_xrefs(data: bytes, sections: list[Section], image_base: int, target_rvas: set[int]) -> dict[int, list[int]]:
target_vas = {image_base + rva: rva for rva in target_rvas}
hits = {rva: [] for rva in target_rvas}
for section in sections:
if not section.is_code:
continue
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
for offset in range(start, max(start, end - 4)):
disp = read_i32(data, offset)
if disp is None:
continue
instr_end_va = image_base + section.virtual_address + (offset - section.raw_offset) + 4
target_rva = target_vas.get(instr_end_va + disp)
if target_rva is not None:
hits[target_rva].append(section.virtual_address + (offset - section.raw_offset))
return hits
def iter_nearby_rip_code_targets(
data: bytes,
sections: list[Section],
image_base: int,
code_section: Section,
center_disp_rva: int,
radius: int,
) -> list[tuple[int, int, str]]:
# Common x64 RIP-relative LEA/MOV forms used by the generated registration
# thunks to pass function pointers and type descriptors around.
patterns: tuple[tuple[bytes, int, str], ...] = (
(b"\x48\x8d\x05", 3, "lea rax"),
(b"\x48\x8d\x0d", 3, "lea rcx"),
(b"\x48\x8d\x15", 3, "lea rdx"),
(b"\x48\x8d\x1d", 3, "lea rbx"),
(b"\x48\x8d\x35", 3, "lea rsi"),
(b"\x48\x8d\x3d", 3, "lea rdi"),
(b"\x4c\x8d\x05", 3, "lea r8"),
(b"\x4c\x8d\x0d", 3, "lea r9"),
(b"\x4c\x8d\x15", 3, "lea r10"),
(b"\x4c\x8d\x1d", 3, "lea r11"),
(b"\x4c\x8d\x25", 3, "lea r12"),
(b"\x4c\x8d\x2d", 3, "lea r13"),
(b"\x4c\x8d\x35", 3, "lea r14"),
(b"\x4c\x8d\x3d", 3, "lea r15"),
)
center_off = code_section.rva_to_offset(center_disp_rva)
start = max(code_section.raw_offset, center_off - radius)
end = min(len(data), code_section.raw_offset + code_section.raw_size, center_off + radius)
out: list[tuple[int, int, str]] = []
for offset in range(start, end):
for prefix, disp_start, label in patterns:
if data[offset : offset + len(prefix)] != prefix:
continue
disp = read_i32(data, offset + disp_start)
if disp is None:
continue
instr_rva = code_section.virtual_address + (offset - code_section.raw_offset)
instr_end_va = image_base + instr_rva + disp_start + 4
target_rva = instr_end_va + disp - image_base
target_section = section_for_rva(sections, target_rva)
if target_section and target_section.is_code:
out.append((instr_rva, target_rva, label))
return sorted(set(out))
def likely_registered_code(ref_rva: int, candidates: list[tuple[int, int, str]]) -> tuple[int, int, str] | None:
for candidate in candidates:
instr_rva, _target_rva, label = candidate
if instr_rva > ref_rva and label == "lea rax":
return candidate
return None
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("pe", type=Path)
parser.add_argument("--pattern", required=True, help="case-insensitive regex for registration strings")
parser.add_argument("--min-len", type=int, default=5)
parser.add_argument("--radius", type=int, default=192)
parser.add_argument("--max-strings", type=int, default=200)
args = parser.parse_args()
data = args.pe.read_bytes()
image_base, sections = parse_pe(data)
regex = re.compile(args.pattern, re.IGNORECASE)
strings: list[tuple[int, str]] = []
for section in sections:
if is_readable_data(section):
strings.extend((rva, text) for rva, text in iter_ascii_strings(data, section, args.min_len) if regex.search(text))
strings = sorted(strings, key=lambda item: (item[1].lower(), item[0]))
xrefs = find_rip_disp_xrefs(data, sections, image_base, {rva for rva, _ in strings})
print(f"image_base=0x{image_base:x}")
print(f"matches={len(strings)} pattern={args.pattern!r}")
emitted = 0
for string_rva, text in strings:
refs = xrefs.get(string_rva, [])
if not refs:
continue
print(f"name={text!r} string_rva=0x{string_rva:x} xrefs={len(refs)}")
for ref in refs[:12]:
code_section = section_for_rva(sections, ref)
if not code_section:
continue
candidates = iter_nearby_rip_code_targets(data, sections, image_base, code_section, ref, args.radius)
print(f" xref_disp_rva=0x{ref:x} nearby_code_ptrs={len(candidates)}")
likely = likely_registered_code(ref, candidates)
if likely:
instr_rva, target_rva, label = likely
print(f" likely_registered_code {label} instr_rva=0x{instr_rva:x} target_rva=0x{target_rva:x}")
for instr_rva, target_rva, label in candidates[:16]:
print(f" {label} instr_rva=0x{instr_rva:x} target_rva=0x{target_rva:x}")
if len(candidates) > 16:
print(f" ... +{len(candidates) - 16}")
emitted += 1
if emitted >= args.max_strings:
break
return 0
if __name__ == "__main__":
raise SystemExit(main())
+169
View File
@@ -0,0 +1,169 @@
#!/usr/bin/env python3
"""Find static GPS/map route candidates in a Cyberpunk 2077 executable."""
from __future__ import annotations
import argparse
import dataclasses
import json
import re
import struct
from pathlib import Path
@dataclasses.dataclass(frozen=True)
class Section:
name: str
virtual_address: int
virtual_size: int
raw_offset: int
raw_size: int
characteristics: int
@property
def is_code(self) -> bool:
return bool(self.characteristics & 0x20) and bool(self.characteristics & 0x20000000)
@property
def is_readable_data(self) -> bool:
return bool(self.characteristics & 0x40000000) and not self.is_code
def contains_rva(self, rva: int) -> bool:
return self.virtual_address <= rva < self.virtual_address + max(self.virtual_size, self.raw_size)
def rva_to_offset(self, rva: int) -> int:
return self.raw_offset + (rva - self.virtual_address)
def parse_pe(data: bytes) -> tuple[int, list[Section]]:
if data[:2] != b"MZ":
raise ValueError("not an MZ executable")
pe_offset = struct.unpack_from("<I", data, 0x3C)[0]
if data[pe_offset : pe_offset + 4] != b"PE\0\0":
raise ValueError("not a PE executable")
coff_offset = pe_offset + 4
section_count = struct.unpack_from("<H", data, coff_offset + 2)[0]
optional_size = struct.unpack_from("<H", data, coff_offset + 16)[0]
optional_offset = coff_offset + 20
if struct.unpack_from("<H", data, optional_offset)[0] != 0x20B:
raise ValueError("expected PE32+ executable")
image_base = struct.unpack_from("<Q", data, optional_offset + 24)[0]
section_offset = optional_offset + optional_size
sections: list[Section] = []
for index in range(section_count):
offset = section_offset + index * 40
name = data[offset : offset + 8].split(b"\0", 1)[0].decode("ascii", "replace")
virtual_size, virtual_address, raw_size, raw_offset = struct.unpack_from("<IIII", data, offset + 8)
characteristics = struct.unpack_from("<I", data, offset + 36)[0]
sections.append(Section(name, virtual_address, virtual_size, raw_offset, raw_size, characteristics))
return image_base, sections
def iter_strings(data: bytes, section: Section, min_len: int) -> list[tuple[int, str, str]]:
results: list[tuple[int, str, str]] = []
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
blob = data[start:end]
ascii_re = re.compile(rb"[\x20-\x7e]{%d,}" % min_len)
for match in ascii_re.finditer(blob):
text = match.group(0).decode("ascii", "replace")
results.append((section.virtual_address + match.start(), "ascii", text))
utf16_re = re.compile((rb"(?:[\x20-\x7e]\x00){%d,}" % min_len))
for match in utf16_re.finditer(blob):
raw = match.group(0)
text = raw.decode("utf-16le", "replace")
results.append((section.virtual_address + match.start(), "utf16", text))
return results
def find_xrefs(data: bytes, sections: list[Section], image_base: int, target_rvas: set[int]) -> dict[int, list[int]]:
target_vas = {image_base + rva: rva for rva in target_rvas}
hits = {rva: [] for rva in target_rvas}
for section in sections:
if not section.is_code:
continue
start = section.raw_offset
end = min(len(data), section.raw_offset + section.raw_size)
for offset in range(start, max(start, end - 4)):
disp = struct.unpack_from("<i", data, offset)[0]
instr_end_va = image_base + section.virtual_address + (offset - section.raw_offset) + 4
target_va = instr_end_va + disp
target_rva = target_vas.get(target_va)
if target_rva is not None:
hits[target_rva].append(section.virtual_address + (offset - section.raw_offset))
return hits
def load_address_symbols(path: Path, pattern: re.Pattern[str]) -> list[tuple[int, str]]:
payload = json.loads(path.read_text())
symbols: list[tuple[int, str]] = []
for item in payload.get("Addresses", []):
symbol = item.get("symbol")
offset = item.get("offset")
if not symbol or not offset or not pattern.search(symbol):
continue
section, _, value = offset.partition(":")
if section != "0001":
continue
symbols.append((int(value, 16), symbol))
return sorted(symbols)
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("exe", type=Path)
parser.add_argument("--addresses", type=Path)
parser.add_argument(
"--pattern",
default=r"gps|route|path|mappin|track|quest|journal|navigation|map",
help="case-insensitive regex for string and symbol filtering",
)
parser.add_argument("--min-len", type=int, default=5)
parser.add_argument("--max-strings", type=int, default=300)
args = parser.parse_args()
data = args.exe.read_bytes()
image_base, sections = parse_pe(data)
pattern = re.compile(args.pattern, re.IGNORECASE)
matches: list[tuple[int, str, str]] = []
for section in sections:
if section.is_readable_data:
matches.extend(item for item in iter_strings(data, section, args.min_len) if pattern.search(item[2]))
matches.sort(key=lambda item: (item[0], item[1], item[2]))
target_rvas = {rva for rva, _, _ in matches}
xrefs = find_xrefs(data, sections, image_base, target_rvas)
print(f"image_base=0x{image_base:x}")
print(f"string_matches={len(matches)} pattern={args.pattern!r}")
for rva, encoding, text in matches[: args.max_strings]:
hit_text = ", ".join(f"0x{hit:x}" for hit in xrefs.get(rva, [])[:12])
if len(xrefs.get(rva, [])) > 12:
hit_text += f", ... +{len(xrefs[rva]) - 12}"
print(f"string rva=0x{rva:x} enc={encoding} xrefs={len(xrefs.get(rva, []))} text={text!r}")
if hit_text:
print(f" xref_disp_rvas={hit_text}")
if args.addresses:
print()
symbols = load_address_symbols(args.addresses, pattern)
print(f"address_symbols={len(symbols)}")
for rva, symbol in symbols[: args.max_strings]:
print(f"symbol rva=0x{rva:x} name={symbol}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
@@ -0,0 +1,327 @@
#!/usr/bin/env python3
"""Generate a compact road-class grid for the RED4ext GPS edge-cost shim."""
from __future__ import annotations
import argparse
import json
import math
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Iterable
FLAGS = {
"Pavement": 0x0008,
"Road": 0x0010,
"GPSOnly": 0x0200,
"Highway": 0x4000,
}
CATEGORY_CODES = {
"unknown": ".",
"pavement": "P",
"gpsonly": "G",
"road": "R",
"highway": "H",
}
CATEGORY_PRIORITY = {
".": 0,
"P": 1,
"G": 2,
"R": 3,
"H": 4,
}
@dataclass(frozen=True)
class GridSpec:
min_x: float
min_y: float
width: int
height: int
cell_size: float
def flag_value(value: Any) -> int:
if isinstance(value, int):
return value
if isinstance(value, str):
return int(value)
if isinstance(value, dict):
for key in ("Value", "$value", "value"):
if key in value:
return flag_value(value[key])
return int(value or 0)
def lane_category(flags: int) -> str:
if flags & FLAGS["Highway"]:
return "highway"
if flags & FLAGS["GPSOnly"]:
return "gpsonly"
if flags & FLAGS["Road"]:
return "road"
if flags & FLAGS["Pavement"]:
return "pavement"
return "unknown"
def load_lanes(path: Path) -> list[dict[str, Any]]:
data = json.loads(path.read_text(encoding="utf-8"))
return data["Data"]["RootChunk"]["data"]["lanes"]
def load_lane_polygons(path: Path) -> list[list[tuple[float, float]]]:
data = json.loads(path.read_text(encoding="utf-8"))
rows = data["Data"]["RootChunk"]["data"]
polygons: list[list[tuple[float, float]]] = []
for row in rows:
polygon = row.get("value", {}).get("polygon") or []
polygons.append([(float(point["X"]), float(point["Y"])) for point in polygon])
return polygons
def point_in_polygon(x: float, y: float, polygon: list[tuple[float, float]]) -> bool:
inside = False
count = len(polygon)
if count < 3:
return False
previous_x, previous_y = polygon[-1]
for current_x, current_y in polygon:
if (current_y > y) != (previous_y > y):
edge_x = (previous_x - current_x) * (y - current_y) / (previous_y - current_y) + current_x
if x < edge_x:
inside = not inside
previous_x, previous_y = current_x, current_y
return inside
def orientation(ax: float, ay: float, bx: float, by: float, cx: float, cy: float) -> float:
return (by - ay) * (cx - bx) - (bx - ax) * (cy - by)
def on_segment(ax: float, ay: float, bx: float, by: float, cx: float, cy: float) -> bool:
return min(ax, cx) <= bx <= max(ax, cx) and min(ay, cy) <= by <= max(ay, cy)
def segments_intersect(
ax: float,
ay: float,
bx: float,
by: float,
cx: float,
cy: float,
dx: float,
dy: float,
) -> bool:
o1 = orientation(ax, ay, bx, by, cx, cy)
o2 = orientation(ax, ay, bx, by, dx, dy)
o3 = orientation(cx, cy, dx, dy, ax, ay)
o4 = orientation(cx, cy, dx, dy, bx, by)
if (o1 > 0) != (o2 > 0) and (o3 > 0) != (o4 > 0):
return True
eps = 1e-5
if abs(o1) <= eps and on_segment(ax, ay, cx, cy, bx, by):
return True
if abs(o2) <= eps and on_segment(ax, ay, dx, dy, bx, by):
return True
if abs(o3) <= eps and on_segment(cx, cy, ax, ay, dx, dy):
return True
if abs(o4) <= eps and on_segment(cx, cy, bx, by, dx, dy):
return True
return False
def polygon_intersects_cell(
polygon: list[tuple[float, float]],
min_x: float,
min_y: float,
max_x: float,
max_y: float,
) -> bool:
center_x = (min_x + max_x) * 0.5
center_y = (min_y + max_y) * 0.5
if point_in_polygon(center_x, center_y, polygon):
return True
corners = ((min_x, min_y), (max_x, min_y), (max_x, max_y), (min_x, max_y))
if any(point_in_polygon(x, y, polygon) for x, y in corners):
return True
if any(min_x <= x <= max_x and min_y <= y <= max_y for x, y in polygon):
return True
cell_edges = (
(min_x, min_y, max_x, min_y),
(max_x, min_y, max_x, max_y),
(max_x, max_y, min_x, max_y),
(min_x, max_y, min_x, min_y),
)
previous_x, previous_y = polygon[-1]
for current_x, current_y in polygon:
for edge in cell_edges:
if segments_intersect(previous_x, previous_y, current_x, current_y, *edge):
return True
previous_x, previous_y = current_x, current_y
return False
def grid_index(spec: GridSpec, x: float, y: float) -> tuple[int, int]:
column = math.floor((x - spec.min_x) / spec.cell_size)
row = math.floor((y - spec.min_y) / spec.cell_size)
return int(column), int(row)
def mark_cell(grid: list[list[str]], column: int, row: int, code: str) -> bool:
if row < 0 or row >= len(grid) or column < 0 or column >= len(grid[row]):
return False
if CATEGORY_PRIORITY[code] <= CATEGORY_PRIORITY[grid[row][column]]:
return False
grid[row][column] = code
return True
def iter_cells_for_polygon(spec: GridSpec, polygon: list[tuple[float, float]]) -> Iterable[tuple[int, int]]:
xs = [point[0] for point in polygon]
ys = [point[1] for point in polygon]
min_col, min_row = grid_index(spec, min(xs), min(ys))
max_col, max_row = grid_index(spec, max(xs), max(ys))
for row in range(max(0, min_row), min(spec.height - 1, max_row) + 1):
for column in range(max(0, min_col), min(spec.width - 1, max_col) + 1):
cell_min_x = spec.min_x + column * spec.cell_size
cell_min_y = spec.min_y + row * spec.cell_size
if polygon_intersects_cell(
polygon,
cell_min_x,
cell_min_y,
cell_min_x + spec.cell_size,
cell_min_y + spec.cell_size,
):
yield column, row
def build_grid(
lanes: list[dict[str, Any]],
polygons: list[list[tuple[float, float]]],
cell_size: float,
inflate_cells: int,
) -> tuple[GridSpec, list[list[str]], dict[str, int]]:
points = [point for polygon in polygons for point in polygon]
if not points:
raise ValueError("no polygon points found")
min_x = math.floor(min(point[0] for point in points) / cell_size) * cell_size
min_y = math.floor(min(point[1] for point in points) / cell_size) * cell_size
max_x = math.ceil(max(point[0] for point in points) / cell_size) * cell_size
max_y = math.ceil(max(point[1] for point in points) / cell_size) * cell_size
spec = GridSpec(
min_x=min_x,
min_y=min_y,
width=int(round((max_x - min_x) / cell_size)),
height=int(round((max_y - min_y) / cell_size)),
cell_size=cell_size,
)
grid = [[CATEGORY_CODES["unknown"] for _ in range(spec.width)] for _ in range(spec.height)]
for index, (lane, polygon) in enumerate(zip(lanes, polygons, strict=True)):
if len(polygon) < 3:
continue
code = CATEGORY_CODES[lane_category(flag_value(lane.get("flags", 0)))]
if code == CATEGORY_CODES["unknown"]:
continue
changed_cells: set[tuple[int, int]] = set()
for column, row in iter_cells_for_polygon(spec, polygon):
for dy in range(-inflate_cells, inflate_cells + 1):
for dx in range(-inflate_cells, inflate_cells + 1):
changed_cells.add((column + dx, row + dy))
for column, row in changed_cells:
mark_cell(grid, column, row, code)
counts = {code: sum(row.count(code) for row in grid) for code in CATEGORY_PRIORITY}
return spec, grid, counts
def write_header(path: Path, spec: GridSpec, grid: list[list[str]], counts: dict[str, int]) -> None:
lines = [
"#pragma once",
"",
"#include <array>",
"#include <cstdint>",
"#include <string_view>",
"",
"namespace EdgeWeightGPS::Generated",
"{",
f"constexpr float kSpatialRoadGridMinX = {spec.min_x:.1f}f;",
f"constexpr float kSpatialRoadGridMinY = {spec.min_y:.1f}f;",
f"constexpr float kSpatialRoadGridCellSize = {spec.cell_size:.1f}f;",
f"constexpr uint32_t kSpatialRoadGridWidth = {spec.width};",
f"constexpr uint32_t kSpatialRoadGridHeight = {spec.height};",
"",
"// Cell codes: H=highway, R=road, G=GPS-only, P=pavement, .=unknown.",
"// Generated by contrib/re/tools/generate_spatial_edge_grid.py from all.traffic_persistent and all.lane_polygons.",
f"// Counts: H={counts['H']} R={counts['R']} G={counts['G']} P={counts['P']} unknown={counts['.']}.",
"constexpr std::array<std::string_view, kSpatialRoadGridHeight> kSpatialRoadGridRows = {{",
]
for row in grid:
lines.append(f' "{("").join(row)}",')
lines.extend(
[
"}};",
"",
"} // namespace EdgeWeightGPS::Generated",
"",
]
)
path.write_text("\n".join(lines), encoding="utf-8")
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("--traffic-json", type=Path, default=Path("contrib/re/work/raw-segment-json/all.traffic_persistent.json"))
parser.add_argument(
"--lane-polygons-json",
type=Path,
default=Path("contrib/re/work/traffic-companions/json/all.lane_polygons.json"),
)
parser.add_argument(
"--output",
type=Path,
default=Path("contrib/re/work/generated/GeneratedSpatialRoadGrid.hpp"),
)
parser.add_argument("--cell-size", type=float, default=16.0)
parser.add_argument("--inflate-cells", type=int, default=0)
args = parser.parse_args()
lanes = load_lanes(args.traffic_json)
polygons = load_lane_polygons(args.lane_polygons_json)
if len(lanes) != len(polygons):
raise ValueError(f"lane/polygon count mismatch: {len(lanes)} != {len(polygons)}")
spec, grid, counts = build_grid(lanes, polygons, args.cell_size, args.inflate_cells)
args.output.parent.mkdir(parents=True, exist_ok=True)
write_header(args.output, spec, grid, counts)
total = spec.width * spec.height
covered = total - sum(row.count(".") for row in grid)
print(
f"wrote {args.output} cells={total} covered={covered} "
f"size={spec.width}x{spec.height} origin=({spec.min_x},{spec.min_y}) cell={spec.cell_size}"
)
print("counts " + " ".join(f"{code}={counts[code]}" for code in ("H", "R", "G", "P", ".")))
return 0
if __name__ == "__main__":
raise SystemExit(main())
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
game_dir="${CYBERPUNK2077_GAME_DIR:-/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/Cyberpunk 2077}"
script_out="$game_dir/r6/scripts/EdgeWeightGPS"
mkdir -p "$script_out"
install -m 0644 "$repo_root/contrib/re/redscript/EdgeWeightGPS/EdgeWeightGPS.reds" "$script_out/EdgeWeightGPS.reds"
printf 'Installed %s\n' "$script_out/EdgeWeightGPS.reds"
+132
View File
@@ -0,0 +1,132 @@
#!/usr/bin/env python3
"""Patch traffic lane connection probabilities toward highway routing."""
from __future__ import annotations
import argparse
import json
from pathlib import Path
from typing import Any
FLAGS = {
"Road": 16,
"Pavement": 8,
"TrafficDisabled": 128,
"CrossWalk": 256,
"GPSOnly": 512,
"Blockade": 2048,
"Highway": 16384,
}
def load_json(path: Path) -> Any:
return json.loads(path.read_text(encoding="utf-8"))
def flag_value(flags: Any) -> int:
return int(flags or 0)
def has(flags: int, name: str) -> bool:
return bool(flags & FLAGS[name])
def category(flags: int) -> str:
if has(flags, "Highway"):
return "highway"
if has(flags, "GPSOnly"):
return "gpsonly"
if has(flags, "Road"):
return "road"
if has(flags, "Pavement"):
return "pavement"
return "other"
def write_json(path: Path, data: Any) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(json.dumps(data, indent=2) + "\n", encoding="utf-8")
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("traffic_persistent_json", type=Path)
parser.add_argument("lane_connections_json", type=Path)
parser.add_argument("out_json", type=Path)
parser.add_argument("--high", type=int, default=255)
parser.add_argument("--low", type=int, default=1)
args = parser.parse_args()
traffic = load_json(args.traffic_persistent_json)
lanes = traffic["Data"]["RootChunk"]["data"]["lanes"]
lane_categories = [category(flag_value(lane.get("flags", 0))) for lane in lanes]
connections = load_json(args.lane_connections_json)
rows = connections["Data"]["RootChunk"]["data"]
changed = 0
high_set = 0
low_set = 0
touched_rows = 0
for row in rows:
source_index = row["index"]
source_category = lane_categories[source_index]
outlanes = row["value"]["outlanes"]
if not outlanes:
continue
target_categories = [
lane_categories[out["laneIndex"]]
for out in outlanes
if 0 <= out["laneIndex"] < len(lane_categories)
]
has_highway_target = "highway" in target_categories
has_non_highway_target = any(cat != "highway" for cat in target_categories)
row_changed = False
for out in outlanes:
target_category = lane_categories[out["laneIndex"]]
old = out["exitProbabilityCompressed"]
new = old
if target_category == "highway" and source_category in {"road", "gpsonly", "highway"}:
new = args.high
elif (
source_category == "highway"
and has_highway_target
and target_category != "highway"
):
new = args.low
elif (
source_category in {"road", "gpsonly"}
and has_highway_target
and has_non_highway_target
and target_category != "highway"
):
new = args.low
if new != old:
out["exitProbabilityCompressed"] = new
changed += 1
row_changed = True
if new == args.high:
high_set += 1
elif new == args.low:
low_set += 1
if row_changed:
touched_rows += 1
write_json(args.out_json, connections)
print(f"rows seen: {len(rows)}")
print(f"rows touched: {touched_rows}")
print(f"edges changed: {changed}")
print(f"edges set high: {high_set}")
print(f"edges set low: {low_set}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+240
View File
@@ -0,0 +1,240 @@
#!/usr/bin/env python3
"""Patch WolvenKit JSON exports of Cyberpunk traffic lane resources.
The game GPS planner appears to be native and data-driven over traffic lanes.
This tool changes lane metadata that is likely to feed edge-cost selection:
`maxSpeed` and, optionally, non-highway speed caps.
"""
from __future__ import annotations
import argparse
import copy
import json
from dataclasses import dataclass
from pathlib import Path
from typing import Any
FLAGS = {
"FromRoadSpline": 1,
"Bidirectional": 2,
"PatrolRoute": 4,
"Pavement": 8,
"Road": 16,
"Intersection": 32,
"NeverDeadEnd": 64,
"TrafficDisabled": 128,
"CrossWalk": 256,
"GPSOnly": 512,
"ShowDebug": 1024,
"Blockade": 2048,
"Yield": 4096,
"NoAIDriving": 8192,
"Highway": 16384,
"NoAutodrive": 32768,
}
@dataclass
class PatchStats:
files_seen: int = 0
files_changed: int = 0
lane_sets_seen: int = 0
lanes_seen: int = 0
lanes_changed: int = 0
highway_lanes_changed: int = 0
road_lanes_changed: int = 0
capped_lanes_changed: int = 0
def unwrap(value: Any) -> Any:
if isinstance(value, dict):
for key in ("value", "Value", "$value", "_value"):
if key in value and len(value) <= 3:
return value[key]
return value
def set_wrapped(container: dict[str, Any], key: str, value: Any) -> None:
current = container[key]
if isinstance(current, dict):
for value_key in ("value", "Value", "$value", "_value"):
if value_key in current:
current[value_key] = value
return
container[key] = value
def as_int(value: Any) -> int | None:
value = unwrap(value)
if isinstance(value, bool):
return None
if isinstance(value, int):
return value
if isinstance(value, float):
return int(value)
if isinstance(value, str):
try:
return int(value, 0)
except ValueError:
return None
return None
def looks_like_lane(value: Any) -> bool:
if not isinstance(value, dict):
return False
return "flags" in value and "maxSpeed" in value and (
"length" in value or "playerGPSInfo" in value or "laneNumber" in value
)
def has_flag(flags: int, flag: str) -> bool:
return (flags & FLAGS[flag]) == FLAGS[flag]
def patch_lane(
lane: dict[str, Any],
*,
highway_speed: int,
road_speed_floor: int,
non_highway_cap: int | None,
) -> tuple[bool, str | None]:
flags = as_int(lane.get("flags"))
speed = as_int(lane.get("maxSpeed"))
if flags is None or speed is None:
return False, None
if has_flag(flags, "TrafficDisabled") or has_flag(flags, "Blockade"):
return False, None
if has_flag(flags, "Pavement") or has_flag(flags, "CrossWalk"):
return False, None
is_highway = has_flag(flags, "Highway")
is_road = has_flag(flags, "Road") or has_flag(flags, "GPSOnly")
target = speed
reason: str | None = None
if is_highway and speed < highway_speed:
target = highway_speed
reason = "highway"
elif is_road and speed < road_speed_floor:
target = road_speed_floor
reason = "road"
if non_highway_cap is not None and not is_highway and target > non_highway_cap:
target = non_highway_cap
reason = "cap"
if target == speed:
return False, None
set_wrapped(lane, "maxSpeed", target)
return True, reason
def walk_and_patch(value: Any, stats: PatchStats, args: argparse.Namespace) -> None:
if isinstance(value, dict):
lanes = value.get("lanes")
if isinstance(lanes, list) and any(looks_like_lane(lane) for lane in lanes):
stats.lane_sets_seen += 1
for lane in lanes:
if not looks_like_lane(lane):
continue
stats.lanes_seen += 1
changed, reason = patch_lane(
lane,
highway_speed=args.highway_speed,
road_speed_floor=args.road_speed_floor,
non_highway_cap=args.non_highway_cap,
)
if changed:
stats.lanes_changed += 1
if reason == "highway":
stats.highway_lanes_changed += 1
elif reason == "road":
stats.road_lanes_changed += 1
elif reason == "cap":
stats.capped_lanes_changed += 1
for child in value.values():
walk_and_patch(child, stats, args)
elif isinstance(value, list):
for child in value:
walk_and_patch(child, stats, args)
def iter_json_files(path: Path) -> list[Path]:
if path.is_file():
return [path]
return sorted(path.rglob("*.json"))
def output_path(input_file: Path, input_root: Path, output_root: Path) -> Path:
if input_root.is_file():
return output_root
return output_root / input_file.relative_to(input_root)
def patch_file(input_file: Path, input_root: Path, output_root: Path, args: argparse.Namespace, stats: PatchStats) -> None:
stats.files_seen += 1
original = input_file.read_text(encoding="utf-8")
data = json.loads(original)
patched = copy.deepcopy(data)
before_changed = stats.lanes_changed
walk_and_patch(patched, stats, args)
changed = stats.lanes_changed != before_changed
if changed:
stats.files_changed += 1
destination = output_path(input_file, input_root, output_root)
if args.dry_run:
return
destination.parent.mkdir(parents=True, exist_ok=True)
if changed or args.copy_unchanged:
destination.write_text(
json.dumps(patched, indent=2, ensure_ascii=False) + "\n",
encoding="utf-8",
)
elif input_root.is_file():
destination.write_text(original, encoding="utf-8")
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser()
parser.add_argument("input", type=Path, help="WolvenKit JSON file or export directory")
parser.add_argument("output", type=Path, help="Patched JSON file or output directory")
parser.add_argument("--highway-speed", type=int, default=25)
parser.add_argument("--road-speed-floor", type=int, default=15)
parser.add_argument("--non-highway-cap", type=int, default=None)
parser.add_argument("--copy-unchanged", action="store_true")
parser.add_argument("--dry-run", action="store_true")
return parser.parse_args()
def main() -> int:
args = parse_args()
if not args.input.exists():
raise SystemExit(f"Input does not exist: {args.input}")
stats = PatchStats()
for input_file in iter_json_files(args.input):
patch_file(input_file, args.input, args.output, args, stats)
print(f"files seen: {stats.files_seen}")
print(f"files changed: {stats.files_changed}")
print(f"lane sets seen: {stats.lane_sets_seen}")
print(f"lanes seen: {stats.lanes_seen}")
print(f"lanes changed: {stats.lanes_changed}")
print(f"highway boosts: {stats.highway_lanes_changed}")
print(f"road boosts: {stats.road_lanes_changed}")
print(f"non-highway caps: {stats.capped_lanes_changed}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+375
View File
@@ -0,0 +1,375 @@
#!/usr/bin/env python3
"""Summarize EdgeWeightGPS route-result records from RED4ext logs."""
from __future__ import annotations
import argparse
import collections
import dataclasses
import json
import re
from pathlib import Path
from typing import Any
RE_TIMESTAMP = re.compile(r"^(\d{4}-\d\d-\d\d \d\d:\d\d:\d\d\.\d{3})")
RE_ELAPSED_MS = re.compile(r" \+(\d+)ms ")
RE_RECORD_BLOCK = re.compile(r"gpsResult_ptr28_rec40=\[(.*?)\]")
RE_RECORD = re.compile(r"(\d+):([0-9a-f]+),0x([0-9a-f]{8}),([^;\]]+)")
RE_JOB_COUNT = re.compile(r"GPSRouteJobBuild result call=(\d+).*?job_count50=(\d+)/0x([0-9a-f]+)")
RE_FIELD_DEC_HEX = re.compile(r"([A-Za-z0-9_]+)=(-?\d+)/0x([0-9a-fA-F]+)")
RE_FIELD_HEX = re.compile(r"([A-Za-z0-9_]+)=0x([0-9a-fA-F]+)")
RE_FIELD_DEC = re.compile(r"([A-Za-z0-9_]+)=(-?\d+)(?= |$)")
FLAGS = {
"FromRoadSpline": 1,
"Bidirectional": 2,
"PatrolRoute": 4,
"Pavement": 8,
"Road": 16,
"Intersection": 32,
"NeverDeadEnd": 64,
"TrafficDisabled": 128,
"CrossWalk": 256,
"GPSOnly": 512,
"ShowDebug": 1024,
"Blockade": 2048,
"Yield": 4096,
"NoAIDriving": 8192,
"Highway": 16384,
"NoAutodrive": 32768,
}
@dataclasses.dataclass
class SubmitInfo:
line_no: int
timestamp: str
elapsed_ms: int | None
call: int
fields: dict[str, int]
@dataclasses.dataclass
class RouteRecord:
index: int
handle: int
packed: int
parts: list[str]
@property
def low_class(self) -> int:
return self.packed & 0xFF
@dataclasses.dataclass
class RouteResult:
line_no: int
timestamp: str
elapsed_ms: int | None
query_id: int | None
submit_call: int | None
submit_ret_rva: int | None
fields: dict[str, int]
records: list[RouteRecord]
def bytes_le(value: int) -> tuple[int, int, int, int]:
return tuple((value >> (8 * index)) & 0xFF for index in range(4))
def flag_value(flags: Any) -> int:
if isinstance(flags, dict):
return int(flags.get("Value", flags.get("$value", 0)) or 0)
return int(flags or 0)
def lane_category(flags: int) -> str:
if flags & FLAGS["Highway"]:
return "highway"
if flags & FLAGS["GPSOnly"]:
return "gpsonly"
if flags & FLAGS["Road"]:
return "road"
if flags & FLAGS["Pavement"]:
return "pavement"
return "other"
def parse_timestamp(line: str) -> str:
match = RE_TIMESTAMP.search(line)
return match.group(1) if match else "<unknown>"
def parse_elapsed_ms(line: str) -> int | None:
match = RE_ELAPSED_MS.search(line)
return int(match.group(1)) if match else None
def parse_fields(line: str) -> dict[str, int]:
fields: dict[str, int] = {}
for match in RE_FIELD_DEC_HEX.finditer(line):
fields[match.group(1)] = int(match.group(2))
for match in RE_FIELD_HEX.finditer(line):
fields.setdefault(match.group(1), int(match.group(2), 16))
for match in RE_FIELD_DEC.finditer(line):
fields.setdefault(match.group(1), int(match.group(2)))
return fields
def load_lane_lookup(path: Path | None) -> dict[int, dict[str, Any]]:
if not path:
return {}
data = json.loads(path.read_text(encoding="utf-8"))
lanes = data["Data"]["RootChunk"]["data"]["lanes"]
lookup: dict[int, dict[str, Any]] = {}
for index, lane in enumerate(lanes):
node_hash = lane.get("nodeRefHash")
if node_hash is None:
continue
flags = flag_value(lane.get("flags"))
lookup[int(node_hash)] = {
"index": index,
"flags": flags,
"category": lane_category(flags),
"speed": flag_value(lane.get("maxSpeed")),
"length": lane.get("length"),
}
return lookup
def parse_route_records(block: str) -> list[RouteRecord]:
records: list[RouteRecord] = []
for record_match in RE_RECORD.finditer(block):
pieces = record_match.group(4).split(",")
if len(pieces) < 4:
continue
records.append(
RouteRecord(
index=int(record_match.group(1)),
handle=int(record_match.group(2), 16),
packed=int(record_match.group(3), 16),
parts=pieces,
)
)
return records
def iter_route_results(path: Path) -> tuple[dict[int, SubmitInfo], list[RouteResult], list[int]]:
submits: dict[int, SubmitInfo] = {}
results: list[RouteResult] = []
job_counts: list[int] = []
for line_no, line in enumerate(path.read_text(encoding="utf-8", errors="replace").splitlines(), start=1):
fields = parse_fields(line)
if "hook GPSQuerySubmit 0x70a42c" in line:
call = fields.get("call")
if call is not None:
submits[call] = SubmitInfo(
line_no=line_no,
timestamp=parse_timestamp(line),
elapsed_ms=parse_elapsed_ms(line),
call=call,
fields=fields,
)
job_match = RE_JOB_COUNT.search(line)
if job_match:
job_counts.append(int(job_match.group(2)))
block_match = RE_RECORD_BLOCK.search(line)
if not block_match:
continue
records = parse_route_records(block_match.group(1))
if not records:
continue
results.append(
RouteResult(
line_no=line_no,
timestamp=parse_timestamp(line),
elapsed_ms=parse_elapsed_ms(line),
query_id=fields.get("queryId"),
submit_call=fields.get("submitCall"),
submit_ret_rva=fields.get("submitRetRva"),
fields=fields,
records=records,
)
)
return submits, results, job_counts
def summarize_route_result(route: RouteResult, lane_lookup: dict[int, dict[str, Any]]) -> tuple[dict[str, Any], int]:
class_counts = collections.Counter(record.low_class for record in route.records)
category_counts: collections.Counter[str] = collections.Counter()
category_lengths: collections.Counter[str] = collections.Counter()
speed_lengths: collections.Counter[int] = collections.Counter()
unmatched = 0
for record in route.records:
lane = lane_lookup.get(record.handle)
if not lane:
unmatched += 1
continue
category = lane["category"]
length = float(lane.get("length") or 0.0)
category_counts[category] += 1
category_lengths[category] += length
speed_lengths[int(lane["speed"])] += length
total_length = sum(category_lengths.values())
summary = {
"class_counts": class_counts,
"category_counts": category_counts,
"category_lengths": category_lengths,
"speed_lengths": speed_lengths,
"total_length": total_length,
"unmatched": unmatched,
}
return summary, len(route.records) - unmatched
def format_counter(counter: collections.Counter[Any], limit: int | None = None, digits: int | None = None) -> str:
items = counter.most_common(limit)
parts = []
for key, value in items:
if digits is None:
parts.append(f"{key}:{value}")
else:
parts.append(f"{key}:{value:.{digits}f}")
return "{" + ", ".join(parts) + "}"
def print_per_route(
path: Path,
submits: dict[int, SubmitInfo],
route_results: list[RouteResult],
lane_lookup: dict[int, dict[str, Any]],
) -> None:
print(" per-route results:")
for ordinal, route in enumerate(route_results, start=1):
submit = submits.get(route.submit_call) if route.submit_call is not None else None
summary, matched = summarize_route_result(route, lane_lookup)
span = route.fields.get("gpsResult_u20")
submit_fields = submit.fields if submit else {}
ret_rva = route.submit_ret_rva
ret_text = f"0x{ret_rva:x}" if ret_rva is not None else "?"
submit_ms = submit.elapsed_ms if submit else None
result_ms = route.elapsed_ms
duration_ms = result_ms - submit_ms if submit_ms is not None and result_ms is not None else None
submit_marker = f"+{submit_ms}ms" if submit_ms is not None else "?"
result_marker = f"+{result_ms}ms" if result_ms is not None else "?"
duration_marker = f"{duration_ms}ms" if duration_ms is not None else "?"
print(
f" route#{ordinal} qid={route.query_id} submitCall={route.submit_call} "
f"submit={submit_marker} result={result_marker} duration={duration_marker} line={route.line_no} "
f"ret={ret_text} records={len(route.records)} spanU20={span} matched={matched}"
)
if submit_fields:
print(
" query "
f"f08=0x{submit_fields.get('query_f08', 0):x} "
f"f0c={submit_fields.get('query_f0c')} "
f"fcc={submit_fields.get('query_fcc')}"
)
if lane_lookup:
category_lengths = summary["category_lengths"]
total = summary["total_length"]
print(
" resource "
f"segments={format_counter(summary['category_counts'])} "
f"length={format_counter(category_lengths, digits=1)} "
f"total={total:.1f} "
f"speedLength={format_counter(summary['speed_lengths'], limit=6, digits=1)} "
f"unmatched={summary['unmatched']}"
)
print(f" routeClasses={format_counter(summary['class_counts'])}")
def summarize(path: Path, lane_lookup: dict[int, dict[str, Any]]) -> None:
submits, route_results, job_counts = iter_route_results(path)
routes = 0
records = 0
first_byte = collections.Counter()
byte_positions: list[collections.Counter[int]] = [collections.Counter() for _ in range(4)]
patterns = collections.Counter()
segments = collections.Counter()
class_categories: dict[int, collections.Counter[str]] = collections.defaultdict(collections.Counter)
class_flags: dict[int, collections.Counter[int]] = collections.defaultdict(collections.Counter)
class_speed: dict[int, collections.Counter[int]] = collections.defaultdict(collections.Counter)
matched_handles = 0
unmatched_handles = 0
for route in route_results:
route_records = 0
for record in route.records:
route_records += 1
records += 1
bytes_tuple = bytes_le(record.packed)
class_id = bytes_tuple[0]
patterns[bytes_tuple] += 1
first_byte[class_id] += 1
for index, byte in enumerate(bytes_tuple):
byte_positions[index][byte] += 1
segments[(record.handle, class_id)] += 1
if lane_lookup:
lane = lane_lookup.get(record.handle)
if lane:
matched_handles += 1
class_categories[class_id][lane["category"]] += 1
class_flags[class_id][lane["flags"]] += 1
class_speed[class_id][lane["speed"]] += 1
else:
unmatched_handles += 1
if route_records:
routes += 1
print(f"{path}:")
print(f" routes={routes} records={records}")
if job_counts:
sorted_counts = sorted(job_counts)
p50 = sorted_counts[len(sorted_counts) // 2]
p90 = sorted_counts[min(len(sorted_counts) - 1, int(len(sorted_counts) * 0.9))]
avg = sum(sorted_counts) / len(sorted_counts)
print(
" job_count50 "
f"n={len(sorted_counts)} min={sorted_counts[0]} p50={p50} "
f"p90={p90} max={sorted_counts[-1]} avg={avg:.1f}"
)
print(" low-byte class counts:", dict(first_byte.most_common()))
if lane_lookup:
print(f" matched route records to lane hashes: {matched_handles}/{matched_handles + unmatched_handles}")
print(" class -> resource categories:")
for class_id, count in first_byte.most_common():
categories = dict(class_categories[class_id].most_common())
speeds = dict(class_speed[class_id].most_common(8))
flags = dict(class_flags[class_id].most_common(8))
print(f" {class_id}: categories={categories} speeds={speeds} flags={flags}")
print_per_route(path, submits, route_results, lane_lookup)
for index, counter in enumerate(byte_positions):
print(f" byte{index} counts:", dict(counter.most_common(12)))
print(" packed metadata patterns:")
for pattern, count in patterns.most_common(24):
print(f" {pattern}: {count}")
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("--traffic-json", type=Path)
parser.add_argument("logs", nargs="+", type=Path)
args = parser.parse_args()
lane_lookup = load_lane_lookup(args.traffic_json)
for path in args.logs:
summarize(path, lane_lookup)
return 0
if __name__ == "__main__":
raise SystemExit(main())
+62
View File
@@ -0,0 +1,62 @@
#!/usr/bin/env python3
"""Write EdgeWeightGPS momentum penalty presets as one raw float32 value."""
from __future__ import annotations
import argparse
import struct
from pathlib import Path
DEFAULT_INSTALL_PATH = Path(
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/momentum_weights.bin"
)
PRESETS: dict[str, float] = {
"vanilla": 0.0,
"legacy-default": 8.0,
"mild": 4.0,
"strong": 16.0,
"default": 80.0,
"silly": 80.0,
"overstrong": 160.0,
"pathological": 250.0,
}
def parse_penalty(text: str) -> float:
value = float(text)
if not 0.0 <= value <= 1000.0:
raise argparse.ArgumentTypeError("penalty must be between 0 and 1000")
return value
def write_weight(path: Path, value: float) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_bytes(struct.pack("<f", value))
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="default")
parser.add_argument("--value", type=parse_penalty, help="explicit fixed edge penalty")
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
args = parser.parse_args()
if args.preset_dir:
for name, value in PRESETS.items():
path = args.preset_dir / f"{name}.bin"
write_weight(path, value)
print(f"{path}: {value}")
return 0
value = args.value if args.value is not None else PRESETS[args.preset]
write_weight(args.output, value)
print(f"{args.output}: {value}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+60
View File
@@ -0,0 +1,60 @@
#!/usr/bin/env python3
"""Write EdgeWeightGPS solver highway presets as one raw float32 value."""
from __future__ import annotations
import argparse
import struct
from pathlib import Path
DEFAULT_INSTALL_PATH = Path(
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/solver_weights.bin"
)
PRESETS: dict[str, float] = {
"vanilla": 1.00,
"default": 0.80,
"mild": 0.90,
"strong": 0.70,
"proof-highway-cheap": 0.35,
"highway-expensive": 3.00,
}
def parse_multiplier(text: str) -> float:
value = float(text)
if not 0.0 < value < 20.0:
raise argparse.ArgumentTypeError("multiplier must be greater than 0 and less than 20")
return value
def write_weight(path: Path, value: float) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_bytes(struct.pack("<f", value))
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="default")
parser.add_argument("--value", type=parse_multiplier, help="explicit highway multiplier")
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
args = parser.parse_args()
if args.preset_dir:
for name, value in PRESETS.items():
path = args.preset_dir / f"{name}.bin"
write_weight(path, value)
print(f"{path}: {value}")
return 0
value = args.value if args.value is not None else PRESETS[args.preset]
write_weight(args.output, value)
print(f"{args.output}: {value}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
+58
View File
@@ -0,0 +1,58 @@
#!/usr/bin/env python3
"""Write EdgeWeightGPS spatial weight presets as five raw float32 values."""
from __future__ import annotations
import argparse
import struct
from pathlib import Path
DEFAULT_INSTALL_PATH = Path(
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/spatial_weights.bin"
)
PRESETS: dict[str, tuple[float, float, float, float, float]] = {
"vanilla": (1.0, 1.0, 1.0, 1.0, 1.0),
"current": (0.62, 1.0, 1.20, 1.35, 1.05),
"highway-free": (0.25, 1.10, 1.35, 1.60, 1.15),
"highway-expensive": (3.0, 1.0, 1.0, 1.0, 1.0),
"surface-extreme": (0.45, 1.20, 1.80, 2.50, 1.30),
}
def parse_weights(text: str) -> tuple[float, float, float, float, float]:
values = tuple(float(part) for part in text.split(","))
if len(values) != 5:
raise argparse.ArgumentTypeError("expected five comma-separated floats")
return values # type: ignore[return-value]
def write_weights(path: Path, values: tuple[float, float, float, float, float]) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_bytes(struct.pack("<5f", *values))
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="current")
parser.add_argument("--weights", type=parse_weights, help="five comma-separated floats: H,R,G,P,U")
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
args = parser.parse_args()
if args.preset_dir:
for name, values in PRESETS.items():
write_weights(args.preset_dir / f"{name}.bin", values)
print(f"{args.preset_dir / f'{name}.bin'}: {values}")
return 0
values = args.weights if args.weights is not None else PRESETS[args.preset]
write_weights(args.output, values)
print(f"{args.output}: {values}")
return 0
if __name__ == "__main__":
raise SystemExit(main())