arcattack and Claude Opus 5
33ca99eb69
Input-audit cause #1 : revive the Avionics power bank + add the unhandled-message trace
...
THE CLASS OF BUG. A default-constructed Receiver::MessageHandlerSet is a total
blackhole: entryCount 0 and NO parent chain, so Find() returns NullHandler for
every id and Receiver::Receive dropped the message with no log, no counter,
nothing. docs/INPUT_PATH_AUDIT.md ranked this systemic cause #1 ; running its own
lint finds SEVEN such sets (Sensor, Searchlight, ThermalSight, Gyroscope,
MechTech, SubsystemMessageManager, Torso). It is also why generators cannot be
switched off (#53 ) -- same shape.
FIX 1 -- Sensor / Avionics (the big one). The streamed mappings aim 108 records
across the 18 mechs at it: the MFD2 ENG1 power bank, 6 clickable buttons plus keys
F5-F9 (route Avionics power to generators A-D, gen mode, coolant cut). All
silently swallowed. Sensor needed NO handlers of its own -- ids 4-8 already live
on PoweredSubsystem, which chains HeatSink for id 3, covering the whole 3-8 range
those buttons send. It only ever needed to CHAIN, which is exactly why the
byte-identical bank on ENG2 works (Myomers chains, myomers.cpp:88-100; Sensor did
not). Added Sensor::GetMessageHandlers() with the same function-local-static
idiom and pointed DefaultData at it instead of the empty set.
VERIFIED LIVE (scratchpad/avionics.py -- pages MFD2 and presses the bank):
[gensel] Avionics -> GeneratorA (tapped) ... B, C, D
[gensel] Avionics mode -> 2
i.e. Avionics now behaves exactly like Myomers. 24 handler hits, 0 unhandled.
FIX 2 -- the standing guard. Receiver::Receive now logs once per (class,
message id) pair when no handler is found: '[msg] UNHANDLED: <class> has no
handler for message id N -- silently dropped (is its MessageHandlerSet chained?)'.
Once-per-pair on purpose, since some ids broadcast every frame. This one line
would have printed Avionics, Searchlight, ThermalSight, crouch and all four
generator buttons on the first boot instead of costing us months of player
reports. Uses SharedData::derivedClasses -> Derivation::className.
DEFERRED, with reasons (not guessed at): Searchlight's ToggleLamp body exists but
is unreachable -- it needs a correctly-typed forwarder (Receiver::Handler is
void(const Message*); ToggleLamp is Logical(Message&), so a cast would be UB that
happens to work on x86) AND an id check, because its id 3 collides with HeatSink's
ToggleCooling and I have not traced whether PowerWatcher's chain reaches HeatSink.
#53 needs more than chaining: ToggleGeneratorOnOff @004b1ed0 has no body at all.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com >
Claude-Session: https://claude.ai/code/session_0166KTsC7ADm7VXEi1HF1jNg
2026-07-25 10:05:57 -05:00
..
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-14 07:26:12 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 15:43:08 -05:00
2026-07-25 10:05:57 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 20:05:44 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-12 20:04:29 -05:00
2026-07-12 20:04:29 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-15 15:52:35 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 22:19:50 -05:00
2026-07-08 14:43:32 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-25 08:33:22 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-25 07:48:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 14:43:32 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-12 20:04:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-25 09:04:07 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 14:43:32 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-13 08:14:12 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 09:56:55 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-13 08:14:12 -05:00
2026-07-13 08:14:12 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-24 20:48:31 -05:00
2026-07-25 08:33:22 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-08 14:43:32 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 15:43:08 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 09:56:55 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 21:39:47 -05:00
2026-07-18 11:32:54 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 21:32:12 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 20:22:01 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 20:10:11 -05:00
2026-07-18 08:44:01 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-08 14:50:12 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-24 19:19:21 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 15:32:24 -05:00
2026-07-11 11:55:25 -05:00
2026-07-11 16:21:37 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 15:32:24 -05:00
2026-07-08 14:43:32 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-11 13:06:29 -05:00
2026-07-13 08:14:12 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-25 09:19:10 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-25 08:33:22 -05:00
2026-07-07 20:10:11 -05:00
2026-07-07 20:10:11 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 13:06:29 -05:00
2026-07-11 15:32:24 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00
2026-07-07 21:25:48 -05:00