From 15cc891d7ef95e14189eb734fcb068b2b2d7b9b6 Mon Sep 17 00:00:00 2001 From: Joseph <162703152+josephnef@users.noreply.github.com> Date: Thu, 11 Jun 2026 16:52:07 +0300 Subject: [PATCH] cleanup: drop internal-tooling references and finished-investigation scaffolds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The codebase is open source and must be self-explanatory; comments referenced an internal notes system (kaeru), a TODO.md and a generator script that were never committed, and carried debugging scaffolds from the now-finished 8814 port effort. All factual content is preserved in-place; only the pointers and dead scaffolds go: - comments: kaeru citations rewritten as self-contained statements (8814 RF C/D write-only, 8821 ch100 second-channel-set wedge); TODO.md pointers rewritten (kernel canary-diff provenance); /tmp/rtw88_init.seq + tools/gen_rtw88_mimic.py pointer dropped - DEVOURER_OOT_REPLAY + hal/Hal8814_PostFwdlReplay.h (135 KB usbmon replay table): superseded by the kernel-faithful fwdl bracket - DEVOURER_8814_DEINIT_BEFORE_INIT: never-validated experimental scaffold; the warm-state wedge it targeted no longer reproduces - DEVOURER_PROBE_MCUFWDL demo probe and the unconditional 18-line "8814A TX-state" init dump: TX-investigation diagnostics - tests/README.md: stale "known broken cells" claims replaced with the current operative caveat (88XXau beacon-inject kernel-TX cells) - docs/8814-port-audit.md: investigation-process report (pending- validation plans, work-package refs) — history lives in git Smoke-tested on hardware after the init-path removals: 8814 TX ch6 6238 frames on-air at the witness. Co-Authored-By: Claude Opus 4.8 --- CMakeLists.txt | 1 - demo/main.cpp | 13 - docs/8814-port-audit.md | 168 -- hal/Hal8814_PostFwdlReplay.h | 4495 --------------------------------- src/FirmwareManager.cpp | 3 +- src/HalModule.cpp | 125 +- src/Iqk8814a.cpp | 7 +- src/RadioManagementModule.cpp | 17 +- tests/README.md | 37 +- 9 files changed, 35 insertions(+), 4831 deletions(-) delete mode 100644 docs/8814-port-audit.md delete mode 100644 hal/Hal8814_PostFwdlReplay.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e715d5..b4e274c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,6 @@ add_library(WiFiDriver hal/Hal8812PwrSeq.h hal/Hal8812a_TxPwrTrack.cpp hal/Hal8812a_TxPwrTrack.h - hal/Hal8814_PostFwdlReplay.h hal/Hal8814PwrSeq.c hal/Hal8814PwrSeq.h hal/Hal8821APwrSeq.c diff --git a/demo/main.cpp b/demo/main.cpp index efe9d24..a6dcc4c 100644 --- a/demo/main.cpp +++ b/demo/main.cpp @@ -337,19 +337,6 @@ int main() { rc = libusb_claim_interface(dev_handle, 0); assert(rc == 0); - /* Probe MCUFWDL immediately after claim, before any other chip access. - * Useful for diagnosing post-rtw88-unbind takeover: shows whether chip - * state has transitioned away from rtw88's 0x0060e078 (fw running). */ - if (std::getenv("DEVOURER_PROBE_MCUFWDL")) { - uint32_t mcufwdl = 0; - for (int i = 0; i < 5; ++i) { - int got = libusb_control_transfer(dev_handle, 0xC0, 5, 0x0080, 0, - reinterpret_cast(&mcufwdl), - 4, 500); - logger->info("PROBE MCUFWDL[{}]: rc={} val=0x{:08x}", i, got, mcufwdl); - } - } - WiFiDriver wifi_driver(logger); auto rtlDevice = wifi_driver.CreateRtlDevice(dev_handle); g_rtl_device = rtlDevice.get(); diff --git a/docs/8814-port-audit.md b/docs/8814-port-audit.md deleted file mode 100644 index 7afdaea..0000000 --- a/docs/8814-port-audit.md +++ /dev/null @@ -1,168 +0,0 @@ -# RTL8814AU port audit — devourer vs aircrack-ng/rtl8814au - -Systematic source-level comparison of devourer against its kernel reference -(`aircrack-ng/rtl8814au` @ `8926414`, `CONFIG_RTL8814A=y`, USB, BT/WoWLAN off, -module-param defaults), motivated by 8814 TX being silent on-air and by the -suspicion that the port carries mistakes. Ten work packages covered every -devourer 8814 code path; each finding below was verified against both sources -at the cited lines before classification. Several were found independently by -two blind audit passes. - -Classes: **C1** unambiguous porting error (fixed) · **C2** intentional -adaptation (kept, documented) · **C3** kernel feature not ported (risk-assessed) -· **C4** ambiguous (documented experiment, no speculative fix). - -Method: static function-pair diff with kernel `#ifdef`s resolved per the real -build config, plus table-parity regeneration. usbmon/canary lenses and on-air -validation are listed under *Hardware validation* — **none of the fixes below -have been hardware-validated yet**. - -## C1 fixes (27 commits, each independently buildable) - -Ranked by suspected relevance to the motivating "USB accepts, 0 frames on air" -symptom. - -| # | Commit | Finding | Kernel ref | -|---|---|---|---| -| 1 | `c5bb4ad` | 8812 `_InitBurstPktLen` body ran on 8814: its `0x456=0x70` (AMPDU_MAX_TIME on 8812) clobbered `REG_TXPKTBUF_BCNQ1_BDNY_8814A` — the TX-buffer boundary programmed to 0x7F6 moments earlier. Ported the 8814 body (FAST_EDCA, RXDMA burst mode, `0xf002=0` "avoid usb 3.0 H2C fail", LDPC-pre-TX off); removed PIFS-zeroing, USTIME, MAX_AGGR 0x1f1f, RSV_CTRL/ARFR/0xf050/0x288/0x289 8812-isms | `usb_halinit.c:122-166` | -| 2 | `f3188ea` | The 5GHz CCK→OFDM TX clamp gated on `_channel.Channel` — a member **never assigned anywhere** (read of indeterminate memory; the 5G-TX fix fired nondeterministically per build/run). Channel now stored in `SetMonitorChannel`; member value-initialised | `core/rtw_mlme_ext.c:1058` (kernel keys off maintained `cur_channel`) | -| 3 | `2931ad6` | FW-boot poll was vacuous: accepted `byte0==0x78` of REG_MCUFWDL — which devourer itself writes in the 0x6078 kick — so a never-booted 3081 looked like success. Now requires chip-set `CPU_DL_READY` (BIT15) and errors loudly on timeout. **A failure here on a virgin chip is the smoking gun for the TX silence** | `rtl8814a_hal_init.c:649-656` | -| 4 | `dbeb720` | 8814 RF reads used the 8812 3-wire serial mechanism; the kernel reads via per-path direct BB shadow blocks (`0x2800/0x2C00/0x3800/0x3C00 + reg*4`). Paths C/D returned garbage from the serial path, so every masked RF RMW (channel + BW writes of RF 0x18) corrupted C/D tuning on **every channel set**. Overturns the old "C/D write-only by design" note | `rtl8814a_phycfg.c:86-122` | -| 5 | `1a8ea83` | Crystal-cap trim wrote 8812 bit positions on every chip — on 8814 the XTAL trim landed 4 bits high (real field untouched, `0x2C[30:27]` clobbered) ⇒ uncorrected carrier-frequency offset on TX+RX. Also fixed: 8821's distinct mask, the `(uint8_t)` truncation of the 12-bit pattern (hurt 8812 too), and the missing RCK1 A→B/C/D RC-trim sync | `phydm_cfotracking.c:230-249`, `rtl8814a_rf6052.c:143-146` | -| 6 | `993e0d9` | `USTIME_TSF/EDCA` forced to 0x50 (8812's 80MHz tick); 8814 MAC runs 100MHz, table value 0x64 — all µs-derived TX timing ran ~25% fast | `usb_halinit.c:577-579` (writes commented out) | -| 7 | `cffeba5` | `NAV_UPPER` left 0 after the init zero-write (kernel restores `ceil(30000/128)=0xEB`) — MAC honoured arbitrarily long NAV; can defer TX indefinitely on busy air | `rtl8814a_hal_init.c:3794-3807` | -| 8 | `8b45e23` | USB TX-agg block-descriptor config never armed (`TDECTRL[7:4]=3`, `0x20B=0x06` — kernel always does) | `usb_halinit.c:654-676` | -| 9 | `0cbeea5` | Per-byte aggregation limits `0x4CA/0x4CB=0x36` from `_InitMacConfigure_8814A` tail (devourer ported the old 8812 pair the kernel folded away) | `usb_halinit.c:487-554` | -| 10 | `e834ce5` | Bulk-IN host buffer 16KB vs the 20KB chip-side RX-aggregation threshold (kernel: 32KB × 8 async URBs). Oversize aggregates split with no short packet → tail parsed as a descriptor, remainder dropped. *Companion to #1, which introduced the kernel 20K threshold* | `rtl8814a_recv.h:25` | -| 11 | `f3b8c8c` | 5G EFUSE PG diff block parsed with the 2.4G two-bytes-per-Ntx shape — every field from relative byte 16 wrong-sourced (BW20/40 3S/4S ↔ OFDM bytes; BW80 diffs read BW160 nibbles). Found independently by two passes | `hal_com_phycfg.c:848-953` | -| 12 | `b3929ef` | Per-Ntx power diffs are **cumulative** upstream (MCS16-31 = `[0]+[1]+[2]`; VHT2SS+ adds `[1]`); devourer used exclusive windows, and 5G had no VHT clauses at all | `hal_com_phycfg.c:2490-2601` | -| 13 | `95d1b97` | Kernel 8814 RFE decision tree ported: unburnt/BIT7 `0xCA` → rfe_type **1** on AU (was 0 via 8812 parse), `&0x7F`, amplifier state derived from rfe_type. Removed the now-wrong `GetPhyContext` 0→1 patch. *Runtime-inert on the CF-938AC (0xCA=0x01 → 1 either way)* | `rtl8814a_hal_init.c:1474-1568` | -| 14 | `c9394a4` | 8812 TX-power-training writes ran on 8814 each channel set (kernel 8814 has none; paths B/C/D collapsed last-writer-wins onto 0xE54) | `rtl8814a_phycfg.c:636-673` | -| 15 | `559f39a` | IGI floor wrote paths A/B only — 4dB initial-gain imbalance vs C/D on the 4-path chip (RX/MRC skew) | phydm `ODM_IC_AC_4SS` DIG | -| 16 | `217fb76` | Power-seq poll retry 10ms vs kernel `udelay(10)` — failing poll cost ~50s instead of ~50ms | `HalPwrSeqCmd.c:134` | -| 17 | `be22303` | Deinit-before-init scaffold made faithful to `hal_carddisable_8814`: `REG_CR=0` stop-rx prologue, gated on the warm-boot detect (kernel never feeds `ACT_TO_CARDEMU` to a cold chip), kernel's constant `0xFE` cut mask | `usb_halinit.c:1386-1455` | -| 18 | `5dde6cc` | `0x577=0x03` secondary-CCA control port | `usb_halinit.c:1250` | -| 19 | `abe4988` | `USB_AGG_EN` (0x283 bit7) now explicitly cleared like the kernel RX-agg setup | `usb_halinit.c:705-727` | -| 20 | `9c38f80` | VHT radiotap bandwidth never reached the descriptor (MHz literals compared against `CHANNEL_WIDTH` enums) — every VHT frame TXed at 20MHz | `rtl8814a_xmit.c:443` | -| 21 | `e280b92` | rfe_type-2 5G pinmux constant `0x37173717` (copy slip; latent — rfe-2 boards only) | `PHY_SetRFEReg8814A` | -| 22 | `e20afaa` | `REG_USB_HRPWM` init write skipped on 8814 (kernel has it commented out) | `usb_halinit.c:1354` | -| 23 | `6021880` | fw version logged from double-offset header read (always 0; blob is v33, md5-identical to kernel's) | `rtl8814a_hal.h:76` | -| 24 | `10927e6` | RX parse hardening: PHY-status memcpy gated (payload bytes were decoded as RSSI/EVM/SNR on physt-less frames + tail over-read), short-fragment guard, 8814 DWORD4 trap documented, spurious log demoted | `usb_ops_linux.c:179` | -| 25 | `3c958ce` | fwdl comment register labels corrected (0x0230 is FIFOPAGE_INFO_1/HPQ count, 0x0210 TXDMA_STATUS, …) — debug-risk only | `rtl8814a_spec.h` | -| 26 | `3597aef` | Hygiene: `0x670` labeled REG_CAMCMD clear-all (was "NAV-related"); dead BIT0 LLT port removed with the adjudication recorded | — | -| 27 | `334d04f` | Docs: stale `DEVOURER_FORCE_TXPWR` removed (only `DEVOURER_SKIP_TXPWR` exists) | — | - -## Key negative results (settled — don't re-chase) - -- **The kernel sends ZERO H2C commands in monitor bring-up/channel-set/inject** - under this config (exhaustive caller-traced inventory; `RegFWOffload` is - never assigned). Devourer's zero-H2C is *not* a divergence; missing H2C - cannot explain "kernel TX works, devourer silent". The surviving FW axes are - boot verification (#3, now instrumented) and the rtw88-trace download - protocol itself. -- **IQK-off in monitor is parity**: the kernel's init IQK block is commented - out, the channel-set trigger requires `bNeedIQK` (join/AP/DFS only), and the - watchdog IQK is `#if 0`. -- **PHY tables are byte-identical** (vendored inputs match the kernel tree; - generated arrays in parity) and the table walker + `check_positive` are - semantically exact — including both drivers ignoring cond2/3/4 (GLNA/GPA/ - ALNA/APA never select 8814 table branches in either tree). -- **PWR_SEQ arrays + parser semantics** are byte-identical/faithful. The - historical "cut-mask filter broke fwdl" mystery has a mechanism: the kernel - passes the chip-independent **constant** `~PWR_CUT_TESTCHIP_MSK` (0xFE) — - deriving the mask from EEPROM cut_version (cut ≥ H overflows past BIT7 → - mask 0) silently no-ops the whole flow. -- **Auto-LLT trigger is BIT16** of 0x208 (the only structured in-tree - definition; HW-verified 2ms self-clear). The vendor BIT0 function polls a - stale variable and verifies nothing. Invariant: FIFOPAGE_INFO/RQPN latch - immediately precedes the BIT16 trigger, both after fwdl (devourer's - rsvd-page fwdl transport requires post-fwdl LLT, unlike the kernel's DDMA - position). -- **TX descriptor field map**: every field devourer sets has identical - (dword, bit, width) in the `_8812` and `_8814A` macro sets; checksum domain - (16 LE16 words, dwords 8-9 excluded) exact; QSEL/MACID/EP mapping exact. -- Kernel `ip link down` does **not** HW-deinit (call commented out, IPS off); - virsh surprise-removal also skips card-disable — only rmmod/clean-unbind - powers the chip down. Devourer has no teardown at all (C3): the env-gated - deinit-before-init scaffold is the mitigation. - -## Residual C3 risks (not ported; assessed) - -| Area | Risk | -|---|---| -| Thermal power-tracking + LCK (8814) — kernel watchdog compensates TX AGC/BB-swing per thermal delta with **no link gating** | TX power drifts as the chip heats during sustained injection (long-range video duty cycles); LCK never re-runs. Highest-value C3 to port next | -| DIG / CCK-PD / EDCCA / FA-reset watchdog slices | IGI frozen at floor; CCK PD fixed; EDCCA thresholds stay at table defaults — RX adaptation in noisy environments (watchdog exists but is env-gated off for measured USB-contention reasons; ports only FA+DIG) | -| `phy_SpurCalibration_8814A` (skip premise was wrong) | ch153 NBI/CSI (any rfe) and ch140 swap (rfe 0) are live at 20MHz — RX spur masking missing on those channels | -| Vendor-request single-shot (kernel: 10× retry + io-error escalation) | One EP0 hiccup aborts a session (read) or silently skips a register write — credible #36 (passthrough-cycle) contributor | -| Sync 1×32KB polling read (kernel: 8×32KB async URBs) | IN-token gaps while parsing + 50ms error sleep → RX loss under load only | -| `Index5G_BW80_Base` (kernel averages adjacent BW40 groups) | 80MHz TXAGC base off by up to half the inter-group delta — 80MHz only | -| 0xC9 TRX-antenna option / USB2→2T4R policy | TX nss policy on USB2 ports / non-0xFF 0xC9 boards | -| TX-power validity check (wrong offset, throws on blank maps; kernel falls back to default tables) | Crash on blank-TX-power EFUSE boards | -| Skip-fwdl-if-running (`MCUFWDL==0x78`) has no kernel counterpart | Warm runs skip ALL fw arming. Entangled with the deinit experiment (scaffold makes the chip cold → skip not taken) | -| Bulk-boundary padding (kernel pads 8B via PKT_OFFSET when `(40+sz)%512==0`; devourer sends exact-multiple + ZLP) | Deterministic per frame size; a 472/984-byte payload sweep settles chip ZLP tolerance | -| EFUSE physical walk 512 vs 1024; EFUSE mask unapplied; 0x8129 ID-check (kernel dropped it) | Odd/heavily-reprogrammed boards only | - -## C4 experiments (no speculative fixes made) - -1. **HWSEQ for injected frames**: this kernel does `HWSEQ_EN=0` + copies the - frame seqnum (`monitor_overwrite_seqnum=0`); devourer does `HWSEQ_EN=1` - (matches the 88XXau byte-match instead — two GPL trees disagree, same story - for `DATA_RETRY_LIMIT` 12-vs-0). HW currently overwrites injected seqnums — - matters for wfb-ng-style consumers. Experiment: flip to kernel behaviour, - verify on-air seq == injected seq, watch for TX regressions. -2. **HWSEQ_CTRL byte3**: devourer forces 0xFF via 32-bit RMW (source intent); - the working kernel chip ends at 0x03 (its 8-bit write no-ops on silicon). - Experiment: drop the force, byte-match the kernel chip state. -3. **0x283 bit7 reset value** — one vendor-read on live HW settles whether the - new explicit clear ever mattered. -4. **RX-wedge falsification**: re-run 8814 RX under dense traffic with the - 32KB buffer (and optionally the old ≤12K threshold) to see whether the - split-aggregate mechanism was the "~10 frames then bulk-IN timeout" wedge. -5. **rtw88-mimic ops with no vendor counterpart** (`0x0064/0x004C/0x00EC/ - 0x1103/0x1330/0x01A0/0x0009` + `0x10C2` BIT5): resolvable only against the - rtw88 source; candidates for byte-state diffing if the FW-boot check (#3) - fails on a virgin chip. - -## Coverage map - -| Devourer 8814 path | Audited in | -|---|---| -| Init flow order + warm-boot detect (`HalModule::rtl8812au_hal_init`) | WP3 (45-item ordered checklist) | -| Power-on / fwdl mimic / FW vars / H2C (`FirmwareManager`) | WP2, WP7 | -| Queue/page/EP/boundary, MAC config, EDCA/retry/agg/beacon/burst | WP1 | -| Deinit scaffold + PWR_SEQ arrays + parser | WP4 | -| TX descriptor + radiotap mapping + USB xmit rules (`RtlJaguarDevice`, `FrameParser` TX) | WP5 | -| Channel/BW/band/RFE/TXAGC/power chain (`RadioManagementModule`) | WP6 | -| EFUSE machinery + derived config (`EepromManager`) | WP7 | -| PHY tables + walker (`PhyTableLoader`, `hal/phydm/rtl8814a/*`) | Lens D + WP8 | -| DM defaults, watchdog slices, IQK (`PhydmWatchdog`, `Iqk8814a`) | WP9 | -| RX descriptor/aggregation/filters + USB primitives (`FrameParser` RX, `RtlUsbAdapter`) | WP10 | - -## Hardware validation (pending — user-assisted) - -1. `cmake --build build -j` — done for every commit. -2. **Virgin-chip ch6 on-air check** (AR9271 sniffer, fresh Vbus power-cycle): - watch the new log lines — `8814A firmware boot NOT confirmed` = FW-arming - axis confirmed; frames on air = the BCNQ1/USTIME/NAV cluster was the gate. -3. Canary re-diff at ch6 + ch36 (extend set with 0x2C, 0x456, 0x55C/0x638, - 0x652, 0x577, 0x4CA/B, 0x208/0x20B, 0x283, RF 0x18 on C/D via the new - direct read). -4. `sudo python3 tests/regress.py --vm-name devourer-testrig --vm-ssh …` - default matrix; `--channel 36` spot-check; full matrix + encoding-matrix if - 8814 TX goes green. - -## Resolution: FW-boot / TX-silence axis (2026-06-11) - -The smoking gun fired exactly as predicted by finding #3: on a virgin chip the -`CPU_DL_READY` poll failed (`REG_MCUFWDL` stuck at `0x00606078`) and TX was -0 on-air. Replacing the rtw88-mimic fwdl *bracket* with a verbatim port of the -vendor kernel's `FirmwareDownload8814A` + `HalROMDownloadFWRSVDPage8814A` -(keeping the mimic's power-on prefix, which remains devourer's only 8814 -power-on) makes the 3081 boot: trajectory `0x...2079` (per-section -DL_RDY/CHKSUM_OK RMW) → `0x...6079` (FW_DW_RDY) → `0x...E078` -(`CPU_DL_READY`, asserted instantly on `_3081Enable`). With the FW running, -TX emits on-air: ch6 12.8k / ch36 10.7k / ch100 10.8k canonical-SA frames at -the kernel-monitor witness; RX unaffected. The legacy sequence is preserved -bit-for-bit behind `DEVOURER_8814_FWDL=rtw88` and still reproduces the -failure — a clean causal A/B. Residual-risk items #1 (blanket `0x79/0x6078` -kick) and the FW-boot arm of #5 are thereby resolved. diff --git a/hal/Hal8814_PostFwdlReplay.h b/hal/Hal8814_PostFwdlReplay.h deleted file mode 100644 index a490561..0000000 --- a/hal/Hal8814_PostFwdlReplay.h +++ /dev/null @@ -1,4495 +0,0 @@ -/* RTL8814AU post-firmware-download chip-init replay table. - * - * Extracted via usbmon capture of a cold-init aircrack-ng/morrownr OOT - * 8814au kernel-driver session on a CF-938AC (0bda:8813): - * - * modprobe 8814au; ip link up; iw dev set monitor; iw dev set channel 6 - * - * All vendor control writes (bRequest=0x05 REALTEK_USB_VENQT_WRITE) between - * the last firmware-download bulk chunk and the first TX bulk OUT were - * captured and emitted as the table below. HalModule replays these - * verbatim after its own init completes, putting the chip in the - * MAC-TX-ready state the kernel driver leaves it in. - * - * Eventually this should be replaced by porting the equivalent upstream - * init functions individually. Keeping the verbatim replay both as the - * minimum-effort fix that works today and as a regression checkpoint. - */ - -#ifndef HAL8814_POSTFWDL_REPLAY_H -#define HAL8814_POSTFWDL_REPLAY_H - -#include -#include - -/* clang-format off */ -static const struct { uint16_t addr; uint8_t len; uint32_t value; } kKernelPostFwdlWrites[] = { - { 0x0205, 1, 0x00000087u }, - { 0x1200, 4, 0x187bfb28u }, - { 0x1204, 4, 0x0000ee50u }, - { 0x1208, 4, 0xa10005b0u }, - { 0x0080, 1, 0x00000079u }, - { 0x0550, 1, 0x00000010u }, - { 0x0101, 1, 0x00000006u }, - { 0x0081, 1, 0x00000060u }, - { 0x0003, 1, 0x000000feu }, - { 0x0080, 1, 0x00000078u }, - { 0x01cc, 1, 0x0000000fu }, - { 0x0010, 1, 0x0000007cu }, - { 0x0014, 1, 0x000000dbu }, - { 0x0016, 1, 0x00000002u }, - { 0x0073, 1, 0x00000010u }, - { 0x0420, 1, 0x00000080u }, - { 0x0421, 1, 0x0000000fu }, - { 0x0428, 1, 0x0000000au }, - { 0x0429, 1, 0x00000010u }, - { 0x0430, 1, 0x00000000u }, - { 0x0431, 1, 0x00000000u }, - { 0x0432, 1, 0x00000000u }, - { 0x0433, 1, 0x00000001u }, - { 0x0434, 1, 0x00000004u }, - { 0x0435, 1, 0x00000005u }, - { 0x0436, 1, 0x00000007u }, - { 0x0437, 1, 0x00000008u }, - { 0x043c, 1, 0x00000004u }, - { 0x043d, 1, 0x00000005u }, - { 0x043e, 1, 0x00000007u }, - { 0x043f, 1, 0x00000008u }, - { 0x0440, 1, 0x0000005du }, - { 0x0441, 1, 0x00000001u }, - { 0x0442, 1, 0x00000000u }, - { 0x0444, 1, 0x00000010u }, - { 0x0445, 1, 0x000000f0u }, - { 0x0446, 1, 0x00000001u }, - { 0x0447, 1, 0x000000feu }, - { 0x0448, 1, 0x00000000u }, - { 0x0449, 1, 0x00000000u }, - { 0x044a, 1, 0x00000000u }, - { 0x044b, 1, 0x00000040u }, - { 0x044c, 1, 0x00000010u }, - { 0x044d, 1, 0x000000f0u }, - { 0x044e, 1, 0x0000003fu }, - { 0x044f, 1, 0x00000000u }, - { 0x0450, 1, 0x00000000u }, - { 0x0451, 1, 0x00000000u }, - { 0x0452, 1, 0x00000000u }, - { 0x0453, 1, 0x00000040u }, - { 0x045e, 1, 0x00000004u }, - { 0x049c, 1, 0x00000010u }, - { 0x049d, 1, 0x000000f0u }, - { 0x049e, 1, 0x00000000u }, - { 0x049f, 1, 0x00000006u }, - { 0x04a0, 1, 0x000000e0u }, - { 0x04a1, 1, 0x00000003u }, - { 0x04a2, 1, 0x00000000u }, - { 0x04a3, 1, 0x00000040u }, - { 0x04a4, 1, 0x00000015u }, - { 0x04a5, 1, 0x000000f0u }, - { 0x04a6, 1, 0x00000000u }, - { 0x04a7, 1, 0x00000006u }, - { 0x04a8, 1, 0x000000e0u }, - { 0x04a9, 1, 0x00000000u }, - { 0x04aa, 1, 0x00000000u }, - { 0x04ab, 1, 0x00000000u }, - { 0x07da, 1, 0x00000008u }, - { 0x1448, 1, 0x00000006u }, - { 0x144a, 1, 0x00000006u }, - { 0x144c, 1, 0x00000006u }, - { 0x144e, 1, 0x00000006u }, - { 0x04c8, 1, 0x000000ffu }, - { 0x04c9, 1, 0x00000008u }, - { 0x04ca, 1, 0x0000003cu }, - { 0x04cb, 1, 0x0000003cu }, - { 0x04cc, 1, 0x000000ffu }, - { 0x04cd, 1, 0x000000ffu }, - { 0x04ce, 1, 0x00000001u }, - { 0x04cf, 1, 0x00000008u }, - { 0x0500, 1, 0x00000026u }, - { 0x0501, 1, 0x000000a2u }, - { 0x0502, 1, 0x0000002fu }, - { 0x0503, 1, 0x00000000u }, - { 0x0504, 1, 0x00000028u }, - { 0x0505, 1, 0x000000a3u }, - { 0x0506, 1, 0x0000005eu }, - { 0x0507, 1, 0x00000000u }, - { 0x0508, 1, 0x0000002bu }, - { 0x0509, 1, 0x000000a4u }, - { 0x050a, 1, 0x0000005eu }, - { 0x050b, 1, 0x00000000u }, - { 0x050c, 1, 0x0000004fu }, - { 0x050d, 1, 0x000000a4u }, - { 0x050e, 1, 0x00000000u }, - { 0x050f, 1, 0x00000000u }, - { 0x0512, 1, 0x0000001cu }, - { 0x0514, 1, 0x0000000au }, - { 0x0516, 1, 0x0000000au }, - { 0x0521, 1, 0x0000002fu }, - { 0x0525, 1, 0x00000047u }, - { 0x0550, 1, 0x00000010u }, - { 0x0551, 1, 0x00000010u }, - { 0x0559, 1, 0x00000002u }, - { 0x055c, 1, 0x00000064u }, - { 0x055d, 1, 0x000000ffu }, - { 0x0577, 1, 0x00000003u }, - { 0x05be, 1, 0x00000064u }, - { 0x0604, 1, 0x00000001u }, - { 0x0605, 1, 0x00000030u }, - { 0x0607, 1, 0x00000001u }, - { 0x0608, 1, 0x0000000eu }, - { 0x0609, 1, 0x0000002au }, - { 0x060a, 1, 0x00000000u }, - { 0x060c, 1, 0x00000018u }, - { 0x060d, 1, 0x00000050u }, - { 0x06a0, 1, 0x000000ffu }, - { 0x06a1, 1, 0x000000ffu }, - { 0x06a2, 1, 0x000000ffu }, - { 0x06a3, 1, 0x000000ffu }, - { 0x06a4, 1, 0x000000ffu }, - { 0x06a5, 1, 0x000000ffu }, - { 0x06de, 1, 0x00000084u }, - { 0x0620, 1, 0x000000ffu }, - { 0x0621, 1, 0x000000ffu }, - { 0x0622, 1, 0x000000ffu }, - { 0x0623, 1, 0x000000ffu }, - { 0x0624, 1, 0x000000ffu }, - { 0x0625, 1, 0x000000ffu }, - { 0x0626, 1, 0x000000ffu }, - { 0x0627, 1, 0x000000ffu }, - { 0x0638, 1, 0x00000064u }, - { 0x063c, 1, 0x0000000au }, - { 0x063d, 1, 0x0000000au }, - { 0x063e, 1, 0x0000000eu }, - { 0x063f, 1, 0x0000000eu }, - { 0x0640, 1, 0x00000040u }, - { 0x0642, 1, 0x00000040u }, - { 0x0643, 1, 0x00000000u }, - { 0x0652, 1, 0x000000c8u }, - { 0x066e, 1, 0x00000005u }, - { 0x0700, 1, 0x00000021u }, - { 0x0701, 1, 0x00000043u }, - { 0x0702, 1, 0x00000065u }, - { 0x0703, 1, 0x00000087u }, - { 0x0708, 1, 0x00000021u }, - { 0x0709, 1, 0x00000043u }, - { 0x070a, 1, 0x00000065u }, - { 0x070b, 1, 0x00000087u }, - { 0x0718, 1, 0x00000040u }, - { 0x07d5, 1, 0x000000bcu }, - { 0x07d8, 1, 0x00000028u }, - { 0x07d9, 1, 0x00000000u }, - { 0x07da, 1, 0x0000000bu }, - { 0x010c, 2, 0x0000f5b4u }, - { 0x011c, 2, 0x00005bffu }, - { 0x060f, 1, 0x00000004u }, - { 0x00b0, 4, 0x00000000u }, - { 0x00b8, 4, 0x00000000u }, - { 0x0100, 4, 0x0002063fu }, - { 0x0440, 4, 0x00000fffu }, - { 0x042a, 2, 0x00003030u }, - { 0x0608, 4, 0xf40060ceu }, - { 0x06a2, 2, 0x00000420u }, - { 0x04ca, 1, 0x00000036u }, - { 0x04cb, 1, 0x00000036u }, - { 0x0428, 2, 0x0000100au }, - { 0x063a, 2, 0x0000100au }, - { 0x0514, 2, 0x0000100au }, - { 0x0516, 2, 0x0000100au }, - { 0x0508, 4, 0x005ea42bu }, - { 0x050c, 4, 0x0000a44fu }, - { 0x0504, 4, 0x005ea324u }, - { 0x0500, 4, 0x002fa226u }, - { 0x0420, 1, 0x00000080u }, - { 0x0640, 1, 0x00000080u }, - { 0x0208, 4, 0x00000030u }, - { 0x020b, 1, 0x00000006u }, - { 0x010c, 1, 0x000000b4u }, - { 0x0283, 1, 0x00000000u }, - { 0x0550, 2, 0x00001010u }, - { 0x0540, 1, 0x00000004u }, - { 0x0541, 1, 0x00000064u }, - { 0x0542, 1, 0x00000000u }, - { 0x0558, 1, 0x00000005u }, - { 0x0559, 1, 0x00000002u }, - { 0x0510, 2, 0x00004413u }, - { 0x055d, 1, 0x000000ffu }, - { 0x1448, 4, 0x08070807u }, - { 0x144c, 4, 0x08070807u }, - { 0x0290, 1, 0x0000000eu }, - { 0x0280, 2, 0x00000a05u }, - { 0xf008, 1, 0x00000001u }, - { 0xf002, 2, 0x00000000u }, - { 0x04bc, 1, 0x00000000u }, - { 0x0100, 1, 0x000000ffu }, - { 0x0002, 1, 0x0000001cu }, - { 0x1002, 1, 0x000000afu }, - { 0x001f, 1, 0x00000007u }, - { 0x0020, 2, 0x00000707u }, - { 0x0076, 1, 0x00000007u }, - { 0x0800, 4, 0x9020d010u }, - { 0x0804, 4, 0x08011280u }, - { 0x0808, 4, 0x0e0282ffu }, - { 0x080c, 4, 0x1000002fu }, - { 0x0810, 4, 0x33303265u }, - { 0x0814, 4, 0x020c3d10u }, - { 0x0818, 4, 0x04a10385u }, - { 0x0820, 4, 0x00000000u }, - { 0x0824, 4, 0x00033e40u }, - { 0x0828, 4, 0x00000000u }, - { 0x082c, 4, 0x73985170u }, - { 0x0830, 4, 0x79a0ea08u }, - { 0x0834, 4, 0x042e708au }, - { 0x0838, 4, 0x86667640u }, - { 0x083c, 4, 0x9798b9b9u }, - { 0x0840, 4, 0x17578f60u }, - { 0x0844, 4, 0x4bbdfcdeu }, - { 0x0848, 4, 0x5cd07f8bu }, - { 0x084c, 4, 0x6cfbf7b5u }, - { 0x0850, 4, 0x28834706u }, - { 0x0854, 4, 0x0001520cu }, - { 0x0858, 4, 0x4060c000u }, - { 0x085c, 4, 0x74210368u }, - { 0x0860, 4, 0x6929c321u }, - { 0x0864, 4, 0x79727432u }, - { 0x0868, 4, 0x8ca7a314u }, - { 0x086c, 4, 0x438c2878u }, - { 0x0870, 4, 0x44444444u }, - { 0x0874, 4, 0x21612c2eu }, - { 0x0878, 4, 0x00003152u }, - { 0x087c, 4, 0x000fc000u }, - { 0x08a0, 4, 0x00000013u }, - { 0x08a4, 4, 0x7f7f7f7fu }, - { 0x08a8, 4, 0xa202033eu }, - { 0x08ac, 4, 0xf40f550au }, - { 0x08b0, 4, 0x00000600u }, - { 0x08b4, 4, 0x000fc080u }, - { 0x08b8, 4, 0xec0057ffu }, - { 0x08bc, 4, 0x8ca520c3u }, - { 0x08c0, 4, 0x3ff00020u }, - { 0x08c4, 4, 0x44c00000u }, - { 0x08c8, 4, 0x80025167u }, - { 0x08cc, 4, 0x08250492u }, - { 0x08d0, 4, 0x0000b800u }, - { 0x08d4, 4, 0x940008a0u }, - { 0x08d8, 4, 0x290b5612u }, - { 0x08dc, 4, 0x00000000u }, - { 0x08e0, 4, 0x32316407u }, - { 0x08e4, 4, 0x4a092925u }, - { 0x08e8, 4, 0xffffc42cu }, - { 0x08ec, 4, 0x99999999u }, - { 0x08f0, 4, 0x00009999u }, - { 0x08f4, 4, 0x00f80fa1u }, - { 0x08f8, 4, 0x400082c0u }, - { 0x08fc, 4, 0x00000000u }, - { 0x0900, 4, 0x00400700u }, - { 0x090c, 4, 0x09004000u }, - { 0x0910, 4, 0x0000fc00u }, - { 0x0914, 4, 0xd6400404u }, - { 0x0918, 4, 0x1c1028c0u }, - { 0x091c, 4, 0x64b11a1cu }, - { 0x0920, 4, 0xe0767233u }, - { 0x0924, 4, 0x055aa500u }, - { 0x0928, 4, 0x4ab0e4e4u }, - { 0x092c, 4, 0xfffe0000u }, - { 0x0930, 4, 0xfffffffeu }, - { 0x0934, 4, 0x001fffffu }, - { 0x0938, 4, 0x00008400u }, - { 0x093c, 4, 0x932c0642u }, - { 0x0940, 4, 0x093e9360u }, - { 0x0944, 4, 0x08000000u }, - { 0x0948, 4, 0x04000000u }, - { 0x0950, 4, 0x02010080u }, - { 0x0954, 4, 0x86510080u }, - { 0x0960, 4, 0x00000000u }, - { 0x0964, 4, 0x00000000u }, - { 0x0968, 4, 0x00000000u }, - { 0x096c, 4, 0x00000000u }, - { 0x0970, 4, 0x801fffffu }, - { 0x0978, 4, 0x00000000u }, - { 0x097c, 4, 0x00000000u }, - { 0x0980, 4, 0x00000000u }, - { 0x0984, 4, 0x00000000u }, - { 0x0988, 4, 0x00000000u }, - { 0x098c, 4, 0x03440000u }, - { 0x0990, 4, 0x27100000u }, - { 0x0994, 4, 0xffff0100u }, - { 0x0998, 4, 0xffffff5cu }, - { 0x099c, 4, 0xffffffffu }, - { 0x09a0, 4, 0x000000ffu }, - { 0x09a4, 4, 0x00080080u }, - { 0x09a8, 4, 0x0c2f0000u }, - { 0x09ac, 4, 0x00560000u }, - { 0x09b0, 4, 0x81081008u }, - { 0x09b4, 4, 0x00000000u }, - { 0x09b8, 4, 0x01081008u }, - { 0x09bc, 4, 0x01081008u }, - { 0x09d0, 4, 0x00000000u }, - { 0x09d4, 4, 0x00000000u }, - { 0x09d8, 4, 0x00000000u }, - { 0x09dc, 4, 0x00000000u }, - { 0x09e4, 4, 0x00000002u }, - { 0x09e8, 4, 0x000022d5u }, - { 0x09fc, 4, 0xeffff7ffu }, - { 0x0b00, 4, 0xe3100000u }, - { 0x0b04, 4, 0x0000b000u }, - { 0x0b0c, 4, 0x31eaa006u }, - { 0x0b5c, 4, 0x41cfffffu }, - { 0x0c00, 4, 0x00000007u }, - { 0x0c04, 4, 0x00042020u }, - { 0x0c08, 4, 0x80410231u }, - { 0x0c0c, 4, 0x00000000u }, - { 0x0c10, 4, 0x00000100u }, - { 0x0c14, 4, 0x01000000u }, - { 0x0c1c, 4, 0x40000053u }, - { 0x0c50, 4, 0x00000020u }, - { 0x0c54, 4, 0x00000000u }, - { 0x0c58, 4, 0x3c020c14u }, - { 0x0c5c, 4, 0x0d000058u }, - { 0x0c60, 4, 0x1b800000u }, - { 0x0c60, 4, 0x0b800001u }, - { 0x0c60, 4, 0x05800002u }, - { 0x0c60, 4, 0x07800003u }, - { 0x0c60, 4, 0x1a800004u }, - { 0x0c60, 4, 0x0b800005u }, - { 0x0c60, 4, 0x05800006u }, - { 0x0c60, 4, 0x0e800007u }, - { 0x0c60, 4, 0x1a800008u }, - { 0x0c60, 4, 0x0b800009u }, - { 0x0c60, 4, 0x1580000au }, - { 0x0c60, 4, 0x0880000bu }, - { 0x0c60, 4, 0x1a80000cu }, - { 0x0c60, 4, 0x0b80000du }, - { 0x0c60, 4, 0x0580000eu }, - { 0x0c60, 4, 0x0e80000fu }, - { 0x0c60, 4, 0x1a800010u }, - { 0x0c60, 4, 0x0b800011u }, - { 0x0c60, 4, 0x15800012u }, - { 0x0c60, 4, 0x08800013u }, - { 0x0c60, 4, 0x1a800014u }, - { 0x0c60, 4, 0x0b800015u }, - { 0x0c60, 4, 0x05800016u }, - { 0x0c60, 4, 0x07800017u }, - { 0x0c60, 4, 0x1a800018u }, - { 0x0c60, 4, 0x0b800019u }, - { 0x0c60, 4, 0x1580001au }, - { 0x0c60, 4, 0x0880001bu }, - { 0x0c60, 4, 0x1b80001cu }, - { 0x0c60, 4, 0x0b80001du }, - { 0x0c60, 4, 0x0580001eu }, - { 0x0c60, 4, 0x0780001fu }, - { 0x0c60, 4, 0x1b800020u }, - { 0x0c60, 4, 0x0b800021u }, - { 0x0c60, 4, 0x05800022u }, - { 0x0c60, 4, 0x07800023u }, - { 0x0c60, 4, 0x1b800024u }, - { 0x0c60, 4, 0x0b800025u }, - { 0x0c60, 4, 0x05800026u }, - { 0x0c60, 4, 0x07800027u }, - { 0x0c60, 4, 0x1b800028u }, - { 0x0c60, 4, 0x0b800029u }, - { 0x0c60, 4, 0x0580002au }, - { 0x0c60, 4, 0x0780002bu }, - { 0x0c60, 4, 0x1b800030u }, - { 0x0c60, 4, 0x0b800031u }, - { 0x0c60, 4, 0x05800032u }, - { 0x0c60, 4, 0x00800033u }, - { 0x0c60, 4, 0x1b800034u }, - { 0x0c60, 4, 0x0b800035u }, - { 0x0c60, 4, 0x05800036u }, - { 0x0c60, 4, 0x00800037u }, - { 0x0c60, 4, 0x1b800038u }, - { 0x0c60, 4, 0x0b800039u }, - { 0x0c60, 4, 0x0580003au }, - { 0x0c60, 4, 0x0e80803bu }, - { 0x0c94, 4, 0x01000401u }, - { 0x0c98, 4, 0x00188000u }, - { 0x0ca0, 4, 0x00002929u }, - { 0x0ca4, 4, 0x08040201u }, - { 0x0ca8, 4, 0x80402010u }, - { 0x0cac, 4, 0x77777000u }, - { 0x0cb0, 4, 0x54775477u }, - { 0x0cb4, 4, 0x54775477u }, - { 0x0cb8, 4, 0x00500000u }, - { 0x0cbc, 4, 0x77700000u }, - { 0x0cc0, 4, 0x00000010u }, - { 0x0cc8, 4, 0x00000010u }, - { 0x0e00, 4, 0x00000007u }, - { 0x0e04, 4, 0x00042020u }, - { 0x0e08, 4, 0x80410231u }, - { 0x0e0c, 4, 0x00000000u }, - { 0x0e10, 4, 0x00000100u }, - { 0x0e14, 4, 0x01000000u }, - { 0x0e1c, 4, 0x40000053u }, - { 0x0e50, 4, 0x00000020u }, - { 0x0e54, 4, 0x00000000u }, - { 0x0e58, 4, 0x3c020c14u }, - { 0x0e5c, 4, 0x0d000058u }, - { 0x0e60, 4, 0x1b800000u }, - { 0x0e60, 4, 0x0b800001u }, - { 0x0e60, 4, 0x05800002u }, - { 0x0e60, 4, 0x07800003u }, - { 0x0e60, 4, 0x1a800004u }, - { 0x0e60, 4, 0x0b800005u }, - { 0x0e60, 4, 0x05800006u }, - { 0x0e60, 4, 0x0e800007u }, - { 0x0e60, 4, 0x1a800008u }, - { 0x0e60, 4, 0x0b800009u }, - { 0x0e60, 4, 0x1580000au }, - { 0x0e60, 4, 0x0880000bu }, - { 0x0e60, 4, 0x1a80000cu }, - { 0x0e60, 4, 0x0b80000du }, - { 0x0e60, 4, 0x0580000eu }, - { 0x0e60, 4, 0x0e80000fu }, - { 0x0e60, 4, 0x1a800010u }, - { 0x0e60, 4, 0x0b800011u }, - { 0x0e60, 4, 0x15800012u }, - { 0x0e60, 4, 0x08800013u }, - { 0x0e60, 4, 0x1a800014u }, - { 0x0e60, 4, 0x0b800015u }, - { 0x0e60, 4, 0x05800016u }, - { 0x0e60, 4, 0x07800017u }, - { 0x0e60, 4, 0x1a800018u }, - { 0x0e60, 4, 0x0b800019u }, - { 0x0e60, 4, 0x1580001au }, - { 0x0e60, 4, 0x0880001bu }, - { 0x0e60, 4, 0x1b80001cu }, - { 0x0e60, 4, 0x0b80001du }, - { 0x0e60, 4, 0x0580001eu }, - { 0x0e60, 4, 0x0780001fu }, - { 0x0e60, 4, 0x1b800020u }, - { 0x0e60, 4, 0x0b800021u }, - { 0x0e60, 4, 0x05800022u }, - { 0x0e60, 4, 0x07800023u }, - { 0x0e60, 4, 0x1b800024u }, - { 0x0e60, 4, 0x0b800025u }, - { 0x0e60, 4, 0x05800026u }, - { 0x0e60, 4, 0x07800027u }, - { 0x0e60, 4, 0x1b800028u }, - { 0x0e60, 4, 0x0b800029u }, - { 0x0e60, 4, 0x0580002au }, - { 0x0e60, 4, 0x0780002bu }, - { 0x0e60, 4, 0x1b800030u }, - { 0x0e60, 4, 0x0b800031u }, - { 0x0e60, 4, 0x05800032u }, - { 0x0e60, 4, 0x00800033u }, - { 0x0e60, 4, 0x1b800034u }, - { 0x0e60, 4, 0x0b800035u }, - { 0x0e60, 4, 0x05800036u }, - { 0x0e60, 4, 0x00800037u }, - { 0x0e60, 4, 0x1b800038u }, - { 0x0e60, 4, 0x0b800039u }, - { 0x0e60, 4, 0x0580003au }, - { 0x0e60, 4, 0x0e80803bu }, - { 0x0e94, 4, 0x01000401u }, - { 0x0e98, 4, 0x00188000u }, - { 0x0ea0, 4, 0x00002929u }, - { 0x0ea4, 4, 0x08040201u }, - { 0x0ea8, 4, 0x80402010u }, - { 0x0eac, 4, 0x77777000u }, - { 0x0eb0, 4, 0x54775477u }, - { 0x0eb4, 4, 0x54775477u }, - { 0x0eb8, 4, 0x00500000u }, - { 0x0ebc, 4, 0x77700000u }, - { 0x1800, 4, 0x00000007u }, - { 0x1804, 4, 0x00042020u }, - { 0x1808, 4, 0x80410231u }, - { 0x180c, 4, 0x00000000u }, - { 0x1810, 4, 0x00000100u }, - { 0x1814, 4, 0x01000000u }, - { 0x181c, 4, 0x40000053u }, - { 0x1850, 4, 0x00000020u }, - { 0x1854, 4, 0x00000000u }, - { 0x1858, 4, 0x3c020c14u }, - { 0x185c, 4, 0x0d000058u }, - { 0x1860, 4, 0x1b800000u }, - { 0x1860, 4, 0x0b800001u }, - { 0x1860, 4, 0x05800002u }, - { 0x1860, 4, 0x07800003u }, - { 0x1860, 4, 0x1a800004u }, - { 0x1860, 4, 0x0b800005u }, - { 0x1860, 4, 0x05800006u }, - { 0x1860, 4, 0x0e800007u }, - { 0x1860, 4, 0x1a800008u }, - { 0x1860, 4, 0x0b800009u }, - { 0x1860, 4, 0x1580000au }, - { 0x1860, 4, 0x0880000bu }, - { 0x1860, 4, 0x1a80000cu }, - { 0x1860, 4, 0x0b80000du }, - { 0x1860, 4, 0x0580000eu }, - { 0x1860, 4, 0x0e80000fu }, - { 0x1860, 4, 0x1a800010u }, - { 0x1860, 4, 0x0b800011u }, - { 0x1860, 4, 0x15800012u }, - { 0x1860, 4, 0x08800013u }, - { 0x1860, 4, 0x1a800014u }, - { 0x1860, 4, 0x0b800015u }, - { 0x1860, 4, 0x05800016u }, - { 0x1860, 4, 0x07800017u }, - { 0x1860, 4, 0x1a800018u }, - { 0x1860, 4, 0x0b800019u }, - { 0x1860, 4, 0x1580001au }, - { 0x1860, 4, 0x0880001bu }, - { 0x1860, 4, 0x1b80001cu }, - { 0x1860, 4, 0x0b80001du }, - { 0x1860, 4, 0x0580001eu }, - { 0x1860, 4, 0x0780001fu }, - { 0x1860, 4, 0x1b800020u }, - { 0x1860, 4, 0x0b800021u }, - { 0x1860, 4, 0x05800022u }, - { 0x1860, 4, 0x07800023u }, - { 0x1860, 4, 0x1b800024u }, - { 0x1860, 4, 0x0b800025u }, - { 0x1860, 4, 0x05800026u }, - { 0x1860, 4, 0x07800027u }, - { 0x1860, 4, 0x1b800028u }, - { 0x1860, 4, 0x0b800029u }, - { 0x1860, 4, 0x0580002au }, - { 0x1860, 4, 0x0780002bu }, - { 0x1860, 4, 0x1b800030u }, - { 0x1860, 4, 0x0b800031u }, - { 0x1860, 4, 0x05800032u }, - { 0x1860, 4, 0x00800033u }, - { 0x1860, 4, 0x1b800034u }, - { 0x1860, 4, 0x0b800035u }, - { 0x1860, 4, 0x05800036u }, - { 0x1860, 4, 0x00800037u }, - { 0x1860, 4, 0x1b800038u }, - { 0x1860, 4, 0x0b800039u }, - { 0x1860, 4, 0x0580003au }, - { 0x1860, 4, 0x0e80803bu }, - { 0x1894, 4, 0x01000401u }, - { 0x1898, 4, 0x00188000u }, - { 0x18a0, 4, 0x00002929u }, - { 0x18a4, 4, 0x08040201u }, - { 0x18a8, 4, 0x80402010u }, - { 0x18ac, 4, 0x77777000u }, - { 0x18b0, 4, 0x54775477u }, - { 0x18b4, 4, 0x54775477u }, - { 0x18b8, 4, 0x00500000u }, - { 0x18bc, 4, 0x77700000u }, - { 0x1a00, 4, 0x00000007u }, - { 0x1a04, 4, 0x00042020u }, - { 0x1a08, 4, 0x80410231u }, - { 0x1a0c, 4, 0x00000000u }, - { 0x1a10, 4, 0x00000100u }, - { 0x1a14, 4, 0x01000000u }, - { 0x1a1c, 4, 0x40000053u }, - { 0x1a50, 4, 0x00000020u }, - { 0x1a54, 4, 0x00000000u }, - { 0x1a58, 4, 0x3c020c14u }, - { 0x1a5c, 4, 0x0d000058u }, - { 0x1a60, 4, 0x1b800000u }, - { 0x1a60, 4, 0x0b800001u }, - { 0x1a60, 4, 0x05800002u }, - { 0x1a60, 4, 0x07800003u }, - { 0x1a60, 4, 0x1a800004u }, - { 0x1a60, 4, 0x0b800005u }, - { 0x1a60, 4, 0x05800006u }, - { 0x1a60, 4, 0x0e800007u }, - { 0x1a60, 4, 0x1a800008u }, - { 0x1a60, 4, 0x0b800009u }, - { 0x1a60, 4, 0x1580000au }, - { 0x1a60, 4, 0x0880000bu }, - { 0x1a60, 4, 0x1a80000cu }, - { 0x1a60, 4, 0x0b80000du }, - { 0x1a60, 4, 0x0580000eu }, - { 0x1a60, 4, 0x0e80000fu }, - { 0x1a60, 4, 0x1a800010u }, - { 0x1a60, 4, 0x0b800011u }, - { 0x1a60, 4, 0x15800012u }, - { 0x1a60, 4, 0x08800013u }, - { 0x1a60, 4, 0x1a800014u }, - { 0x1a60, 4, 0x0b800015u }, - { 0x1a60, 4, 0x05800016u }, - { 0x1a60, 4, 0x07800017u }, - { 0x1a60, 4, 0x1a800018u }, - { 0x1a60, 4, 0x0b800019u }, - { 0x1a60, 4, 0x1580001au }, - { 0x1a60, 4, 0x0880001bu }, - { 0x1a60, 4, 0x1b80001cu }, - { 0x1a60, 4, 0x0b80001du }, - { 0x1a60, 4, 0x0580001eu }, - { 0x1a60, 4, 0x0780001fu }, - { 0x1a60, 4, 0x1b800020u }, - { 0x1a60, 4, 0x0b800021u }, - { 0x1a60, 4, 0x05800022u }, - { 0x1a60, 4, 0x07800023u }, - { 0x1a60, 4, 0x1b800024u }, - { 0x1a60, 4, 0x0b800025u }, - { 0x1a60, 4, 0x05800026u }, - { 0x1a60, 4, 0x07800027u }, - { 0x1a60, 4, 0x1b800028u }, - { 0x1a60, 4, 0x0b800029u }, - { 0x1a60, 4, 0x0580002au }, - { 0x1a60, 4, 0x0780002bu }, - { 0x1a60, 4, 0x1b800030u }, - { 0x1a60, 4, 0x0b800031u }, - { 0x1a60, 4, 0x05800032u }, - { 0x1a60, 4, 0x00800033u }, - { 0x1a60, 4, 0x1b800034u }, - { 0x1a60, 4, 0x0b800035u }, - { 0x1a60, 4, 0x05800036u }, - { 0x1a60, 4, 0x00800037u }, - { 0x1a60, 4, 0x1b800038u }, - { 0x1a60, 4, 0x0b800039u }, - { 0x1a60, 4, 0x0580003au }, - { 0x1a60, 4, 0x0e80803bu }, - { 0x1a94, 4, 0x01000401u }, - { 0x1a98, 4, 0x00188000u }, - { 0x1aa0, 4, 0x00002929u }, - { 0x1aa4, 4, 0x08040201u }, - { 0x1aa8, 4, 0x80402010u }, - { 0x1aac, 4, 0x77777000u }, - { 0x1ab0, 4, 0x54775477u }, - { 0x1ab4, 4, 0x54775477u }, - { 0x1ab8, 4, 0x00500000u }, - { 0x1abc, 4, 0x77700000u }, - { 0x1904, 4, 0x00030000u }, - { 0x1914, 4, 0x00030000u }, - { 0x1984, 4, 0x03000000u }, - { 0x1988, 4, 0x00000087u }, - { 0x198c, 4, 0x00000007u }, - { 0x1990, 4, 0xffaa5500u }, - { 0x1994, 4, 0x00000077u }, - { 0x1998, 4, 0x12801000u }, - { 0x1998, 4, 0x12801000u }, - { 0x1998, 4, 0x12801001u }, - { 0x1998, 4, 0x12801002u }, - { 0x1998, 4, 0x12801003u }, - { 0x1998, 4, 0x12801004u }, - { 0x1998, 4, 0x12801005u }, - { 0x1998, 4, 0x12801006u }, - { 0x1998, 4, 0x12801007u }, - { 0x1998, 4, 0x12801008u }, - { 0x1998, 4, 0x12801009u }, - { 0x1998, 4, 0x1280100au }, - { 0x1998, 4, 0x1280100bu }, - { 0x1998, 4, 0x1280100cu }, - { 0x1998, 4, 0x1280100du }, - { 0x1998, 4, 0x1280100eu }, - { 0x1998, 4, 0x1280100fu }, - { 0x1998, 4, 0x12801010u }, - { 0x1998, 4, 0x12801011u }, - { 0x1998, 4, 0x12801012u }, - { 0x1998, 4, 0x12801013u }, - { 0x1998, 4, 0x12801014u }, - { 0x1998, 4, 0x12801015u }, - { 0x1998, 4, 0x12801016u }, - { 0x1998, 4, 0x12801017u }, - { 0x1998, 4, 0x12801018u }, - { 0x1998, 4, 0x12801019u }, - { 0x1998, 4, 0x1280101au }, - { 0x1998, 4, 0x1280101bu }, - { 0x1998, 4, 0x1280101cu }, - { 0x1998, 4, 0x1280101du }, - { 0x1998, 4, 0x1280101eu }, - { 0x1998, 4, 0x1280101fu }, - { 0x1998, 4, 0x12801020u }, - { 0x1998, 4, 0x12801021u }, - { 0x1998, 4, 0x12801022u }, - { 0x1998, 4, 0x12801023u }, - { 0x1998, 4, 0x1280102cu }, - { 0x1998, 4, 0x1280102du }, - { 0x1998, 4, 0x1280102eu }, - { 0x1998, 4, 0x1280102fu }, - { 0x1998, 4, 0x12801030u }, - { 0x1998, 4, 0x12801031u }, - { 0x1998, 4, 0x12801032u }, - { 0x1998, 4, 0x12801033u }, - { 0x1998, 4, 0x12801034u }, - { 0x1998, 4, 0x12801035u }, - { 0x1998, 4, 0x12801036u }, - { 0x1998, 4, 0x12801037u }, - { 0x1998, 4, 0x12801038u }, - { 0x1998, 4, 0x12801039u }, - { 0x1998, 4, 0x1280103au }, - { 0x1998, 4, 0x1280103bu }, - { 0x1998, 4, 0x1280103cu }, - { 0x1998, 4, 0x1280103du }, - { 0x1998, 4, 0x1280103eu }, - { 0x1998, 4, 0x1280103fu }, - { 0x1998, 4, 0x12801040u }, - { 0x1998, 4, 0x12801041u }, - { 0x1998, 4, 0x12801042u }, - { 0x1998, 4, 0x12801043u }, - { 0x1998, 4, 0x12801044u }, - { 0x1998, 4, 0x12801045u }, - { 0x1998, 4, 0x12801046u }, - { 0x1998, 4, 0x12801047u }, - { 0x1998, 4, 0x12801048u }, - { 0x1998, 4, 0x12801049u }, - { 0x1998, 4, 0x12801100u }, - { 0x1998, 4, 0x12801101u }, - { 0x1998, 4, 0x12801102u }, - { 0x1998, 4, 0x12801103u }, - { 0x1998, 4, 0x12801104u }, - { 0x1998, 4, 0x12801105u }, - { 0x1998, 4, 0x12801106u }, - { 0x1998, 4, 0x12801107u }, - { 0x1998, 4, 0x12801108u }, - { 0x1998, 4, 0x12801109u }, - { 0x1998, 4, 0x1280110au }, - { 0x1998, 4, 0x1280110bu }, - { 0x1998, 4, 0x1280110cu }, - { 0x1998, 4, 0x1280110du }, - { 0x1998, 4, 0x1280110eu }, - { 0x1998, 4, 0x1280110fu }, - { 0x1998, 4, 0x12801110u }, - { 0x1998, 4, 0x12801111u }, - { 0x1998, 4, 0x12801112u }, - { 0x1998, 4, 0x12801113u }, - { 0x1998, 4, 0x12801114u }, - { 0x1998, 4, 0x12801115u }, - { 0x1998, 4, 0x12801116u }, - { 0x1998, 4, 0x12801117u }, - { 0x1998, 4, 0x12801118u }, - { 0x1998, 4, 0x12801119u }, - { 0x1998, 4, 0x1280111au }, - { 0x1998, 4, 0x1280111bu }, - { 0x1998, 4, 0x1280111cu }, - { 0x1998, 4, 0x1280111du }, - { 0x1998, 4, 0x1280111eu }, - { 0x1998, 4, 0x1280111fu }, - { 0x1998, 4, 0x12801120u }, - { 0x1998, 4, 0x12801121u }, - { 0x1998, 4, 0x12801122u }, - { 0x1998, 4, 0x12801123u }, - { 0x1998, 4, 0x1280112cu }, - { 0x1998, 4, 0x1280112du }, - { 0x1998, 4, 0x1280112eu }, - { 0x1998, 4, 0x1280112fu }, - { 0x1998, 4, 0x12801130u }, - { 0x1998, 4, 0x12801131u }, - { 0x1998, 4, 0x12801132u }, - { 0x1998, 4, 0x12801133u }, - { 0x1998, 4, 0x12801134u }, - { 0x1998, 4, 0x12801135u }, - { 0x1998, 4, 0x12801136u }, - { 0x1998, 4, 0x12801137u }, - { 0x1998, 4, 0x12801138u }, - { 0x1998, 4, 0x12801139u }, - { 0x1998, 4, 0x1280113au }, - { 0x1998, 4, 0x1280113bu }, - { 0x1998, 4, 0x1280113cu }, - { 0x1998, 4, 0x1280113du }, - { 0x1998, 4, 0x1280113eu }, - { 0x1998, 4, 0x1280113fu }, - { 0x1998, 4, 0x12801140u }, - { 0x1998, 4, 0x12801141u }, - { 0x1998, 4, 0x12801142u }, - { 0x1998, 4, 0x12801143u }, - { 0x1998, 4, 0x12801144u }, - { 0x1998, 4, 0x12801145u }, - { 0x1998, 4, 0x12801146u }, - { 0x1998, 4, 0x12801147u }, - { 0x1998, 4, 0x12801148u }, - { 0x1998, 4, 0x12801149u }, - { 0x1998, 4, 0x12801200u }, - { 0x1998, 4, 0x12801201u }, - { 0x1998, 4, 0x12801202u }, - { 0x1998, 4, 0x12801203u }, - { 0x1998, 4, 0x12801204u }, - { 0x1998, 4, 0x12801205u }, - { 0x1998, 4, 0x12801206u }, - { 0x1998, 4, 0x12801207u }, - { 0x1998, 4, 0x12801208u }, - { 0x1998, 4, 0x12801209u }, - { 0x1998, 4, 0x1280120au }, - { 0x1998, 4, 0x1280120bu }, - { 0x1998, 4, 0x1280120cu }, - { 0x1998, 4, 0x1280120du }, - { 0x1998, 4, 0x1280120eu }, - { 0x1998, 4, 0x1280120fu }, - { 0x1998, 4, 0x12801210u }, - { 0x1998, 4, 0x12801211u }, - { 0x1998, 4, 0x12801212u }, - { 0x1998, 4, 0x12801213u }, - { 0x1998, 4, 0x12801214u }, - { 0x1998, 4, 0x12801215u }, - { 0x1998, 4, 0x12801216u }, - { 0x1998, 4, 0x12801217u }, - { 0x1998, 4, 0x12801218u }, - { 0x1998, 4, 0x12801219u }, - { 0x1998, 4, 0x1280121au }, - { 0x1998, 4, 0x1280121bu }, - { 0x1998, 4, 0x1280121cu }, - { 0x1998, 4, 0x1280121du }, - { 0x1998, 4, 0x1280121eu }, - { 0x1998, 4, 0x1280121fu }, - { 0x1998, 4, 0x12801220u }, - { 0x1998, 4, 0x12801221u }, - { 0x1998, 4, 0x12801222u }, - { 0x1998, 4, 0x12801223u }, - { 0x1998, 4, 0x1280122cu }, - { 0x1998, 4, 0x1280122du }, - { 0x1998, 4, 0x1280122eu }, - { 0x1998, 4, 0x1280122fu }, - { 0x1998, 4, 0x12801230u }, - { 0x1998, 4, 0x12801231u }, - { 0x1998, 4, 0x12801232u }, - { 0x1998, 4, 0x12801233u }, - { 0x1998, 4, 0x12801234u }, - { 0x1998, 4, 0x12801235u }, - { 0x1998, 4, 0x12801236u }, - { 0x1998, 4, 0x12801237u }, - { 0x1998, 4, 0x12801238u }, - { 0x1998, 4, 0x12801239u }, - { 0x1998, 4, 0x1280123au }, - { 0x1998, 4, 0x1280123bu }, - { 0x1998, 4, 0x1280123cu }, - { 0x1998, 4, 0x1280123du }, - { 0x1998, 4, 0x1280123eu }, - { 0x1998, 4, 0x1280123fu }, - { 0x1998, 4, 0x12801240u }, - { 0x1998, 4, 0x12801241u }, - { 0x1998, 4, 0x12801242u }, - { 0x1998, 4, 0x12801243u }, - { 0x1998, 4, 0x12801244u }, - { 0x1998, 4, 0x12801245u }, - { 0x1998, 4, 0x12801246u }, - { 0x1998, 4, 0x12801247u }, - { 0x1998, 4, 0x12801248u }, - { 0x1998, 4, 0x12801249u }, - { 0x1998, 4, 0x12801300u }, - { 0x1998, 4, 0x12801301u }, - { 0x1998, 4, 0x12801302u }, - { 0x1998, 4, 0x12801303u }, - { 0x1998, 4, 0x12801304u }, - { 0x1998, 4, 0x12801305u }, - { 0x1998, 4, 0x12801306u }, - { 0x1998, 4, 0x12801307u }, - { 0x1998, 4, 0x12801308u }, - { 0x1998, 4, 0x12801309u }, - { 0x1998, 4, 0x1280130au }, - { 0x1998, 4, 0x1280130bu }, - { 0x1998, 4, 0x1280130cu }, - { 0x1998, 4, 0x1280130du }, - { 0x1998, 4, 0x1280130eu }, - { 0x1998, 4, 0x1280130fu }, - { 0x1998, 4, 0x12801310u }, - { 0x1998, 4, 0x12801311u }, - { 0x1998, 4, 0x12801312u }, - { 0x1998, 4, 0x12801313u }, - { 0x1998, 4, 0x12801314u }, - { 0x1998, 4, 0x12801315u }, - { 0x1998, 4, 0x12801316u }, - { 0x1998, 4, 0x12801317u }, - { 0x1998, 4, 0x12801318u }, - { 0x1998, 4, 0x12801319u }, - { 0x1998, 4, 0x1280131au }, - { 0x1998, 4, 0x1280131bu }, - { 0x1998, 4, 0x1280131cu }, - { 0x1998, 4, 0x1280131du }, - { 0x1998, 4, 0x1280131eu }, - { 0x1998, 4, 0x1280131fu }, - { 0x1998, 4, 0x12801320u }, - { 0x1998, 4, 0x12801321u }, - { 0x1998, 4, 0x12801322u }, - { 0x1998, 4, 0x12801323u }, - { 0x1998, 4, 0x1280132cu }, - { 0x1998, 4, 0x1280132du }, - { 0x1998, 4, 0x1280132eu }, - { 0x1998, 4, 0x1280132fu }, - { 0x1998, 4, 0x12801330u }, - { 0x1998, 4, 0x12801331u }, - { 0x1998, 4, 0x12801332u }, - { 0x1998, 4, 0x12801333u }, - { 0x1998, 4, 0x12801334u }, - { 0x1998, 4, 0x12801335u }, - { 0x1998, 4, 0x12801336u }, - { 0x1998, 4, 0x12801337u }, - { 0x1998, 4, 0x12801338u }, - { 0x1998, 4, 0x12801339u }, - { 0x1998, 4, 0x1280133au }, - { 0x1998, 4, 0x1280133bu }, - { 0x1998, 4, 0x1280133cu }, - { 0x1998, 4, 0x1280133du }, - { 0x1998, 4, 0x1280133eu }, - { 0x1998, 4, 0x1280133fu }, - { 0x1998, 4, 0x12801340u }, - { 0x1998, 4, 0x12801341u }, - { 0x1998, 4, 0x12801342u }, - { 0x1998, 4, 0x12801343u }, - { 0x1998, 4, 0x12801344u }, - { 0x1998, 4, 0x12801345u }, - { 0x1998, 4, 0x12801346u }, - { 0x1998, 4, 0x12801347u }, - { 0x1998, 4, 0x12801348u }, - { 0x1998, 4, 0x12801349u }, - { 0x19d4, 4, 0x88888888u }, - { 0x19d8, 4, 0x00000888u }, - { 0x0b00, 4, 0xe3100100u }, - { 0x0b00, 4, 0xe7100100u }, - { 0x0c60, 4, 0x15808002u }, - { 0x0c60, 4, 0x01808003u }, - { 0x0e60, 4, 0x15808002u }, - { 0x0e60, 4, 0x01808003u }, - { 0x1860, 4, 0x15808002u }, - { 0x1860, 4, 0x01808003u }, - { 0x1a60, 4, 0x15808002u }, - { 0x1a60, 4, 0x01808003u }, - { 0x0b00, 4, 0xe3100100u }, - { 0x0c5c, 4, 0x0d080058u }, - { 0x0e5c, 4, 0x0d080058u }, - { 0x185c, 4, 0x0d080058u }, - { 0x1a5c, 4, 0x0d080058u }, - { 0x0c5c, 4, 0x0d000058u }, - { 0x0e5c, 4, 0x0d000058u }, - { 0x185c, 4, 0x0d000058u }, - { 0x1a5c, 4, 0x0d000058u }, - { 0x0c60, 4, 0x05808002u }, - { 0x0c60, 4, 0x0e808003u }, - { 0x0e60, 4, 0x05808002u }, - { 0x0e60, 4, 0x0e808003u }, - { 0x1860, 4, 0x05808002u }, - { 0x1860, 4, 0x0e808003u }, - { 0x1a60, 4, 0x05808002u }, - { 0x1a60, 4, 0x0e808003u }, - { 0x0b00, 4, 0xe7100100u }, - { 0x0b00, 4, 0xe3100100u }, - { 0x0b00, 4, 0xe3100000u }, - { 0x1c38, 4, 0x00000002u }, - { 0x0a00, 4, 0x00d047c8u }, - { 0x0a04, 4, 0x46ff800cu }, - { 0x0a08, 4, 0x8c838300u }, - { 0x0a0c, 4, 0x2e7e000fu }, - { 0x0a10, 4, 0x9500bb78u }, - { 0x0a14, 4, 0x11144028u }, - { 0x0a18, 4, 0x00881117u }, - { 0x0a1c, 4, 0x89140f00u }, - { 0x0a20, 4, 0x1a1b0030u }, - { 0x0a24, 4, 0x090e1317u }, - { 0x0a28, 4, 0x00000204u }, - { 0x0a2c, 4, 0x00900000u }, - { 0x0a70, 4, 0x101fff00u }, - { 0x0a74, 4, 0x00000128u }, - { 0x0a78, 4, 0x00000900u }, - { 0x0a7c, 4, 0x225b0606u }, - { 0x0a80, 4, 0x218075b2u }, - { 0x0a84, 4, 0x9c1f8c00u }, - { 0x1b04, 4, 0xe24628d2u }, - { 0x1b10, 4, 0x88010d46u }, - { 0x1b14, 4, 0x00000000u }, - { 0x1b18, 4, 0x00292903u }, - { 0x1b00, 4, 0xf8000000u }, - { 0x1b00, 4, 0xf800d000u }, - { 0x1b00, 4, 0xf801f000u }, - { 0x1b1c, 4, 0xa2123db2u }, - { 0x1b20, 4, 0x07040001u }, - { 0x1b24, 4, 0x07060807u }, - { 0x1b28, 4, 0xc0060324u }, - { 0x1b2c, 4, 0x20000003u }, - { 0x1b30, 4, 0x20000000u }, - { 0x1b38, 4, 0x20000000u }, - { 0x1b3c, 4, 0x20000000u }, - { 0x1bd4, 4, 0x00000001u }, - { 0x1b94, 4, 0x80000000u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b34, 4, 0x00000002u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b00, 4, 0xf8000002u }, - { 0x1b00, 4, 0xf800d002u }, - { 0x1b00, 4, 0xf801f002u }, - { 0x1b1c, 4, 0xa2123db2u }, - { 0x1b20, 4, 0x07040001u }, - { 0x1b24, 4, 0x07060807u }, - { 0x1b28, 4, 0xc0060324u }, - { 0x1b2c, 4, 0x20000003u }, - { 0x1b30, 4, 0x20000000u }, - { 0x1b38, 4, 0x20000000u }, - { 0x1b3c, 4, 0x20000000u }, - { 0x1bd4, 4, 0x00000001u }, - { 0x1b94, 4, 0x80000000u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b34, 4, 0x00000002u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b00, 4, 0xf8000004u }, - { 0x1b00, 4, 0xf800d004u }, - { 0x1b00, 4, 0xf801f004u }, - { 0x1b1c, 4, 0xa2123db2u }, - { 0x1b20, 4, 0x07040001u }, - { 0x1b24, 4, 0x07060807u }, - { 0x1b28, 4, 0xc0060324u }, - { 0x1b2c, 4, 0x20000003u }, - { 0x1b30, 4, 0x20000000u }, - { 0x1b38, 4, 0x20000000u }, - { 0x1b3c, 4, 0x20000000u }, - { 0x1bd4, 4, 0x00000001u }, - { 0x1b94, 4, 0x80000000u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b34, 4, 0x00000002u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b00, 4, 0xf8000006u }, - { 0x1b00, 4, 0xf800d006u }, - { 0x1b00, 4, 0xf801f006u }, - { 0x1b1c, 4, 0xa2123db2u }, - { 0x1b20, 4, 0x07040001u }, - { 0x1b24, 4, 0x07060807u }, - { 0x1b28, 4, 0xc0060324u }, - { 0x1b2c, 4, 0x20000003u }, - { 0x1b30, 4, 0x20000000u }, - { 0x1b38, 4, 0x20000000u }, - { 0x1b3c, 4, 0x20000000u }, - { 0x1bd4, 4, 0x00000001u }, - { 0x1b94, 4, 0x80000000u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b34, 4, 0x00000002u }, - { 0x1b34, 4, 0x00000000u }, - { 0x1b00, 4, 0xf8000000u }, - { 0x1b80, 4, 0x00000007u }, - { 0x1b80, 4, 0x09060005u }, - { 0x1b80, 4, 0x09060007u }, - { 0x1b80, 4, 0x0ffe0015u }, - { 0x1b80, 4, 0x0ffe0017u }, - { 0x1b80, 4, 0x00240025u }, - { 0x1b80, 4, 0x00240027u }, - { 0x1b80, 4, 0x00040035u }, - { 0x1b80, 4, 0x00040037u }, - { 0x1b80, 4, 0x05c00045u }, - { 0x1b80, 4, 0x05c00047u }, - { 0x1b80, 4, 0x00070055u }, - { 0x1b80, 4, 0x00070057u }, - { 0x1b80, 4, 0x64000065u }, - { 0x1b80, 4, 0x64000067u }, - { 0x1b80, 4, 0x00020075u }, - { 0x1b80, 4, 0x00020077u }, - { 0x1b80, 4, 0x00080085u }, - { 0x1b80, 4, 0x00080087u }, - { 0x1b80, 4, 0x80000095u }, - { 0x1b80, 4, 0x80000097u }, - { 0x1b80, 4, 0x090100a5u }, - { 0x1b80, 4, 0x090100a7u }, - { 0x1b80, 4, 0x0f0200b5u }, - { 0x1b80, 4, 0x0f0200b7u }, - { 0x1b80, 4, 0x002400c5u }, - { 0x1b80, 4, 0x002400c7u }, - { 0x1b80, 4, 0x000400d5u }, - { 0x1b80, 4, 0x000400d7u }, - { 0x1b80, 4, 0x05c000e5u }, - { 0x1b80, 4, 0x05c000e7u }, - { 0x1b80, 4, 0x000700f5u }, - { 0x1b80, 4, 0x000700f7u }, - { 0x1b80, 4, 0x64020105u }, - { 0x1b80, 4, 0x64020107u }, - { 0x1b80, 4, 0x00020115u }, - { 0x1b80, 4, 0x00020117u }, - { 0x1b80, 4, 0x00040125u }, - { 0x1b80, 4, 0x00040127u }, - { 0x1b80, 4, 0x4a000135u }, - { 0x1b80, 4, 0x4a000137u }, - { 0x1b80, 4, 0x4b040145u }, - { 0x1b80, 4, 0x4b040147u }, - { 0x1b80, 4, 0x85030155u }, - { 0x1b80, 4, 0x85030157u }, - { 0x1b80, 4, 0x40010165u }, - { 0x1b80, 4, 0x40010167u }, - { 0x1b80, 4, 0xe0290175u }, - { 0x1b80, 4, 0xe0290177u }, - { 0x1b80, 4, 0x00040185u }, - { 0x1b80, 4, 0x00040187u }, - { 0x1b80, 4, 0x4b050195u }, - { 0x1b80, 4, 0x4b050197u }, - { 0x1b80, 4, 0x860301a5u }, - { 0x1b80, 4, 0x860301a7u }, - { 0x1b80, 4, 0x400301b5u }, - { 0x1b80, 4, 0x400301b7u }, - { 0x1b80, 4, 0xe02901c5u }, - { 0x1b80, 4, 0xe02901c7u }, - { 0x1b80, 4, 0x000401d5u }, - { 0x1b80, 4, 0x000401d7u }, - { 0x1b80, 4, 0x4b0601e5u }, - { 0x1b80, 4, 0x4b0601e7u }, - { 0x1b80, 4, 0x870301f5u }, - { 0x1b80, 4, 0x870301f7u }, - { 0x1b80, 4, 0x40050205u }, - { 0x1b80, 4, 0x40050207u }, - { 0x1b80, 4, 0xe0290215u }, - { 0x1b80, 4, 0xe0290217u }, - { 0x1b80, 4, 0x00040225u }, - { 0x1b80, 4, 0x00040227u }, - { 0x1b80, 4, 0x4b070235u }, - { 0x1b80, 4, 0x4b070237u }, - { 0x1b80, 4, 0x88030245u }, - { 0x1b80, 4, 0x88030247u }, - { 0x1b80, 4, 0x40070255u }, - { 0x1b80, 4, 0x40070257u }, - { 0x1b80, 4, 0xe0290265u }, - { 0x1b80, 4, 0xe0290267u }, - { 0x1b80, 4, 0x4b000275u }, - { 0x1b80, 4, 0x4b000277u }, - { 0x1b80, 4, 0x30000285u }, - { 0x1b80, 4, 0x30000287u }, - { 0x1b80, 4, 0xfe100295u }, - { 0x1b80, 4, 0xfe100297u }, - { 0x1b80, 4, 0xff1002a5u }, - { 0x1b80, 4, 0xff1002a7u }, - { 0x1b80, 4, 0xe18602b5u }, - { 0x1b80, 4, 0xe18602b7u }, - { 0x1b80, 4, 0xf00a02c5u }, - { 0x1b80, 4, 0xf00a02c7u }, - { 0x1b80, 4, 0xf10a02d5u }, - { 0x1b80, 4, 0xf10a02d7u }, - { 0x1b80, 4, 0xf20a02e5u }, - { 0x1b80, 4, 0xf20a02e7u }, - { 0x1b80, 4, 0xf30802f5u }, - { 0x1b80, 4, 0xf30802f7u }, - { 0x1b80, 4, 0xf4070305u }, - { 0x1b80, 4, 0xf4070307u }, - { 0x1b80, 4, 0xf5060315u }, - { 0x1b80, 4, 0xf5060317u }, - { 0x1b80, 4, 0xf7060325u }, - { 0x1b80, 4, 0xf7060327u }, - { 0x1b80, 4, 0xf8050335u }, - { 0x1b80, 4, 0xf8050337u }, - { 0x1b80, 4, 0xf9040345u }, - { 0x1b80, 4, 0xf9040347u }, - { 0x1b80, 4, 0x00010355u }, - { 0x1b80, 4, 0x00010357u }, - { 0x1b80, 4, 0x303b0365u }, - { 0x1b80, 4, 0x303b0367u }, - { 0x1b80, 4, 0x30500375u }, - { 0x1b80, 4, 0x30500377u }, - { 0x1b80, 4, 0x305c0385u }, - { 0x1b80, 4, 0x305c0387u }, - { 0x1b80, 4, 0x31d50395u }, - { 0x1b80, 4, 0x31d50397u }, - { 0x1b80, 4, 0x31c503a5u }, - { 0x1b80, 4, 0x31c503a7u }, - { 0x1b80, 4, 0x4d0403b5u }, - { 0x1b80, 4, 0x4d0403b7u }, - { 0x1b80, 4, 0x2ef003c5u }, - { 0x1b80, 4, 0x2ef003c7u }, - { 0x1b80, 4, 0x000203d5u }, - { 0x1b80, 4, 0x000203d7u }, - { 0x1b80, 4, 0x208003e5u }, - { 0x1b80, 4, 0x208003e7u }, - { 0x1b80, 4, 0x000003f5u }, - { 0x1b80, 4, 0x000003f7u }, - { 0x1b80, 4, 0x4d000405u }, - { 0x1b80, 4, 0x4d000407u }, - { 0x1b80, 4, 0x55070415u }, - { 0x1b80, 4, 0x55070417u }, - { 0x1b80, 4, 0xe1230425u }, - { 0x1b80, 4, 0xe1230427u }, - { 0x1b80, 4, 0xe1230435u }, - { 0x1b80, 4, 0xe1230437u }, - { 0x1b80, 4, 0x4d040445u }, - { 0x1b80, 4, 0x4d040447u }, - { 0x1b80, 4, 0x20800455u }, - { 0x1b80, 4, 0x20800457u }, - { 0x1b80, 4, 0x84000465u }, - { 0x1b80, 4, 0x84000467u }, - { 0x1b80, 4, 0x4d000475u }, - { 0x1b80, 4, 0x4d000477u }, - { 0x1b80, 4, 0x550f0485u }, - { 0x1b80, 4, 0x550f0487u }, - { 0x1b80, 4, 0xe1230495u }, - { 0x1b80, 4, 0xe1230497u }, - { 0x1b80, 4, 0x4f0204a5u }, - { 0x1b80, 4, 0x4f0204a7u }, - { 0x1b80, 4, 0x4e0004b5u }, - { 0x1b80, 4, 0x4e0004b7u }, - { 0x1b80, 4, 0x530204c5u }, - { 0x1b80, 4, 0x530204c7u }, - { 0x1b80, 4, 0x520104d5u }, - { 0x1b80, 4, 0x520104d7u }, - { 0x1b80, 4, 0xe12704e5u }, - { 0x1b80, 4, 0xe12704e7u }, - { 0x1b80, 4, 0x000104f5u }, - { 0x1b80, 4, 0x000104f7u }, - { 0x1b80, 4, 0x5c720505u }, - { 0x1b80, 4, 0x5c720507u }, - { 0x1b80, 4, 0xe1320515u }, - { 0x1b80, 4, 0xe1320517u }, - { 0x1b80, 4, 0x54e50525u }, - { 0x1b80, 4, 0x54e50527u }, - { 0x1b80, 4, 0x54bf0535u }, - { 0x1b80, 4, 0x54bf0537u }, - { 0x1b80, 4, 0x54c50545u }, - { 0x1b80, 4, 0x54c50547u }, - { 0x1b80, 4, 0x54be0555u }, - { 0x1b80, 4, 0x54be0557u }, - { 0x1b80, 4, 0x54df0565u }, - { 0x1b80, 4, 0x54df0567u }, - { 0x1b80, 4, 0x0ba60575u }, - { 0x1b80, 4, 0x0ba60577u }, - { 0x1b80, 4, 0xf3130585u }, - { 0x1b80, 4, 0xf3130587u }, - { 0x1b80, 4, 0xf41e0595u }, - { 0x1b80, 4, 0xf41e0597u }, - { 0x1b80, 4, 0xf53c05a5u }, - { 0x1b80, 4, 0xf53c05a7u }, - { 0x1b80, 4, 0x000105b5u }, - { 0x1b80, 4, 0x000105b7u }, - { 0x1b80, 4, 0x620605c5u }, - { 0x1b80, 4, 0x620605c7u }, - { 0x1b80, 4, 0x600605d5u }, - { 0x1b80, 4, 0x600605d7u }, - { 0x1b80, 4, 0xe1a905e5u }, - { 0x1b80, 4, 0xe1a905e7u }, - { 0x1b80, 4, 0x0c0005f5u }, - { 0x1b80, 4, 0x0c0005f7u }, - { 0x1b80, 4, 0x5c720605u }, - { 0x1b80, 4, 0x5c720607u }, - { 0x1b80, 4, 0xe1320615u }, - { 0x1b80, 4, 0xe1320617u }, - { 0x1b80, 4, 0x5cf10625u }, - { 0x1b80, 4, 0x5cf10627u }, - { 0x1b80, 4, 0x0c010635u }, - { 0x1b80, 4, 0x0c010637u }, - { 0x1b80, 4, 0xf2020645u }, - { 0x1b80, 4, 0xf2020647u }, - { 0x1b80, 4, 0x30d60655u }, - { 0x1b80, 4, 0x30d60657u }, - { 0x1b80, 4, 0x0ac60665u }, - { 0x1b80, 4, 0x0ac60667u }, - { 0x1b80, 4, 0xe1b60675u }, - { 0x1b80, 4, 0xe1b60677u }, - { 0x1b80, 4, 0xe1580685u }, - { 0x1b80, 4, 0xe1580687u }, - { 0x1b80, 4, 0x54e50695u }, - { 0x1b80, 4, 0x54e50697u }, - { 0x1b80, 4, 0x000106a5u }, - { 0x1b80, 4, 0x000106a7u }, - { 0x1b80, 4, 0x560106b5u }, - { 0x1b80, 4, 0x560106b7u }, - { 0x1b80, 4, 0x5ce206c5u }, - { 0x1b80, 4, 0x5ce206c7u }, - { 0x1b80, 4, 0x0ae106d5u }, - { 0x1b80, 4, 0x0ae106d7u }, - { 0x1b80, 4, 0x630c06e5u }, - { 0x1b80, 4, 0x630c06e7u }, - { 0x1b80, 4, 0xe13f06f5u }, - { 0x1b80, 4, 0xe13f06f7u }, - { 0x1b80, 4, 0x00270705u }, - { 0x1b80, 4, 0x00270707u }, - { 0x1b80, 4, 0xe16c0715u }, - { 0x1b80, 4, 0xe16c0717u }, - { 0x1b80, 4, 0x00020725u }, - { 0x1b80, 4, 0x00020727u }, - { 0x1b80, 4, 0x002a0735u }, - { 0x1b80, 4, 0x002a0737u }, - { 0x1b80, 4, 0x07140745u }, - { 0x1b80, 4, 0x07140747u }, - { 0x1b80, 4, 0x00020755u }, - { 0x1b80, 4, 0x00020757u }, - { 0x1b80, 4, 0x30c30765u }, - { 0x1b80, 4, 0x30c30767u }, - { 0x1b80, 4, 0x56010775u }, - { 0x1b80, 4, 0x56010777u }, - { 0x1b80, 4, 0x5ce20785u }, - { 0x1b80, 4, 0x5ce20787u }, - { 0x1b80, 4, 0x0ae10795u }, - { 0x1b80, 4, 0x0ae10797u }, - { 0x1b80, 4, 0x631707a5u }, - { 0x1b80, 4, 0x631707a7u }, - { 0x1b80, 4, 0xe13f07b5u }, - { 0x1b80, 4, 0xe13f07b7u }, - { 0x1b80, 4, 0x002507c5u }, - { 0x1b80, 4, 0x002507c7u }, - { 0x1b80, 4, 0xe16c07d5u }, - { 0x1b80, 4, 0xe16c07d7u }, - { 0x1b80, 4, 0x000207e5u }, - { 0x1b80, 4, 0x000207e7u }, - { 0x1b80, 4, 0x630f07f5u }, - { 0x1b80, 4, 0x630f07f7u }, - { 0x1b80, 4, 0xe13f0805u }, - { 0x1b80, 4, 0xe13f0807u }, - { 0x1b80, 4, 0x63070815u }, - { 0x1b80, 4, 0x63070817u }, - { 0x1b80, 4, 0xe13f0825u }, - { 0x1b80, 4, 0xe13f0827u }, - { 0x1b80, 4, 0x07140835u }, - { 0x1b80, 4, 0x07140837u }, - { 0x1b80, 4, 0x56000845u }, - { 0x1b80, 4, 0x56000847u }, - { 0x1b80, 4, 0x5cf20855u }, - { 0x1b80, 4, 0x5cf20857u }, - { 0x1b80, 4, 0x0af10865u }, - { 0x1b80, 4, 0x0af10867u }, - { 0x1b80, 4, 0x07140875u }, - { 0x1b80, 4, 0x07140877u }, - { 0x1b80, 4, 0x07140885u }, - { 0x1b80, 4, 0x07140887u }, - { 0x1b80, 4, 0x630f0895u }, - { 0x1b80, 4, 0x630f0897u }, - { 0x1b80, 4, 0xe13f08a5u }, - { 0x1b80, 4, 0xe13f08a7u }, - { 0x1b80, 4, 0x631708b5u }, - { 0x1b80, 4, 0x631708b7u }, - { 0x1b80, 4, 0xe13f08c5u }, - { 0x1b80, 4, 0xe13f08c7u }, - { 0x1b80, 4, 0x002508d5u }, - { 0x1b80, 4, 0x002508d7u }, - { 0x1b80, 4, 0xe16c08e5u }, - { 0x1b80, 4, 0xe16c08e7u }, - { 0x1b80, 4, 0x000208f5u }, - { 0x1b80, 4, 0x000208f7u }, - { 0x1b80, 4, 0x30c30905u }, - { 0x1b80, 4, 0x30c30907u }, - { 0x1b80, 4, 0xe1a90915u }, - { 0x1b80, 4, 0xe1a90917u }, - { 0x1b80, 4, 0x62060925u }, - { 0x1b80, 4, 0x62060927u }, - { 0x1b80, 4, 0x60060935u }, - { 0x1b80, 4, 0x60060937u }, - { 0x1b80, 4, 0xe1160945u }, - { 0x1b80, 4, 0xe1160947u }, - { 0x1b80, 4, 0x54be0955u }, - { 0x1b80, 4, 0x54be0957u }, - { 0x1b80, 4, 0x56010965u }, - { 0x1b80, 4, 0x56010967u }, - { 0x1b80, 4, 0x5ce20975u }, - { 0x1b80, 4, 0x5ce20977u }, - { 0x1b80, 4, 0x0ae10985u }, - { 0x1b80, 4, 0x0ae10987u }, - { 0x1b80, 4, 0x633a0995u }, - { 0x1b80, 4, 0x633a0997u }, - { 0x1b80, 4, 0xe13f09a5u }, - { 0x1b80, 4, 0xe13f09a7u }, - { 0x1b80, 4, 0x633709b5u }, - { 0x1b80, 4, 0x633709b7u }, - { 0x1b80, 4, 0xe13f09c5u }, - { 0x1b80, 4, 0xe13f09c7u }, - { 0x1b80, 4, 0x632f09d5u }, - { 0x1b80, 4, 0x632f09d7u }, - { 0x1b80, 4, 0xe13f09e5u }, - { 0x1b80, 4, 0xe13f09e7u }, - { 0x1b80, 4, 0x632709f5u }, - { 0x1b80, 4, 0x632709f7u }, - { 0x1b80, 4, 0xe13f0a05u }, - { 0x1b80, 4, 0xe13f0a07u }, - { 0x1b80, 4, 0x631f0a15u }, - { 0x1b80, 4, 0x631f0a17u }, - { 0x1b80, 4, 0xe13f0a25u }, - { 0x1b80, 4, 0xe13f0a27u }, - { 0x1b80, 4, 0x63170a35u }, - { 0x1b80, 4, 0x63170a37u }, - { 0x1b80, 4, 0xe13f0a45u }, - { 0x1b80, 4, 0xe13f0a47u }, - { 0x1b80, 4, 0x630f0a55u }, - { 0x1b80, 4, 0x630f0a57u }, - { 0x1b80, 4, 0xe13f0a65u }, - { 0x1b80, 4, 0xe13f0a67u }, - { 0x1b80, 4, 0x63070a75u }, - { 0x1b80, 4, 0x63070a77u }, - { 0x1b80, 4, 0xe13f0a85u }, - { 0x1b80, 4, 0xe13f0a87u }, - { 0x1b80, 4, 0xe16c0a95u }, - { 0x1b80, 4, 0xe16c0a97u }, - { 0x1b80, 4, 0x56000aa5u }, - { 0x1b80, 4, 0x56000aa7u }, - { 0x1b80, 4, 0x5cf20ab5u }, - { 0x1b80, 4, 0x5cf20ab7u }, - { 0x1b80, 4, 0x0af10ac5u }, - { 0x1b80, 4, 0x0af10ac7u }, - { 0x1b80, 4, 0xf5040ad5u }, - { 0x1b80, 4, 0xf5040ad7u }, - { 0x1b80, 4, 0xe13f0ae5u }, - { 0x1b80, 4, 0xe13f0ae7u }, - { 0x1b80, 4, 0xe16c0af5u }, - { 0x1b80, 4, 0xe16c0af7u }, - { 0x1b80, 4, 0x30b30b05u }, - { 0x1b80, 4, 0x30b30b07u }, - { 0x1b80, 4, 0x07140b15u }, - { 0x1b80, 4, 0x07140b17u }, - { 0x1b80, 4, 0x07140b25u }, - { 0x1b80, 4, 0x07140b27u }, - { 0x1b80, 4, 0x630f0b35u }, - { 0x1b80, 4, 0x630f0b37u }, - { 0x1b80, 4, 0xe13f0b45u }, - { 0x1b80, 4, 0xe13f0b47u }, - { 0x1b80, 4, 0x63170b55u }, - { 0x1b80, 4, 0x63170b57u }, - { 0x1b80, 4, 0xe13f0b65u }, - { 0x1b80, 4, 0xe13f0b67u }, - { 0x1b80, 4, 0x631f0b75u }, - { 0x1b80, 4, 0x631f0b77u }, - { 0x1b80, 4, 0xe13f0b85u }, - { 0x1b80, 4, 0xe13f0b87u }, - { 0x1b80, 4, 0x63270b95u }, - { 0x1b80, 4, 0x63270b97u }, - { 0x1b80, 4, 0xe13f0ba5u }, - { 0x1b80, 4, 0xe13f0ba7u }, - { 0x1b80, 4, 0x632f0bb5u }, - { 0x1b80, 4, 0x632f0bb7u }, - { 0x1b80, 4, 0xe13f0bc5u }, - { 0x1b80, 4, 0xe13f0bc7u }, - { 0x1b80, 4, 0x63370bd5u }, - { 0x1b80, 4, 0x63370bd7u }, - { 0x1b80, 4, 0xe13f0be5u }, - { 0x1b80, 4, 0xe13f0be7u }, - { 0x1b80, 4, 0x633a0bf5u }, - { 0x1b80, 4, 0x633a0bf7u }, - { 0x1b80, 4, 0xe13f0c05u }, - { 0x1b80, 4, 0xe13f0c07u }, - { 0x1b80, 4, 0xf60b0c15u }, - { 0x1b80, 4, 0xf60b0c17u }, - { 0x1b80, 4, 0xf7170c25u }, - { 0x1b80, 4, 0xf7170c27u }, - { 0x1b80, 4, 0x4d300c35u }, - { 0x1b80, 4, 0x4d300c37u }, - { 0x1b80, 4, 0x57040c45u }, - { 0x1b80, 4, 0x57040c47u }, - { 0x1b80, 4, 0x57000c55u }, - { 0x1b80, 4, 0x57000c57u }, - { 0x1b80, 4, 0x96000c65u }, - { 0x1b80, 4, 0x96000c67u }, - { 0x1b80, 4, 0x57080c75u }, - { 0x1b80, 4, 0x57080c77u }, - { 0x1b80, 4, 0x57000c85u }, - { 0x1b80, 4, 0x57000c87u }, - { 0x1b80, 4, 0x95000c95u }, - { 0x1b80, 4, 0x95000c97u }, - { 0x1b80, 4, 0x4d000ca5u }, - { 0x1b80, 4, 0x4d000ca7u }, - { 0x1b80, 4, 0x6c070cb5u }, - { 0x1b80, 4, 0x6c070cb7u }, - { 0x1b80, 4, 0x00010cc5u }, - { 0x1b80, 4, 0x00010cc7u }, - { 0x1b80, 4, 0x00220cd5u }, - { 0x1b80, 4, 0x00220cd7u }, - { 0x1b80, 4, 0x06140ce5u }, - { 0x1b80, 4, 0x06140ce7u }, - { 0x1b80, 4, 0xe16c0cf5u }, - { 0x1b80, 4, 0xe16c0cf7u }, - { 0x1b80, 4, 0x00020d05u }, - { 0x1b80, 4, 0x00020d07u }, - { 0x1b80, 4, 0x00250d15u }, - { 0x1b80, 4, 0x00250d17u }, - { 0x1b80, 4, 0x06140d25u }, - { 0x1b80, 4, 0x06140d27u }, - { 0x1b80, 4, 0xe16c0d35u }, - { 0x1b80, 4, 0xe16c0d37u }, - { 0x1b80, 4, 0x00020d45u }, - { 0x1b80, 4, 0x00020d47u }, - { 0x1b80, 4, 0x00010d55u }, - { 0x1b80, 4, 0x00010d57u }, - { 0x1b80, 4, 0x00320d65u }, - { 0x1b80, 4, 0x00320d67u }, - { 0x1b80, 4, 0xe16c0d75u }, - { 0x1b80, 4, 0xe16c0d77u }, - { 0x1b80, 4, 0x00020d85u }, - { 0x1b80, 4, 0x00020d87u }, - { 0x1b80, 4, 0xe1860d95u }, - { 0x1b80, 4, 0xe1860d97u }, - { 0x1b80, 4, 0xe1b60da5u }, - { 0x1b80, 4, 0xe1b60da7u }, - { 0x1b80, 4, 0x5cd10db5u }, - { 0x1b80, 4, 0x5cd10db7u }, - { 0x1b80, 4, 0x673a0dc5u }, - { 0x1b80, 4, 0x673a0dc7u }, - { 0x1b80, 4, 0xe1230dd5u }, - { 0x1b80, 4, 0xe1230dd7u }, - { 0x1b80, 4, 0xf80b0de5u }, - { 0x1b80, 4, 0xf80b0de7u }, - { 0x1b80, 4, 0xf9110df5u }, - { 0x1b80, 4, 0xf9110df7u }, - { 0x1b80, 4, 0xe1580e05u }, - { 0x1b80, 4, 0xe1580e07u }, - { 0x1b80, 4, 0x67370e15u }, - { 0x1b80, 4, 0x67370e17u }, - { 0x1b80, 4, 0xe1580e25u }, - { 0x1b80, 4, 0xe1580e27u }, - { 0x1b80, 4, 0x672f0e35u }, - { 0x1b80, 4, 0x672f0e37u }, - { 0x1b80, 4, 0xe1580e45u }, - { 0x1b80, 4, 0xe1580e47u }, - { 0x1b80, 4, 0x67270e55u }, - { 0x1b80, 4, 0x67270e57u }, - { 0x1b80, 4, 0xe1580e65u }, - { 0x1b80, 4, 0xe1580e67u }, - { 0x1b80, 4, 0x671f0e75u }, - { 0x1b80, 4, 0x671f0e77u }, - { 0x1b80, 4, 0xe1580e85u }, - { 0x1b80, 4, 0xe1580e87u }, - { 0x1b80, 4, 0x67170e95u }, - { 0x1b80, 4, 0x67170e97u }, - { 0x1b80, 4, 0xe1580ea5u }, - { 0x1b80, 4, 0xe1580ea7u }, - { 0x1b80, 4, 0xf8020eb5u }, - { 0x1b80, 4, 0xf8020eb7u }, - { 0x1b80, 4, 0x30ee0ec5u }, - { 0x1b80, 4, 0x30ee0ec7u }, - { 0x1b80, 4, 0xe0d10ed5u }, - { 0x1b80, 4, 0xe0d10ed7u }, - { 0x1b80, 4, 0x670f0ee5u }, - { 0x1b80, 4, 0x670f0ee7u }, - { 0x1b80, 4, 0xe1580ef5u }, - { 0x1b80, 4, 0xe1580ef7u }, - { 0x1b80, 4, 0x67070f05u }, - { 0x1b80, 4, 0x67070f07u }, - { 0x1b80, 4, 0xe1580f15u }, - { 0x1b80, 4, 0xe1580f17u }, - { 0x1b80, 4, 0xf9020f25u }, - { 0x1b80, 4, 0xf9020f27u }, - { 0x1b80, 4, 0x30f50f35u }, - { 0x1b80, 4, 0x30f50f37u }, - { 0x1b80, 4, 0xe0cd0f45u }, - { 0x1b80, 4, 0xe0cd0f47u }, - { 0x1b80, 4, 0x06140f55u }, - { 0x1b80, 4, 0x06140f57u }, - { 0x1b80, 4, 0xe16c0f65u }, - { 0x1b80, 4, 0xe16c0f67u }, - { 0x1b80, 4, 0x5cf10f75u }, - { 0x1b80, 4, 0x5cf10f77u }, - { 0x1b80, 4, 0xe1580f85u }, - { 0x1b80, 4, 0xe1580f87u }, - { 0x1b80, 4, 0x06140f95u }, - { 0x1b80, 4, 0x06140f97u }, - { 0x1b80, 4, 0xe16c0fa5u }, - { 0x1b80, 4, 0xe16c0fa7u }, - { 0x1b80, 4, 0xf9020fb5u }, - { 0x1b80, 4, 0xf9020fb7u }, - { 0x1b80, 4, 0x30ff0fc5u }, - { 0x1b80, 4, 0x30ff0fc7u }, - { 0x1b80, 4, 0xe0cd0fd5u }, - { 0x1b80, 4, 0xe0cd0fd7u }, - { 0x1b80, 4, 0x31130fe5u }, - { 0x1b80, 4, 0x31130fe7u }, - { 0x1b80, 4, 0x670f0ff5u }, - { 0x1b80, 4, 0x670f0ff7u }, - { 0x1b80, 4, 0xe1581005u }, - { 0x1b80, 4, 0xe1581007u }, - { 0x1b80, 4, 0x67171015u }, - { 0x1b80, 4, 0x67171017u }, - { 0x1b80, 4, 0xe1581025u }, - { 0x1b80, 4, 0xe1581027u }, - { 0x1b80, 4, 0xf8021035u }, - { 0x1b80, 4, 0xf8021037u }, - { 0x1b80, 4, 0x31071045u }, - { 0x1b80, 4, 0x31071047u }, - { 0x1b80, 4, 0xe0d11055u }, - { 0x1b80, 4, 0xe0d11057u }, - { 0x1b80, 4, 0x31131065u }, - { 0x1b80, 4, 0x31131067u }, - { 0x1b80, 4, 0x670f1075u }, - { 0x1b80, 4, 0x670f1077u }, - { 0x1b80, 4, 0xe1581085u }, - { 0x1b80, 4, 0xe1581087u }, - { 0x1b80, 4, 0x671f1095u }, - { 0x1b80, 4, 0x671f1097u }, - { 0x1b80, 4, 0xe15810a5u }, - { 0x1b80, 4, 0xe15810a7u }, - { 0x1b80, 4, 0x672710b5u }, - { 0x1b80, 4, 0x672710b7u }, - { 0x1b80, 4, 0xe15810c5u }, - { 0x1b80, 4, 0xe15810c7u }, - { 0x1b80, 4, 0x672f10d5u }, - { 0x1b80, 4, 0x672f10d7u }, - { 0x1b80, 4, 0xe15810e5u }, - { 0x1b80, 4, 0xe15810e7u }, - { 0x1b80, 4, 0x673710f5u }, - { 0x1b80, 4, 0x673710f7u }, - { 0x1b80, 4, 0xe1581105u }, - { 0x1b80, 4, 0xe1581107u }, - { 0x1b80, 4, 0x673a1115u }, - { 0x1b80, 4, 0x673a1117u }, - { 0x1b80, 4, 0xe1581125u }, - { 0x1b80, 4, 0xe1581127u }, - { 0x1b80, 4, 0x4d101135u }, - { 0x1b80, 4, 0x4d101137u }, - { 0x1b80, 4, 0x30c41145u }, - { 0x1b80, 4, 0x30c41147u }, - { 0x1b80, 4, 0x00011155u }, - { 0x1b80, 4, 0x00011157u }, - { 0x1b80, 4, 0x6f241165u }, - { 0x1b80, 4, 0x6f241167u }, - { 0x1b80, 4, 0x6e401175u }, - { 0x1b80, 4, 0x6e401177u }, - { 0x1b80, 4, 0x6d001185u }, - { 0x1b80, 4, 0x6d001187u }, - { 0x1b80, 4, 0x55031195u }, - { 0x1b80, 4, 0x55031197u }, - { 0x1b80, 4, 0x312311a5u }, - { 0x1b80, 4, 0x312311a7u }, - { 0x1b80, 4, 0x6f1c11b5u }, - { 0x1b80, 4, 0x6f1c11b7u }, - { 0x1b80, 4, 0x6e4011c5u }, - { 0x1b80, 4, 0x6e4011c7u }, - { 0x1b80, 4, 0x550b11d5u }, - { 0x1b80, 4, 0x550b11d7u }, - { 0x1b80, 4, 0x312311e5u }, - { 0x1b80, 4, 0x312311e7u }, - { 0x1b80, 4, 0x061c11f5u }, - { 0x1b80, 4, 0x061c11f7u }, - { 0x1b80, 4, 0x54de1205u }, - { 0x1b80, 4, 0x54de1207u }, - { 0x1b80, 4, 0x06dc1215u }, - { 0x1b80, 4, 0x06dc1217u }, - { 0x1b80, 4, 0x55131225u }, - { 0x1b80, 4, 0x55131227u }, - { 0x1b80, 4, 0x74011235u }, - { 0x1b80, 4, 0x74011237u }, - { 0x1b80, 4, 0x74001245u }, - { 0x1b80, 4, 0x74001247u }, - { 0x1b80, 4, 0x8e001255u }, - { 0x1b80, 4, 0x8e001257u }, - { 0x1b80, 4, 0x00011265u }, - { 0x1b80, 4, 0x00011267u }, - { 0x1b80, 4, 0x57021275u }, - { 0x1b80, 4, 0x57021277u }, - { 0x1b80, 4, 0x57001285u }, - { 0x1b80, 4, 0x57001287u }, - { 0x1b80, 4, 0x97001295u }, - { 0x1b80, 4, 0x97001297u }, - { 0x1b80, 4, 0x000112a5u }, - { 0x1b80, 4, 0x000112a7u }, - { 0x1b80, 4, 0x54bf12b5u }, - { 0x1b80, 4, 0x54bf12b7u }, - { 0x1b80, 4, 0x54c112c5u }, - { 0x1b80, 4, 0x54c112c7u }, - { 0x1b80, 4, 0x54a212d5u }, - { 0x1b80, 4, 0x54a212d7u }, - { 0x1b80, 4, 0x54c012e5u }, - { 0x1b80, 4, 0x54c012e7u }, - { 0x1b80, 4, 0x54a112f5u }, - { 0x1b80, 4, 0x54a112f7u }, - { 0x1b80, 4, 0x54df1305u }, - { 0x1b80, 4, 0x54df1307u }, - { 0x1b80, 4, 0x00011315u }, - { 0x1b80, 4, 0x00011317u }, - { 0x1b80, 4, 0x55001325u }, - { 0x1b80, 4, 0x55001327u }, - { 0x1b80, 4, 0xe1231335u }, - { 0x1b80, 4, 0xe1231337u }, - { 0x1b80, 4, 0x54811345u }, - { 0x1b80, 4, 0x54811347u }, - { 0x1b80, 4, 0xe1231355u }, - { 0x1b80, 4, 0xe1231357u }, - { 0x1b80, 4, 0x54801365u }, - { 0x1b80, 4, 0x54801367u }, - { 0x1b80, 4, 0x002a1375u }, - { 0x1b80, 4, 0x002a1377u }, - { 0x1b80, 4, 0xe12b1385u }, - { 0x1b80, 4, 0xe12b1387u }, - { 0x1b80, 4, 0xe1231395u }, - { 0x1b80, 4, 0xe1231397u }, - { 0x1b80, 4, 0x548013a5u }, - { 0x1b80, 4, 0x548013a7u }, - { 0x1b80, 4, 0xe17213b5u }, - { 0x1b80, 4, 0xe17213b7u }, - { 0x1b80, 4, 0xbf3013c5u }, - { 0x1b80, 4, 0xbf3013c7u }, - { 0x1b80, 4, 0x000213d5u }, - { 0x1b80, 4, 0x000213d7u }, - { 0x1b80, 4, 0x302813e5u }, - { 0x1b80, 4, 0x302813e7u }, - { 0x1b80, 4, 0x4f7813f5u }, - { 0x1b80, 4, 0x4f7813f7u }, - { 0x1b80, 4, 0x4e001405u }, - { 0x1b80, 4, 0x4e001407u }, - { 0x1b80, 4, 0x53871415u }, - { 0x1b80, 4, 0x53871417u }, - { 0x1b80, 4, 0x52f11425u }, - { 0x1b80, 4, 0x52f11427u }, - { 0x1b80, 4, 0xe1161435u }, - { 0x1b80, 4, 0xe1161437u }, - { 0x1b80, 4, 0xe11b1445u }, - { 0x1b80, 4, 0xe11b1447u }, - { 0x1b80, 4, 0xe11f1455u }, - { 0x1b80, 4, 0xe11f1457u }, - { 0x1b80, 4, 0xe1271465u }, - { 0x1b80, 4, 0xe1271467u }, - { 0x1b80, 4, 0x54811475u }, - { 0x1b80, 4, 0x54811477u }, - { 0x1b80, 4, 0xe1161485u }, - { 0x1b80, 4, 0xe1161487u }, - { 0x1b80, 4, 0xe11b1495u }, - { 0x1b80, 4, 0xe11b1497u }, - { 0x1b80, 4, 0xe11f14a5u }, - { 0x1b80, 4, 0xe11f14a7u }, - { 0x1b80, 4, 0xe12714b5u }, - { 0x1b80, 4, 0xe12714b7u }, - { 0x1b80, 4, 0x548014c5u }, - { 0x1b80, 4, 0x548014c7u }, - { 0x1b80, 4, 0x002a14d5u }, - { 0x1b80, 4, 0x002a14d7u }, - { 0x1b80, 4, 0xe12b14e5u }, - { 0x1b80, 4, 0xe12b14e7u }, - { 0x1b80, 4, 0xe11614f5u }, - { 0x1b80, 4, 0xe11614f7u }, - { 0x1b80, 4, 0xe11b1505u }, - { 0x1b80, 4, 0xe11b1507u }, - { 0x1b80, 4, 0xe11f1515u }, - { 0x1b80, 4, 0xe11f1517u }, - { 0x1b80, 4, 0xe1271525u }, - { 0x1b80, 4, 0xe1271527u }, - { 0x1b80, 4, 0x54801535u }, - { 0x1b80, 4, 0x54801537u }, - { 0x1b80, 4, 0xe1721545u }, - { 0x1b80, 4, 0xe1721547u }, - { 0x1b80, 4, 0xbf171555u }, - { 0x1b80, 4, 0xbf171557u }, - { 0x1b80, 4, 0x00021565u }, - { 0x1b80, 4, 0x00021567u }, - { 0x1b80, 4, 0x30281575u }, - { 0x1b80, 4, 0x30281577u }, - { 0x1b80, 4, 0x06141585u }, - { 0x1b80, 4, 0x06141587u }, - { 0x1b80, 4, 0x73201595u }, - { 0x1b80, 4, 0x73201597u }, - { 0x1b80, 4, 0x720015a5u }, - { 0x1b80, 4, 0x720015a7u }, - { 0x1b80, 4, 0x710015b5u }, - { 0x1b80, 4, 0x710015b7u }, - { 0x1b80, 4, 0x550115c5u }, - { 0x1b80, 4, 0x550115c7u }, - { 0x1b80, 4, 0xe12315d5u }, - { 0x1b80, 4, 0xe12315d7u }, - { 0x1b80, 4, 0xe12715e5u }, - { 0x1b80, 4, 0xe12715e7u }, - { 0x1b80, 4, 0x548115f5u }, - { 0x1b80, 4, 0x548115f7u }, - { 0x1b80, 4, 0xe1231605u }, - { 0x1b80, 4, 0xe1231607u }, - { 0x1b80, 4, 0xe1271615u }, - { 0x1b80, 4, 0xe1271617u }, - { 0x1b80, 4, 0x54801625u }, - { 0x1b80, 4, 0x54801627u }, - { 0x1b80, 4, 0x002a1635u }, - { 0x1b80, 4, 0x002a1637u }, - { 0x1b80, 4, 0xe12b1645u }, - { 0x1b80, 4, 0xe12b1647u }, - { 0x1b80, 4, 0xe1231655u }, - { 0x1b80, 4, 0xe1231657u }, - { 0x1b80, 4, 0xe1271665u }, - { 0x1b80, 4, 0xe1271667u }, - { 0x1b80, 4, 0x54801675u }, - { 0x1b80, 4, 0x54801677u }, - { 0x1b80, 4, 0xe1721685u }, - { 0x1b80, 4, 0xe1721687u }, - { 0x1b80, 4, 0xbf031695u }, - { 0x1b80, 4, 0xbf031697u }, - { 0x1b80, 4, 0x000216a5u }, - { 0x1b80, 4, 0x000216a7u }, - { 0x1b80, 4, 0x302816b5u }, - { 0x1b80, 4, 0x302816b7u }, - { 0x1b80, 4, 0x54bf16c5u }, - { 0x1b80, 4, 0x54bf16c7u }, - { 0x1b80, 4, 0x54c516d5u }, - { 0x1b80, 4, 0x54c516d7u }, - { 0x1b80, 4, 0x050a16e5u }, - { 0x1b80, 4, 0x050a16e7u }, - { 0x1b80, 4, 0x071416f5u }, - { 0x1b80, 4, 0x071416f7u }, - { 0x1b80, 4, 0x54df1705u }, - { 0x1b80, 4, 0x54df1707u }, - { 0x1b80, 4, 0x00011715u }, - { 0x1b80, 4, 0x00011717u }, - { 0x1b80, 4, 0x54bf1725u }, - { 0x1b80, 4, 0x54bf1727u }, - { 0x1b80, 4, 0x54c01735u }, - { 0x1b80, 4, 0x54c01737u }, - { 0x1b80, 4, 0x54a31745u }, - { 0x1b80, 4, 0x54a31747u }, - { 0x1b80, 4, 0x54c11755u }, - { 0x1b80, 4, 0x54c11757u }, - { 0x1b80, 4, 0x54a41765u }, - { 0x1b80, 4, 0x54a41767u }, - { 0x1b80, 4, 0x4c831775u }, - { 0x1b80, 4, 0x4c831777u }, - { 0x1b80, 4, 0x4c031785u }, - { 0x1b80, 4, 0x4c031787u }, - { 0x1b80, 4, 0xbf0b1795u }, - { 0x1b80, 4, 0xbf0b1797u }, - { 0x1b80, 4, 0x54c217a5u }, - { 0x1b80, 4, 0x54c217a7u }, - { 0x1b80, 4, 0x54a417b5u }, - { 0x1b80, 4, 0x54a417b7u }, - { 0x1b80, 4, 0x4c8517c5u }, - { 0x1b80, 4, 0x4c8517c7u }, - { 0x1b80, 4, 0x4c0517d5u }, - { 0x1b80, 4, 0x4c0517d7u }, - { 0x1b80, 4, 0xbf0617e5u }, - { 0x1b80, 4, 0xbf0617e7u }, - { 0x1b80, 4, 0x54c117f5u }, - { 0x1b80, 4, 0x54c117f7u }, - { 0x1b80, 4, 0x54a31805u }, - { 0x1b80, 4, 0x54a31807u }, - { 0x1b80, 4, 0x4c861815u }, - { 0x1b80, 4, 0x4c861817u }, - { 0x1b80, 4, 0x4c061825u }, - { 0x1b80, 4, 0x4c061827u }, - { 0x1b80, 4, 0xbf011835u }, - { 0x1b80, 4, 0xbf011837u }, - { 0x1b80, 4, 0x54df1845u }, - { 0x1b80, 4, 0x54df1847u }, - { 0x1b80, 4, 0x00011855u }, - { 0x1b80, 4, 0x00011857u }, - { 0x1b80, 4, 0x00071865u }, - { 0x1b80, 4, 0x00071867u }, - { 0x1b80, 4, 0x54011875u }, - { 0x1b80, 4, 0x54011877u }, - { 0x1b80, 4, 0x00041885u }, - { 0x1b80, 4, 0x00041887u }, - { 0x1b80, 4, 0x56001895u }, - { 0x1b80, 4, 0x56001897u }, - { 0x1b80, 4, 0x5cf218a5u }, - { 0x1b80, 4, 0x5cf218a7u }, - { 0x1b80, 4, 0x630718b5u }, - { 0x1b80, 4, 0x630718b7u }, - { 0x1b80, 4, 0x620418c5u }, - { 0x1b80, 4, 0x620418c7u }, - { 0x1b80, 4, 0x610018d5u }, - { 0x1b80, 4, 0x610018d7u }, - { 0x1b80, 4, 0x670718e5u }, - { 0x1b80, 4, 0x670718e7u }, - { 0x1b80, 4, 0x660618f5u }, - { 0x1b80, 4, 0x660618f7u }, - { 0x1b80, 4, 0x6f201905u }, - { 0x1b80, 4, 0x6f201907u }, - { 0x1b80, 4, 0x6e001915u }, - { 0x1b80, 4, 0x6e001917u }, - { 0x1b80, 4, 0x6d001925u }, - { 0x1b80, 4, 0x6d001927u }, - { 0x1b80, 4, 0x6c031935u }, - { 0x1b80, 4, 0x6c031937u }, - { 0x1b80, 4, 0x73201945u }, - { 0x1b80, 4, 0x73201947u }, - { 0x1b80, 4, 0x72001955u }, - { 0x1b80, 4, 0x72001957u }, - { 0x1b80, 4, 0x71001965u }, - { 0x1b80, 4, 0x71001967u }, - { 0x1b80, 4, 0x7b201975u }, - { 0x1b80, 4, 0x7b201977u }, - { 0x1b80, 4, 0x7a001985u }, - { 0x1b80, 4, 0x7a001987u }, - { 0x1b80, 4, 0x79001995u }, - { 0x1b80, 4, 0x79001997u }, - { 0x1b80, 4, 0x7f2019a5u }, - { 0x1b80, 4, 0x7f2019a7u }, - { 0x1b80, 4, 0x7e0019b5u }, - { 0x1b80, 4, 0x7e0019b7u }, - { 0x1b80, 4, 0x7d0019c5u }, - { 0x1b80, 4, 0x7d0019c7u }, - { 0x1b80, 4, 0x090119d5u }, - { 0x1b80, 4, 0x090119d7u }, - { 0x1b80, 4, 0x0ac619e5u }, - { 0x1b80, 4, 0x0ac619e7u }, - { 0x1b80, 4, 0x0ba619f5u }, - { 0x1b80, 4, 0x0ba619f7u }, - { 0x1b80, 4, 0x0c011a05u }, - { 0x1b80, 4, 0x0c011a07u }, - { 0x1b80, 4, 0x0d021a15u }, - { 0x1b80, 4, 0x0d021a17u }, - { 0x1b80, 4, 0x0e041a25u }, - { 0x1b80, 4, 0x0e041a27u }, - { 0x1b80, 4, 0x0fff1a35u }, - { 0x1b80, 4, 0x0fff1a37u }, - { 0x1b80, 4, 0x4d041a45u }, - { 0x1b80, 4, 0x4d041a47u }, - { 0x1b80, 4, 0x28f81a55u }, - { 0x1b80, 4, 0x28f81a57u }, - { 0x1b80, 4, 0xe0001a65u }, - { 0x1b80, 4, 0xe0001a67u }, - { 0x1b80, 4, 0x4d001a75u }, - { 0x1b80, 4, 0x4d001a77u }, - { 0x1b80, 4, 0x00011a85u }, - { 0x1b80, 4, 0x00011a87u }, - { 0x1b80, 4, 0x4d041a95u }, - { 0x1b80, 4, 0x4d041a97u }, - { 0x1b80, 4, 0x2ef81aa5u }, - { 0x1b80, 4, 0x2ef81aa7u }, - { 0x1b80, 4, 0x00021ab5u }, - { 0x1b80, 4, 0x00021ab7u }, - { 0x1b80, 4, 0x23031ac5u }, - { 0x1b80, 4, 0x23031ac7u }, - { 0x1b80, 4, 0x00001ad5u }, - { 0x1b80, 4, 0x00001ad7u }, - { 0x1b80, 4, 0x23131ae5u }, - { 0x1b80, 4, 0x23131ae7u }, - { 0x1b80, 4, 0xe77f1af5u }, - { 0x1b80, 4, 0xe77f1af7u }, - { 0x1b80, 4, 0x232f1b05u }, - { 0x1b80, 4, 0x232f1b07u }, - { 0x1b80, 4, 0xefbf1b15u }, - { 0x1b80, 4, 0xefbf1b17u }, - { 0x1b80, 4, 0x2ef01b25u }, - { 0x1b80, 4, 0x2ef01b27u }, - { 0x1b80, 4, 0x00021b35u }, - { 0x1b80, 4, 0x00021b37u }, - { 0x1b80, 4, 0x4d001b45u }, - { 0x1b80, 4, 0x4d001b47u }, - { 0x1b80, 4, 0x00011b55u }, - { 0x1b80, 4, 0x00011b57u }, - { 0x1b80, 4, 0x4d041b65u }, - { 0x1b80, 4, 0x4d041b67u }, - { 0x1b80, 4, 0x2ef81b75u }, - { 0x1b80, 4, 0x2ef81b77u }, - { 0x1b80, 4, 0x00021b85u }, - { 0x1b80, 4, 0x00021b87u }, - { 0x1b80, 4, 0x23031b95u }, - { 0x1b80, 4, 0x23031b97u }, - { 0x1b80, 4, 0x00001ba5u }, - { 0x1b80, 4, 0x00001ba7u }, - { 0x1b80, 4, 0x23131bb5u }, - { 0x1b80, 4, 0x23131bb7u }, - { 0x1b80, 4, 0xe77f1bc5u }, - { 0x1b80, 4, 0xe77f1bc7u }, - { 0x1b80, 4, 0x232f1bd5u }, - { 0x1b80, 4, 0x232f1bd7u }, - { 0x1b80, 4, 0xe79f1be5u }, - { 0x1b80, 4, 0xe79f1be7u }, - { 0x1b80, 4, 0x2ef01bf5u }, - { 0x1b80, 4, 0x2ef01bf7u }, - { 0x1b80, 4, 0x00021c05u }, - { 0x1b80, 4, 0x00021c07u }, - { 0x1b80, 4, 0x28f81c15u }, - { 0x1b80, 4, 0x28f81c17u }, - { 0x1b80, 4, 0x80001c25u }, - { 0x1b80, 4, 0x80001c27u }, - { 0x1b80, 4, 0x4d001c35u }, - { 0x1b80, 4, 0x4d001c37u }, - { 0x1b80, 4, 0x00011c45u }, - { 0x1b80, 4, 0x00011c47u }, - { 0x1b80, 4, 0x00041c55u }, - { 0x1b80, 4, 0x00041c57u }, - { 0x1b80, 4, 0x6bc01c65u }, - { 0x1b80, 4, 0x6bc01c67u }, - { 0x1b80, 4, 0x4d041c75u }, - { 0x1b80, 4, 0x4d041c77u }, - { 0x1b80, 4, 0x68241c85u }, - { 0x1b80, 4, 0x68241c87u }, - { 0x1b80, 4, 0x66061c95u }, - { 0x1b80, 4, 0x66061c97u }, - { 0x1b80, 4, 0x650c1ca5u }, - { 0x1b80, 4, 0x650c1ca7u }, - { 0x1b80, 4, 0x64471cb5u }, - { 0x1b80, 4, 0x64471cb7u }, - { 0x1b80, 4, 0x23411cc5u }, - { 0x1b80, 4, 0x23411cc7u }, - { 0x1b80, 4, 0x100e1cd5u }, - { 0x1b80, 4, 0x100e1cd7u }, - { 0x1b80, 4, 0x60101ce5u }, - { 0x1b80, 4, 0x60101ce7u }, - { 0x1b80, 4, 0x23411cf5u }, - { 0x1b80, 4, 0x23411cf7u }, - { 0x1b80, 4, 0x60811d05u }, - { 0x1b80, 4, 0x60811d07u }, - { 0x1b80, 4, 0x23411d15u }, - { 0x1b80, 4, 0x23411d17u }, - { 0x1b80, 4, 0x70e11d25u }, - { 0x1b80, 4, 0x70e11d27u }, - { 0x1b80, 4, 0x4d001d35u }, - { 0x1b80, 4, 0x4d001d37u }, - { 0x1b80, 4, 0x00011d45u }, - { 0x1b80, 4, 0x00011d47u }, - { 0x1b80, 4, 0x00041d55u }, - { 0x1b80, 4, 0x00041d57u }, - { 0x1b80, 4, 0x6b401d65u }, - { 0x1b80, 4, 0x6b401d67u }, - { 0x1b80, 4, 0x4d041d75u }, - { 0x1b80, 4, 0x4d041d77u }, - { 0x1b80, 4, 0x68481d85u }, - { 0x1b80, 4, 0x68481d87u }, - { 0x1b80, 4, 0x66061d95u }, - { 0x1b80, 4, 0x66061d97u }, - { 0x1b80, 4, 0x65081da5u }, - { 0x1b80, 4, 0x65081da7u }, - { 0x1b80, 4, 0x64471db5u }, - { 0x1b80, 4, 0x64471db7u }, - { 0x1b80, 4, 0x23411dc5u }, - { 0x1b80, 4, 0x23411dc7u }, - { 0x1b80, 4, 0x11e41dd5u }, - { 0x1b80, 4, 0x11e41dd7u }, - { 0x1b80, 4, 0x60011de5u }, - { 0x1b80, 4, 0x60011de7u }, - { 0x1b80, 4, 0x23411df5u }, - { 0x1b80, 4, 0x23411df7u }, - { 0x1b80, 4, 0x60e11e05u }, - { 0x1b80, 4, 0x60e11e07u }, - { 0x1b80, 4, 0x23411e15u }, - { 0x1b80, 4, 0x23411e17u }, - { 0x1b80, 4, 0x70611e25u }, - { 0x1b80, 4, 0x70611e27u }, - { 0x1b80, 4, 0x4d001e35u }, - { 0x1b80, 4, 0x4d001e37u }, - { 0x1b80, 4, 0x00011e45u }, - { 0x1b80, 4, 0x00011e47u }, - { 0x1b80, 4, 0x00001e55u }, - { 0x1b80, 4, 0x00001e57u }, - { 0x1b80, 4, 0x00001e65u }, - { 0x1b80, 4, 0x00001e67u }, - { 0x1b80, 4, 0x00001e75u }, - { 0x1b80, 4, 0x00001e77u }, - { 0x1b80, 4, 0x00001e85u }, - { 0x1b80, 4, 0x00001e87u }, - { 0x1b80, 4, 0x00001e95u }, - { 0x1b80, 4, 0x00001e97u }, - { 0x1b80, 4, 0x00001ea5u }, - { 0x1b80, 4, 0x00001ea7u }, - { 0x1b80, 4, 0x00001eb5u }, - { 0x1b80, 4, 0x00001eb7u }, - { 0x1b80, 4, 0x00001ec5u }, - { 0x1b80, 4, 0x00001ec7u }, - { 0x1b80, 4, 0x00001ed5u }, - { 0x1b80, 4, 0x00001ed7u }, - { 0x1b80, 4, 0x00001ee5u }, - { 0x1b80, 4, 0x00001ee7u }, - { 0x1b80, 4, 0x00001ef5u }, - { 0x1b80, 4, 0x00001ef7u }, - { 0x1b80, 4, 0x00001f05u }, - { 0x1b80, 4, 0x00001f07u }, - { 0x1b80, 4, 0x00001f15u }, - { 0x1b80, 4, 0x00001f17u }, - { 0x1b80, 4, 0x00001f25u }, - { 0x1b80, 4, 0x00001f27u }, - { 0x1b80, 4, 0x00001f35u }, - { 0x1b80, 4, 0x00001f37u }, - { 0x1b80, 4, 0x00001f45u }, - { 0x1b80, 4, 0x00001f47u }, - { 0x1b80, 4, 0x00001f55u }, - { 0x1b80, 4, 0x00001f57u }, - { 0x1b80, 4, 0x00001f65u }, - { 0x1b80, 4, 0x00001f67u }, - { 0x1b80, 4, 0x00001f75u }, - { 0x1b80, 4, 0x00001f77u }, - { 0x1b80, 4, 0x00001f85u }, - { 0x1b80, 4, 0x00001f87u }, - { 0x1b80, 4, 0x00001f95u }, - { 0x1b80, 4, 0x00001f97u }, - { 0x1b80, 4, 0x00001fa5u }, - { 0x1b80, 4, 0x00001fa7u }, - { 0x1b80, 4, 0x00001fb5u }, - { 0x1b80, 4, 0x00001fb7u }, - { 0x1b80, 4, 0x00001fc5u }, - { 0x1b80, 4, 0x00001fc7u }, - { 0x1b80, 4, 0x00001fd5u }, - { 0x1b80, 4, 0x00001fd7u }, - { 0x1b80, 4, 0x00001fe5u }, - { 0x1b80, 4, 0x00001fe7u }, - { 0x1b80, 4, 0x00001ff5u }, - { 0x1b80, 4, 0x00001ff7u }, - { 0x1b80, 4, 0x00000006u }, - { 0x1b80, 4, 0x00000002u }, - { 0x081c, 4, 0xff000003u }, - { 0x081c, 4, 0xfe000003u }, - { 0x081c, 4, 0xfd020003u }, - { 0x081c, 4, 0xfc040003u }, - { 0x081c, 4, 0xfb060003u }, - { 0x081c, 4, 0xfa080003u }, - { 0x081c, 4, 0xf90a0003u }, - { 0x081c, 4, 0xf80c0003u }, - { 0x081c, 4, 0xf70e0003u }, - { 0x081c, 4, 0xf6100003u }, - { 0x081c, 4, 0xf5120003u }, - { 0x081c, 4, 0xf4140003u }, - { 0x081c, 4, 0xf3160003u }, - { 0x081c, 4, 0xf2180003u }, - { 0x081c, 4, 0xf11a0003u }, - { 0x081c, 4, 0xf01c0003u }, - { 0x081c, 4, 0xef1e0003u }, - { 0x081c, 4, 0xee200003u }, - { 0x081c, 4, 0xed220003u }, - { 0x081c, 4, 0xcf240003u }, - { 0x081c, 4, 0xce260003u }, - { 0x081c, 4, 0xcd280003u }, - { 0x081c, 4, 0xcc2a0003u }, - { 0x081c, 4, 0xcb2c0003u }, - { 0x081c, 4, 0xca2e0003u }, - { 0x081c, 4, 0xc9300003u }, - { 0x081c, 4, 0xc8320003u }, - { 0x081c, 4, 0xc7340003u }, - { 0x081c, 4, 0xc6360003u }, - { 0x081c, 4, 0xc5380003u }, - { 0x081c, 4, 0xc43a0003u }, - { 0x081c, 4, 0xa63c0003u }, - { 0x081c, 4, 0xa53e0003u }, - { 0x081c, 4, 0xa4400003u }, - { 0x081c, 4, 0xa3420003u }, - { 0x081c, 4, 0xa2440003u }, - { 0x081c, 4, 0xa1460003u }, - { 0x081c, 4, 0x86480003u }, - { 0x081c, 4, 0x854a0003u }, - { 0x081c, 4, 0x844c0003u }, - { 0x081c, 4, 0x834e0003u }, - { 0x081c, 4, 0x66500003u }, - { 0x081c, 4, 0x65520003u }, - { 0x081c, 4, 0x64540003u }, - { 0x081c, 4, 0x63560003u }, - { 0x081c, 4, 0x62580003u }, - { 0x081c, 4, 0x615a0003u }, - { 0x081c, 4, 0x435c0003u }, - { 0x081c, 4, 0x425e0003u }, - { 0x081c, 4, 0x41600003u }, - { 0x081c, 4, 0x27620003u }, - { 0x081c, 4, 0x26640003u }, - { 0x081c, 4, 0x25660003u }, - { 0x081c, 4, 0x24680003u }, - { 0x081c, 4, 0x236a0003u }, - { 0x081c, 4, 0x226c0003u }, - { 0x081c, 4, 0x216e0003u }, - { 0x081c, 4, 0x21700003u }, - { 0x081c, 4, 0x21720003u }, - { 0x081c, 4, 0x21740003u }, - { 0x081c, 4, 0x21760003u }, - { 0x081c, 4, 0x21780003u }, - { 0x081c, 4, 0x217a0003u }, - { 0x081c, 4, 0x217c0003u }, - { 0x081c, 4, 0x217e0003u }, - { 0x081c, 4, 0xf9000103u }, - { 0x081c, 4, 0xf8020103u }, - { 0x081c, 4, 0xf7040103u }, - { 0x081c, 4, 0xf6060103u }, - { 0x081c, 4, 0xf5080103u }, - { 0x081c, 4, 0xf40a0103u }, - { 0x081c, 4, 0xf30c0103u }, - { 0x081c, 4, 0xf20e0103u }, - { 0x081c, 4, 0xf1100103u }, - { 0x081c, 4, 0xf0120103u }, - { 0x081c, 4, 0xef140103u }, - { 0x081c, 4, 0xee160103u }, - { 0x081c, 4, 0xed180103u }, - { 0x081c, 4, 0xec1a0103u }, - { 0x081c, 4, 0xeb1c0103u }, - { 0x081c, 4, 0xea1e0103u }, - { 0x081c, 4, 0xe9200103u }, - { 0x081c, 4, 0xe8220103u }, - { 0x081c, 4, 0xe7240103u }, - { 0x081c, 4, 0xe6260103u }, - { 0x081c, 4, 0xe5280103u }, - { 0x081c, 4, 0xe42a0103u }, - { 0x081c, 4, 0xe32c0103u }, - { 0x081c, 4, 0xc32e0103u }, - { 0x081c, 4, 0xc2300103u }, - { 0x081c, 4, 0xc1320103u }, - { 0x081c, 4, 0xa5340103u }, - { 0x081c, 4, 0xa4360103u }, - { 0x081c, 4, 0xa3380103u }, - { 0x081c, 4, 0xa23a0103u }, - { 0x081c, 4, 0xa13c0103u }, - { 0x081c, 4, 0x843e0103u }, - { 0x081c, 4, 0x83400103u }, - { 0x081c, 4, 0x82420103u }, - { 0x081c, 4, 0x81440103u }, - { 0x081c, 4, 0x64460103u }, - { 0x081c, 4, 0x63480103u }, - { 0x081c, 4, 0x624a0103u }, - { 0x081c, 4, 0x614c0103u }, - { 0x081c, 4, 0x444e0103u }, - { 0x081c, 4, 0x43500103u }, - { 0x081c, 4, 0x42520103u }, - { 0x081c, 4, 0x41540103u }, - { 0x081c, 4, 0x25560103u }, - { 0x081c, 4, 0x24580103u }, - { 0x081c, 4, 0x235a0103u }, - { 0x081c, 4, 0x065c0103u }, - { 0x081c, 4, 0x055e0103u }, - { 0x081c, 4, 0x04600103u }, - { 0x081c, 4, 0x03620103u }, - { 0x081c, 4, 0x02640103u }, - { 0x081c, 4, 0x01660103u }, - { 0x081c, 4, 0x01680103u }, - { 0x081c, 4, 0x016a0103u }, - { 0x081c, 4, 0x016c0103u }, - { 0x081c, 4, 0x016e0103u }, - { 0x081c, 4, 0x01700103u }, - { 0x081c, 4, 0x01720103u }, - { 0x081c, 4, 0x01740103u }, - { 0x081c, 4, 0x01760103u }, - { 0x081c, 4, 0x01780103u }, - { 0x081c, 4, 0x017a0103u }, - { 0x081c, 4, 0x017c0103u }, - { 0x081c, 4, 0x017e0103u }, - { 0x081c, 4, 0xfa000203u }, - { 0x081c, 4, 0xf9020203u }, - { 0x081c, 4, 0xf8040203u }, - { 0x081c, 4, 0xf7060203u }, - { 0x081c, 4, 0xf6080203u }, - { 0x081c, 4, 0xf50a0203u }, - { 0x081c, 4, 0xf40c0203u }, - { 0x081c, 4, 0xf30e0203u }, - { 0x081c, 4, 0xf2100203u }, - { 0x081c, 4, 0xf1120203u }, - { 0x081c, 4, 0xf0140203u }, - { 0x081c, 4, 0xef160203u }, - { 0x081c, 4, 0xee180203u }, - { 0x081c, 4, 0xed1a0203u }, - { 0x081c, 4, 0xec1c0203u }, - { 0x081c, 4, 0xeb1e0203u }, - { 0x081c, 4, 0xea200203u }, - { 0x081c, 4, 0xe9220203u }, - { 0x081c, 4, 0xe8240203u }, - { 0x081c, 4, 0xe7260203u }, - { 0x081c, 4, 0xe6280203u }, - { 0x081c, 4, 0xe52a0203u }, - { 0x081c, 4, 0xe42c0203u }, - { 0x081c, 4, 0xe32e0203u }, - { 0x081c, 4, 0xe2300203u }, - { 0x081c, 4, 0xe1320203u }, - { 0x081c, 4, 0xa5340203u }, - { 0x081c, 4, 0xa4360203u }, - { 0x081c, 4, 0xa3380203u }, - { 0x081c, 4, 0xa23a0203u }, - { 0x081c, 4, 0xa13c0203u }, - { 0x081c, 4, 0x843e0203u }, - { 0x081c, 4, 0x83400203u }, - { 0x081c, 4, 0x82420203u }, - { 0x081c, 4, 0x81440203u }, - { 0x081c, 4, 0x63460203u }, - { 0x081c, 4, 0x62480203u }, - { 0x081c, 4, 0x614a0203u }, - { 0x081c, 4, 0x464c0203u }, - { 0x081c, 4, 0x454e0203u }, - { 0x081c, 4, 0x44500203u }, - { 0x081c, 4, 0x43520203u }, - { 0x081c, 4, 0x42540203u }, - { 0x081c, 4, 0x41560203u }, - { 0x081c, 4, 0x24580203u }, - { 0x081c, 4, 0x235a0203u }, - { 0x081c, 4, 0x065c0203u }, - { 0x081c, 4, 0x055e0203u }, - { 0x081c, 4, 0x04600203u }, - { 0x081c, 4, 0x03620203u }, - { 0x081c, 4, 0x02640203u }, - { 0x081c, 4, 0x01660203u }, - { 0x081c, 4, 0x01680203u }, - { 0x081c, 4, 0x016a0203u }, - { 0x081c, 4, 0x016c0203u }, - { 0x081c, 4, 0x016e0203u }, - { 0x081c, 4, 0x01700203u }, - { 0x081c, 4, 0x01720203u }, - { 0x081c, 4, 0x01740203u }, - { 0x081c, 4, 0x01760203u }, - { 0x081c, 4, 0x01780203u }, - { 0x081c, 4, 0x017a0203u }, - { 0x081c, 4, 0x017c0203u }, - { 0x081c, 4, 0x017e0203u }, - { 0x081c, 4, 0xf8000303u }, - { 0x081c, 4, 0xf7020303u }, - { 0x081c, 4, 0xf6040303u }, - { 0x081c, 4, 0xf5060303u }, - { 0x081c, 4, 0xf4080303u }, - { 0x081c, 4, 0xf30a0303u }, - { 0x081c, 4, 0xf20c0303u }, - { 0x081c, 4, 0xf10e0303u }, - { 0x081c, 4, 0xf0100303u }, - { 0x081c, 4, 0xef120303u }, - { 0x081c, 4, 0xee140303u }, - { 0x081c, 4, 0xed160303u }, - { 0x081c, 4, 0xec180303u }, - { 0x081c, 4, 0xeb1a0303u }, - { 0x081c, 4, 0xea1c0303u }, - { 0x081c, 4, 0xe91e0303u }, - { 0x081c, 4, 0xe8200303u }, - { 0x081c, 4, 0xe7220303u }, - { 0x081c, 4, 0xe6240303u }, - { 0x081c, 4, 0xe5260303u }, - { 0x081c, 4, 0xe4280303u }, - { 0x081c, 4, 0xe32a0303u }, - { 0x081c, 4, 0xe22c0303u }, - { 0x081c, 4, 0xe12e0303u }, - { 0x081c, 4, 0xa6300303u }, - { 0x081c, 4, 0xa5320303u }, - { 0x081c, 4, 0xa4340303u }, - { 0x081c, 4, 0xa3360303u }, - { 0x081c, 4, 0xa2380303u }, - { 0x081c, 4, 0xa13a0303u }, - { 0x081c, 4, 0x843c0303u }, - { 0x081c, 4, 0x833e0303u }, - { 0x081c, 4, 0x82400303u }, - { 0x081c, 4, 0x81420303u }, - { 0x081c, 4, 0x64440303u }, - { 0x081c, 4, 0x63460303u }, - { 0x081c, 4, 0x62480303u }, - { 0x081c, 4, 0x614a0303u }, - { 0x081c, 4, 0x454c0303u }, - { 0x081c, 4, 0x444e0303u }, - { 0x081c, 4, 0x43500303u }, - { 0x081c, 4, 0x42520303u }, - { 0x081c, 4, 0x41540303u }, - { 0x081c, 4, 0x24560303u }, - { 0x081c, 4, 0x23580303u }, - { 0x081c, 4, 0x065a0303u }, - { 0x081c, 4, 0x055c0303u }, - { 0x081c, 4, 0x045e0303u }, - { 0x081c, 4, 0x03600303u }, - { 0x081c, 4, 0x02620303u }, - { 0x081c, 4, 0x01640303u }, - { 0x081c, 4, 0x01660303u }, - { 0x081c, 4, 0x01680303u }, - { 0x081c, 4, 0x016a0303u }, - { 0x081c, 4, 0x016c0303u }, - { 0x081c, 4, 0x016e0303u }, - { 0x081c, 4, 0x01700303u }, - { 0x081c, 4, 0x01720303u }, - { 0x081c, 4, 0x01740303u }, - { 0x081c, 4, 0x01760303u }, - { 0x081c, 4, 0x01780303u }, - { 0x081c, 4, 0x017a0303u }, - { 0x081c, 4, 0x017c0303u }, - { 0x081c, 4, 0x017e0303u }, - { 0x0c50, 4, 0x00000022u }, - { 0x0c50, 4, 0x00000020u }, - { 0x0e50, 4, 0x00000022u }, - { 0x0e50, 4, 0x00000020u }, - { 0x1850, 4, 0x00000022u }, - { 0x1850, 4, 0x00000020u }, - { 0x1a50, 4, 0x00000022u }, - { 0x1a50, 4, 0x00000020u }, - { 0x002c, 4, 0x038e5820u }, - { 0x0a2c, 4, 0x00900000u }, - { 0x0a04, 4, 0x46ff800cu }, - { 0x0a04, 4, 0x45ff800cu }, - { 0x0c90, 4, 0x01813124u }, - { 0x0c90, 4, 0x04000c00u }, - { 0x0c90, 4, 0x05800f98u }, - { 0x0c90, 4, 0x07f68004u }, - { 0x0c90, 4, 0x0b0ffffeu }, - { 0x0c90, 4, 0x0b13ff48u }, - { 0x0c90, 4, 0x0b26aa3fu }, - { 0x0c90, 4, 0x0b3ffc9au }, - { 0x0c90, 4, 0x0b40a78fu }, - { 0x0c90, 4, 0x0b500a3fu }, - { 0x0c90, 4, 0x0b60c09cu }, - { 0x0c90, 4, 0x0b730008u }, - { 0x0c90, 4, 0x0b87400eu }, - { 0x0c90, 4, 0x0b9fbf50u }, - { 0x0c90, 4, 0x0ba50780u }, - { 0x0c90, 4, 0x0bb00000u }, - { 0x0c90, 4, 0x0bc40009u }, - { 0x0c90, 4, 0x0bd00000u }, - { 0x0c90, 4, 0x0be00000u }, - { 0x0c90, 4, 0x0bf00000u }, - { 0x0c90, 4, 0x0ef20000u }, - { 0x0c90, 4, 0x03e00000u }, - { 0x0c90, 4, 0x03f30000u }, - { 0x0c90, 4, 0x03e20000u }, - { 0x0c90, 4, 0x03f40000u }, - { 0x0c90, 4, 0x03e40000u }, - { 0x0c90, 4, 0x03f30000u }, - { 0x0c90, 4, 0x03e60000u }, - { 0x0c90, 4, 0x03f30000u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef10000u }, - { 0x0c90, 4, 0x03e00000u }, - { 0x0c90, 4, 0x03f06800u }, - { 0x0c90, 4, 0x03e00080u }, - { 0x0c90, 4, 0x03f06000u }, - { 0x0c90, 4, 0x03e00100u }, - { 0x0c90, 4, 0x03f04800u }, - { 0x0c90, 4, 0x03e00180u }, - { 0x0c90, 4, 0x03f04000u }, - { 0x0c90, 4, 0x03e00200u }, - { 0x0c90, 4, 0x03f04000u }, - { 0x0c90, 4, 0x03e00280u }, - { 0x0c90, 4, 0x03f02800u }, - { 0x0c90, 4, 0x03e00300u }, - { 0x0c90, 4, 0x03f02800u }, - { 0x0c90, 4, 0x03e00380u }, - { 0x0c90, 4, 0x03f02000u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef40000u }, - { 0x0c90, 4, 0x03e00000u }, - { 0x0c90, 4, 0x03f000bcu }, - { 0x0c90, 4, 0x03e00040u }, - { 0x0c90, 4, 0x03f00053u }, - { 0x0c90, 4, 0x03e00050u }, - { 0x0c90, 4, 0x03f00050u }, - { 0x0c90, 4, 0x03e00060u }, - { 0x0c90, 4, 0x03f00050u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef00400u }, - { 0x0c90, 4, 0x03e00006u }, - { 0x0c90, 4, 0x041ee080u }, - { 0x0c90, 4, 0x03e00008u }, - { 0x0c90, 4, 0x041ee0c0u }, - { 0x0c90, 4, 0x03e0000au }, - { 0x0c90, 4, 0x041ee100u }, - { 0x0c90, 4, 0x03e0000cu }, - { 0x0c90, 4, 0x041ee100u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x01800006u }, - { 0x0c90, 4, 0x086e4b58u }, - { 0x0c90, 4, 0x08749f80u }, - { 0x0c90, 4, 0x0df00008u }, - { 0x0c90, 4, 0x0ef02000u }, - { 0x0c90, 4, 0x03b3f258u }, - { 0x0c90, 4, 0x03b30a58u }, - { 0x0c90, 4, 0x03b2fa58u }, - { 0x0c90, 4, 0x03b22590u }, - { 0x0c90, 4, 0x03b1fa50u }, - { 0x0c90, 4, 0x03b10248u }, - { 0x0c90, 4, 0x03b08240u }, - { 0x0c90, 4, 0x0ef00100u }, - { 0x0c90, 4, 0x0340adf6u }, - { 0x0c90, 4, 0x03409df3u }, - { 0x0c90, 4, 0x03408df0u }, - { 0x0c90, 4, 0x03407dedu }, - { 0x0c90, 4, 0x03406deau }, - { 0x0c90, 4, 0x03405cedu }, - { 0x0c90, 4, 0x03404ceau }, - { 0x0c90, 4, 0x034034eau }, - { 0x0c90, 4, 0x034024e7u }, - { 0x0c90, 4, 0x0340146au }, - { 0x0c90, 4, 0x0340006bu }, - { 0x0c90, 4, 0x0348adf6u }, - { 0x0c90, 4, 0x03489df3u }, - { 0x0c90, 4, 0x03488df0u }, - { 0x0c90, 4, 0x03487dedu }, - { 0x0c90, 4, 0x03486deau }, - { 0x0c90, 4, 0x03485cedu }, - { 0x0c90, 4, 0x03484ceau }, - { 0x0c90, 4, 0x034834eau }, - { 0x0c90, 4, 0x034824e7u }, - { 0x0c90, 4, 0x0348146au }, - { 0x0c90, 4, 0x0348006bu }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef020a2u }, - { 0x0c90, 4, 0x0df00080u }, - { 0x0c90, 4, 0x03500192u }, - { 0x0c90, 4, 0x03508192u }, - { 0x0c90, 4, 0x03510192u }, - { 0x0c90, 4, 0x03600024u }, - { 0x0c90, 4, 0x03608024u }, - { 0x0c90, 4, 0x03610024u }, - { 0x0c90, 4, 0x03618024u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x05100c21u }, - { 0x0c90, 4, 0x052006d9u }, - { 0x0c90, 4, 0x053fc649u }, - { 0x0c90, 4, 0x0540017eu }, - { 0x0c90, 4, 0x0181012au }, - { 0x0c90, 4, 0x0817fc00u }, - { 0x0c90, 4, 0x08950110u }, - { 0x0c90, 4, 0x08a43e50u }, - { 0x0c90, 4, 0x08b2e180u }, - { 0x0c90, 4, 0x08c93c3cu }, - { 0x0c90, 4, 0x085f8000u }, - { 0x0c90, 4, 0x08dffff0u }, - { 0x0c90, 4, 0x0ef01000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b38023u }, - { 0x0c90, 4, 0x03c24000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b30023u }, - { 0x0c90, 4, 0x03c48000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b28623u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b21633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b1c633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b10293u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b09593u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a00148u }, - { 0x0c90, 4, 0x03b0078bu }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b78023u }, - { 0x0c90, 4, 0x03c24000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b70023u }, - { 0x0c90, 4, 0x03c48000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b68623u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b61633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b5c633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b50293u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b49593u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a00148u }, - { 0x0c90, 4, 0x03b4078bu }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03bb8023u }, - { 0x0c90, 4, 0x03c84000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03bb0023u }, - { 0x0c90, 4, 0x03c20000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03ba8623u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03ba1633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b9c633u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b90293u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a0013cu }, - { 0x0c90, 4, 0x03b89593u }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x03a00148u }, - { 0x0c90, 4, 0x03b8078bu }, - { 0x0c90, 4, 0x03c00000u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef00800u }, - { 0x0c90, 4, 0x03b00000u }, - { 0x0c90, 4, 0x03a00803u }, - { 0x0c90, 4, 0x03b40000u }, - { 0x0c90, 4, 0x03a01000u }, - { 0x0c90, 4, 0x03b80000u }, - { 0x0c90, 4, 0x03a01002u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x01813124u }, - { 0x0c90, 4, 0x0ef00100u }, - { 0x0c90, 4, 0x0344a1adu }, - { 0x0c90, 4, 0x034491aau }, - { 0x0c90, 4, 0x034481a7u }, - { 0x0c90, 4, 0x034470aau }, - { 0x0c90, 4, 0x034460a7u }, - { 0x0c90, 4, 0x03445049u }, - { 0x0c90, 4, 0x03444046u }, - { 0x0c90, 4, 0x03443026u }, - { 0x0c90, 4, 0x03442009u }, - { 0x0c90, 4, 0x03441006u }, - { 0x0c90, 4, 0x03440003u }, - { 0x0c90, 4, 0x0342a1adu }, - { 0x0c90, 4, 0x034291aau }, - { 0x0c90, 4, 0x034281a7u }, - { 0x0c90, 4, 0x034270aau }, - { 0x0c90, 4, 0x034260a7u }, - { 0x0c90, 4, 0x03425049u }, - { 0x0c90, 4, 0x03424046u }, - { 0x0c90, 4, 0x03423026u }, - { 0x0c90, 4, 0x03422009u }, - { 0x0c90, 4, 0x03421006u }, - { 0x0c90, 4, 0x03420003u }, - { 0x0c90, 4, 0x0340a3ecu }, - { 0x0c90, 4, 0x0340938cu }, - { 0x0c90, 4, 0x034081adu }, - { 0x0c90, 4, 0x034071aau }, - { 0x0c90, 4, 0x034061a7u }, - { 0x0c90, 4, 0x034050aau }, - { 0x0c90, 4, 0x034040a7u }, - { 0x0c90, 4, 0x0340302cu }, - { 0x0c90, 4, 0x03402029u }, - { 0x0c90, 4, 0x0340100cu }, - { 0x0c90, 4, 0x03400009u }, - { 0x0c90, 4, 0x034ca1adu }, - { 0x0c90, 4, 0x034c91aau }, - { 0x0c90, 4, 0x034c81a7u }, - { 0x0c90, 4, 0x034c70aau }, - { 0x0c90, 4, 0x034c60a7u }, - { 0x0c90, 4, 0x034c5049u }, - { 0x0c90, 4, 0x034c4046u }, - { 0x0c90, 4, 0x034c3026u }, - { 0x0c90, 4, 0x034c2009u }, - { 0x0c90, 4, 0x034c1006u }, - { 0x0c90, 4, 0x034c0003u }, - { 0x0c90, 4, 0x034aa1adu }, - { 0x0c90, 4, 0x034a91aau }, - { 0x0c90, 4, 0x034a81a7u }, - { 0x0c90, 4, 0x034a70aau }, - { 0x0c90, 4, 0x034a60a7u }, - { 0x0c90, 4, 0x034a5049u }, - { 0x0c90, 4, 0x034a4046u }, - { 0x0c90, 4, 0x034a3026u }, - { 0x0c90, 4, 0x034a2009u }, - { 0x0c90, 4, 0x034a1006u }, - { 0x0c90, 4, 0x034a0003u }, - { 0x0c90, 4, 0x0348a3ecu }, - { 0x0c90, 4, 0x0348938cu }, - { 0x0c90, 4, 0x034881adu }, - { 0x0c90, 4, 0x034871aau }, - { 0x0c90, 4, 0x034861a7u }, - { 0x0c90, 4, 0x034850aau }, - { 0x0c90, 4, 0x034840a7u }, - { 0x0c90, 4, 0x0348302cu }, - { 0x0c90, 4, 0x03482029u }, - { 0x0c90, 4, 0x0348100cu }, - { 0x0c90, 4, 0x03480009u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0df00001u }, - { 0x0c90, 4, 0x0181712au }, - { 0x0c90, 4, 0x0ef00040u }, - { 0x0c90, 4, 0x035006ccu }, - { 0x0c90, 4, 0x035086ccu }, - { 0x0c90, 4, 0x035106ccu }, - { 0x0c90, 4, 0x035206ccu }, - { 0x0c90, 4, 0x035286ccu }, - { 0x0c90, 4, 0x035306ccu }, - { 0x0c90, 4, 0x035406ccu }, - { 0x0c90, 4, 0x035486ccu }, - { 0x0c90, 4, 0x035506ccu }, - { 0x0c90, 4, 0x035806ccu }, - { 0x0c90, 4, 0x035886ccu }, - { 0x0c90, 4, 0x035906ccu }, - { 0x0c90, 4, 0x035a06ccu }, - { 0x0c90, 4, 0x035a86ccu }, - { 0x0c90, 4, 0x035b06ccu }, - { 0x0c90, 4, 0x035c06ccu }, - { 0x0c90, 4, 0x035c86ccu }, - { 0x0c90, 4, 0x035d06ccu }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0df00001u }, - { 0x0c90, 4, 0x0181712au }, - { 0x0c90, 4, 0x0ef00010u }, - { 0x0c90, 4, 0x03600473u }, - { 0x0c90, 4, 0x03608473u }, - { 0x0c90, 4, 0x03610473u }, - { 0x0c90, 4, 0x03620473u }, - { 0x0c90, 4, 0x03628473u }, - { 0x0c90, 4, 0x03630473u }, - { 0x0c90, 4, 0x03640473u }, - { 0x0c90, 4, 0x03648473u }, - { 0x0c90, 4, 0x03650473u }, - { 0x0c90, 4, 0x03680473u }, - { 0x0c90, 4, 0x03688473u }, - { 0x0c90, 4, 0x03690473u }, - { 0x0c90, 4, 0x036a0473u }, - { 0x0c90, 4, 0x036a8473u }, - { 0x0c90, 4, 0x036b0473u }, - { 0x0c90, 4, 0x036c0473u }, - { 0x0c90, 4, 0x036c8473u }, - { 0x0c90, 4, 0x036d0473u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x0ef00008u }, - { 0x0c90, 4, 0x03c0027du }, - { 0x0c90, 4, 0x03c0054au }, - { 0x0c90, 4, 0x03c00821u }, - { 0x0c90, 4, 0x03c0127du }, - { 0x0c90, 4, 0x03c0154au }, - { 0x0c90, 4, 0x03c01821u }, - { 0x0c90, 4, 0x03c0227du }, - { 0x0c90, 4, 0x03c0254au }, - { 0x0c90, 4, 0x03c02821u }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0c90, 4, 0x061c0d47u }, - { 0x0c90, 4, 0x0620133cu }, - { 0x0c90, 4, 0x063750e7u }, - { 0x0c90, 4, 0x06414fecu }, - { 0x0c90, 4, 0x065920d0u }, - { 0x0c90, 4, 0x06600040u }, - { 0x0c90, 4, 0x05750000u }, - { 0x0c90, 4, 0x05651df0u }, - { 0x0c90, 4, 0x05582061u }, - { 0x0c90, 4, 0x01c739d2u }, - { 0x0c90, 4, 0x01f2255cu }, - { 0x0c90, 4, 0x0b17ff48u }, - { 0x0c90, 4, 0x0c481700u }, - { 0x0c90, 4, 0x0181b126u }, - { 0x0c90, 4, 0x01813126u }, - { 0x0c90, 4, 0x01813124u }, - { 0x0e90, 4, 0x01813124u }, - { 0x0e90, 4, 0x04000c00u }, - { 0x0e90, 4, 0x05800f98u }, - { 0x0e90, 4, 0x07f68004u }, - { 0x0e90, 4, 0x01800006u }, - { 0x0e90, 4, 0x086e4b58u }, - { 0x0e90, 4, 0x08749f80u }, - { 0x0e90, 4, 0x0df00008u }, - { 0x0e90, 4, 0x0ef02000u }, - { 0x0e90, 4, 0x03b3f258u }, - { 0x0e90, 4, 0x03b30a58u }, - { 0x0e90, 4, 0x03b2fa58u }, - { 0x0e90, 4, 0x03b22590u }, - { 0x0e90, 4, 0x03b1fa50u }, - { 0x0e90, 4, 0x03b10248u }, - { 0x0e90, 4, 0x03b08240u }, - { 0x0e90, 4, 0x0ef00100u }, - { 0x0e90, 4, 0x0340adf6u }, - { 0x0e90, 4, 0x03409df3u }, - { 0x0e90, 4, 0x03408df0u }, - { 0x0e90, 4, 0x03407dedu }, - { 0x0e90, 4, 0x03406deau }, - { 0x0e90, 4, 0x03405cedu }, - { 0x0e90, 4, 0x03404ceau }, - { 0x0e90, 4, 0x034034eau }, - { 0x0e90, 4, 0x034024e7u }, - { 0x0e90, 4, 0x0340146au }, - { 0x0e90, 4, 0x0340006bu }, - { 0x0e90, 4, 0x0348adf6u }, - { 0x0e90, 4, 0x03489df3u }, - { 0x0e90, 4, 0x03488df0u }, - { 0x0e90, 4, 0x03487dedu }, - { 0x0e90, 4, 0x03486deau }, - { 0x0e90, 4, 0x03485cedu }, - { 0x0e90, 4, 0x03484ceau }, - { 0x0e90, 4, 0x034834eau }, - { 0x0e90, 4, 0x034824e7u }, - { 0x0e90, 4, 0x0348146au }, - { 0x0e90, 4, 0x0348006bu }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0ef020a2u }, - { 0x0e90, 4, 0x0df00080u }, - { 0x0e90, 4, 0x03500192u }, - { 0x0e90, 4, 0x03508192u }, - { 0x0e90, 4, 0x03510192u }, - { 0x0e90, 4, 0x03600024u }, - { 0x0e90, 4, 0x03608024u }, - { 0x0e90, 4, 0x03610024u }, - { 0x0e90, 4, 0x03618024u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x05100c21u }, - { 0x0e90, 4, 0x052006d9u }, - { 0x0e90, 4, 0x053fc649u }, - { 0x0e90, 4, 0x0540017eu }, - { 0x0e90, 4, 0x0181012au }, - { 0x0e90, 4, 0x0817fc00u }, - { 0x0e90, 4, 0x08950110u }, - { 0x0e90, 4, 0x08a43e50u }, - { 0x0e90, 4, 0x08b2e180u }, - { 0x0e90, 4, 0x08c93c3cu }, - { 0x0e90, 4, 0x085f8000u }, - { 0x0e90, 4, 0x08dffff0u }, - { 0x0e90, 4, 0x0ef01000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b38023u }, - { 0x0e90, 4, 0x03c88000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b30023u }, - { 0x0e90, 4, 0x03c48000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b28623u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b21633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b1c633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b10293u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b09593u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a00148u }, - { 0x0e90, 4, 0x03b0078bu }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b78023u }, - { 0x0e90, 4, 0x03c20000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b70023u }, - { 0x0e90, 4, 0x03c48000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b68623u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b61633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b5c633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b50293u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b49593u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a00148u }, - { 0x0e90, 4, 0x03b4078bu }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03bb8023u }, - { 0x0e90, 4, 0x03c48000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03bb0023u }, - { 0x0e90, 4, 0x03c20000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03ba8623u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03ba1633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b9c633u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b90293u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a0013cu }, - { 0x0e90, 4, 0x03b89593u }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x03a00148u }, - { 0x0e90, 4, 0x03b8078bu }, - { 0x0e90, 4, 0x03c00000u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0ef00800u }, - { 0x0e90, 4, 0x03b00000u }, - { 0x0e90, 4, 0x03a00803u }, - { 0x0e90, 4, 0x03b40000u }, - { 0x0e90, 4, 0x03a01000u }, - { 0x0e90, 4, 0x03b80000u }, - { 0x0e90, 4, 0x03a01002u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x01813124u }, - { 0x0e90, 4, 0x0ef00100u }, - { 0x0e90, 4, 0x0344a38cu }, - { 0x0e90, 4, 0x034491adu }, - { 0x0e90, 4, 0x034481aau }, - { 0x0e90, 4, 0x034471a7u }, - { 0x0e90, 4, 0x034460aau }, - { 0x0e90, 4, 0x034450a7u }, - { 0x0e90, 4, 0x0344402cu }, - { 0x0e90, 4, 0x03443029u }, - { 0x0e90, 4, 0x0344200cu }, - { 0x0e90, 4, 0x03441009u }, - { 0x0e90, 4, 0x03440006u }, - { 0x0e90, 4, 0x0342a38cu }, - { 0x0e90, 4, 0x034291adu }, - { 0x0e90, 4, 0x034281aau }, - { 0x0e90, 4, 0x034271a7u }, - { 0x0e90, 4, 0x034260aau }, - { 0x0e90, 4, 0x034250a7u }, - { 0x0e90, 4, 0x0342402cu }, - { 0x0e90, 4, 0x03423029u }, - { 0x0e90, 4, 0x0342200cu }, - { 0x0e90, 4, 0x03421009u }, - { 0x0e90, 4, 0x03420006u }, - { 0x0e90, 4, 0x0340a38cu }, - { 0x0e90, 4, 0x034091adu }, - { 0x0e90, 4, 0x034081aau }, - { 0x0e90, 4, 0x034071a7u }, - { 0x0e90, 4, 0x034060aau }, - { 0x0e90, 4, 0x034050a7u }, - { 0x0e90, 4, 0x0340402cu }, - { 0x0e90, 4, 0x03403029u }, - { 0x0e90, 4, 0x03402026u }, - { 0x0e90, 4, 0x03401009u }, - { 0x0e90, 4, 0x03400006u }, - { 0x0e90, 4, 0x034ca38cu }, - { 0x0e90, 4, 0x034c91adu }, - { 0x0e90, 4, 0x034c81aau }, - { 0x0e90, 4, 0x034c71a7u }, - { 0x0e90, 4, 0x034c60aau }, - { 0x0e90, 4, 0x034c50a7u }, - { 0x0e90, 4, 0x034c402cu }, - { 0x0e90, 4, 0x034c3029u }, - { 0x0e90, 4, 0x034c200cu }, - { 0x0e90, 4, 0x034c1009u }, - { 0x0e90, 4, 0x034c0006u }, - { 0x0e90, 4, 0x034aa38cu }, - { 0x0e90, 4, 0x034a91adu }, - { 0x0e90, 4, 0x034a81aau }, - { 0x0e90, 4, 0x034a71a7u }, - { 0x0e90, 4, 0x034a60aau }, - { 0x0e90, 4, 0x034a50a7u }, - { 0x0e90, 4, 0x034a402cu }, - { 0x0e90, 4, 0x034a3029u }, - { 0x0e90, 4, 0x034a200cu }, - { 0x0e90, 4, 0x034a1009u }, - { 0x0e90, 4, 0x034a0006u }, - { 0x0e90, 4, 0x0348a38cu }, - { 0x0e90, 4, 0x034891adu }, - { 0x0e90, 4, 0x034881aau }, - { 0x0e90, 4, 0x034871a7u }, - { 0x0e90, 4, 0x034860aau }, - { 0x0e90, 4, 0x034850a7u }, - { 0x0e90, 4, 0x0348402cu }, - { 0x0e90, 4, 0x03483029u }, - { 0x0e90, 4, 0x03482026u }, - { 0x0e90, 4, 0x03481009u }, - { 0x0e90, 4, 0x03480006u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0df00001u }, - { 0x0e90, 4, 0x0181712au }, - { 0x0e90, 4, 0x0ef00040u }, - { 0x0e90, 4, 0x035006ccu }, - { 0x0e90, 4, 0x035086ccu }, - { 0x0e90, 4, 0x035106ccu }, - { 0x0e90, 4, 0x035206ccu }, - { 0x0e90, 4, 0x035286ccu }, - { 0x0e90, 4, 0x035306ccu }, - { 0x0e90, 4, 0x035406ccu }, - { 0x0e90, 4, 0x035486ccu }, - { 0x0e90, 4, 0x035506ccu }, - { 0x0e90, 4, 0x035806ccu }, - { 0x0e90, 4, 0x035886ccu }, - { 0x0e90, 4, 0x035906ccu }, - { 0x0e90, 4, 0x035a06ccu }, - { 0x0e90, 4, 0x035a86ccu }, - { 0x0e90, 4, 0x035b06ccu }, - { 0x0e90, 4, 0x035c06ccu }, - { 0x0e90, 4, 0x035c86ccu }, - { 0x0e90, 4, 0x035d06ccu }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0df00001u }, - { 0x0e90, 4, 0x0181712au }, - { 0x0e90, 4, 0x0ef00010u }, - { 0x0e90, 4, 0x03600473u }, - { 0x0e90, 4, 0x03608473u }, - { 0x0e90, 4, 0x03610473u }, - { 0x0e90, 4, 0x03620473u }, - { 0x0e90, 4, 0x03628473u }, - { 0x0e90, 4, 0x03630473u }, - { 0x0e90, 4, 0x03640473u }, - { 0x0e90, 4, 0x03648473u }, - { 0x0e90, 4, 0x03650473u }, - { 0x0e90, 4, 0x03680473u }, - { 0x0e90, 4, 0x03688473u }, - { 0x0e90, 4, 0x03690473u }, - { 0x0e90, 4, 0x036a0473u }, - { 0x0e90, 4, 0x036a8473u }, - { 0x0e90, 4, 0x036b0473u }, - { 0x0e90, 4, 0x036c0473u }, - { 0x0e90, 4, 0x036c8473u }, - { 0x0e90, 4, 0x036d0473u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0ef00008u }, - { 0x0e90, 4, 0x03c0027eu }, - { 0x0e90, 4, 0x03c00546u }, - { 0x0e90, 4, 0x03c00821u }, - { 0x0e90, 4, 0x03c0127eu }, - { 0x0e90, 4, 0x03c01546u }, - { 0x0e90, 4, 0x03c01821u }, - { 0x0e90, 4, 0x03c0227eu }, - { 0x0e90, 4, 0x03c02546u }, - { 0x0e90, 4, 0x03c02821u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x061c0d47u }, - { 0x0e90, 4, 0x0620133cu }, - { 0x0e90, 4, 0x063750e7u }, - { 0x0e90, 4, 0x06414fecu }, - { 0x0e90, 4, 0x065920d0u }, - { 0x0e90, 4, 0x06600040u }, - { 0x0e90, 4, 0x05750000u }, - { 0x0e90, 4, 0x05651df0u }, - { 0x1890, 4, 0x01813124u }, - { 0x1890, 4, 0x04000c00u }, - { 0x1890, 4, 0x05800f98u }, - { 0x1890, 4, 0x07f68004u }, - { 0x1890, 4, 0x01800006u }, - { 0x1890, 4, 0x086e4b58u }, - { 0x1890, 4, 0x08749f80u }, - { 0x1890, 4, 0x0df00008u }, - { 0x1890, 4, 0x0ef02000u }, - { 0x1890, 4, 0x03b3f258u }, - { 0x1890, 4, 0x03b30a58u }, - { 0x1890, 4, 0x03b2fa58u }, - { 0x1890, 4, 0x03b22590u }, - { 0x1890, 4, 0x03b1fa50u }, - { 0x1890, 4, 0x03b10248u }, - { 0x1890, 4, 0x03b08240u }, - { 0x1890, 4, 0x0ef00100u }, - { 0x1890, 4, 0x0340adf6u }, - { 0x1890, 4, 0x03409df3u }, - { 0x1890, 4, 0x03408df0u }, - { 0x1890, 4, 0x03407dedu }, - { 0x1890, 4, 0x03406deau }, - { 0x1890, 4, 0x03405cedu }, - { 0x1890, 4, 0x03404ceau }, - { 0x1890, 4, 0x034034eau }, - { 0x1890, 4, 0x034024e7u }, - { 0x1890, 4, 0x0340146au }, - { 0x1890, 4, 0x0340006bu }, - { 0x1890, 4, 0x0348adf6u }, - { 0x1890, 4, 0x03489df3u }, - { 0x1890, 4, 0x03488df0u }, - { 0x1890, 4, 0x03487dedu }, - { 0x1890, 4, 0x03486deau }, - { 0x1890, 4, 0x03485cedu }, - { 0x1890, 4, 0x03484ceau }, - { 0x1890, 4, 0x034834eau }, - { 0x1890, 4, 0x034824e7u }, - { 0x1890, 4, 0x0348146au }, - { 0x1890, 4, 0x0348006bu }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0ef020a2u }, - { 0x1890, 4, 0x0df00080u }, - { 0x1890, 4, 0x03500192u }, - { 0x1890, 4, 0x03508192u }, - { 0x1890, 4, 0x03510192u }, - { 0x1890, 4, 0x03600024u }, - { 0x1890, 4, 0x03608024u }, - { 0x1890, 4, 0x03610024u }, - { 0x1890, 4, 0x03618024u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x05100c21u }, - { 0x1890, 4, 0x052006d9u }, - { 0x1890, 4, 0x053fc649u }, - { 0x1890, 4, 0x0540017eu }, - { 0x1890, 4, 0x0181012au }, - { 0x1890, 4, 0x0817fc00u }, - { 0x1890, 4, 0x08950110u }, - { 0x1890, 4, 0x08a43e50u }, - { 0x1890, 4, 0x08b2e180u }, - { 0x1890, 4, 0x08c93c3cu }, - { 0x1890, 4, 0x085f8000u }, - { 0x1890, 4, 0x08dffff0u }, - { 0x1890, 4, 0x0ef01000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b38023u }, - { 0x1890, 4, 0x03c6c000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b30023u }, - { 0x1890, 4, 0x03c48000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b28623u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b21633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b1c633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b10293u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b09593u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a00148u }, - { 0x1890, 4, 0x03b0078bu }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b78023u }, - { 0x1890, 4, 0x03c4c000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b70023u }, - { 0x1890, 4, 0x03c48000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b68623u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b61633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b5c633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b50293u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b49593u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a00148u }, - { 0x1890, 4, 0x03b4078bu }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03bb8023u }, - { 0x1890, 4, 0x03c24000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03bb0023u }, - { 0x1890, 4, 0x03c20000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03ba8623u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03ba1633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b9c633u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b90293u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a0013cu }, - { 0x1890, 4, 0x03b89593u }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x03a00148u }, - { 0x1890, 4, 0x03b8078bu }, - { 0x1890, 4, 0x03c00000u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0ef00800u }, - { 0x1890, 4, 0x03b00000u }, - { 0x1890, 4, 0x03a00803u }, - { 0x1890, 4, 0x03b40000u }, - { 0x1890, 4, 0x03a01000u }, - { 0x1890, 4, 0x03b80000u }, - { 0x1890, 4, 0x03a01002u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x01813124u }, - { 0x1890, 4, 0x0ef00100u }, - { 0x1890, 4, 0x0344a38cu }, - { 0x1890, 4, 0x034491adu }, - { 0x1890, 4, 0x034481aau }, - { 0x1890, 4, 0x034471a7u }, - { 0x1890, 4, 0x034460aau }, - { 0x1890, 4, 0x034450a7u }, - { 0x1890, 4, 0x0344402cu }, - { 0x1890, 4, 0x03443029u }, - { 0x1890, 4, 0x0344200cu }, - { 0x1890, 4, 0x03441009u }, - { 0x1890, 4, 0x03440006u }, - { 0x1890, 4, 0x0342a3ecu }, - { 0x1890, 4, 0x0342938cu }, - { 0x1890, 4, 0x034281adu }, - { 0x1890, 4, 0x034271aau }, - { 0x1890, 4, 0x034261a7u }, - { 0x1890, 4, 0x034250aau }, - { 0x1890, 4, 0x034240a7u }, - { 0x1890, 4, 0x0342302cu }, - { 0x1890, 4, 0x03422029u }, - { 0x1890, 4, 0x0342100cu }, - { 0x1890, 4, 0x03420009u }, - { 0x1890, 4, 0x0340a38cu }, - { 0x1890, 4, 0x034091adu }, - { 0x1890, 4, 0x034081aau }, - { 0x1890, 4, 0x034071a7u }, - { 0x1890, 4, 0x034060aau }, - { 0x1890, 4, 0x034050a7u }, - { 0x1890, 4, 0x0340402cu }, - { 0x1890, 4, 0x03403029u }, - { 0x1890, 4, 0x0340200cu }, - { 0x1890, 4, 0x03401009u }, - { 0x1890, 4, 0x03400006u }, - { 0x1890, 4, 0x034ca38cu }, - { 0x1890, 4, 0x034c91adu }, - { 0x1890, 4, 0x034c81aau }, - { 0x1890, 4, 0x034c71a7u }, - { 0x1890, 4, 0x034c60aau }, - { 0x1890, 4, 0x034c50a7u }, - { 0x1890, 4, 0x034c402cu }, - { 0x1890, 4, 0x034c3029u }, - { 0x1890, 4, 0x034c200cu }, - { 0x1890, 4, 0x034c1009u }, - { 0x1890, 4, 0x034c0006u }, - { 0x1890, 4, 0x034aa3ecu }, - { 0x1890, 4, 0x034a938cu }, - { 0x1890, 4, 0x034a81adu }, - { 0x1890, 4, 0x034a71aau }, - { 0x1890, 4, 0x034a61a7u }, - { 0x1890, 4, 0x034a50aau }, - { 0x1890, 4, 0x034a40a7u }, - { 0x1890, 4, 0x034a302cu }, - { 0x1890, 4, 0x034a2029u }, - { 0x1890, 4, 0x034a100cu }, - { 0x1890, 4, 0x034a0009u }, - { 0x1890, 4, 0x0348a38cu }, - { 0x1890, 4, 0x034891adu }, - { 0x1890, 4, 0x034881aau }, - { 0x1890, 4, 0x034871a7u }, - { 0x1890, 4, 0x034860aau }, - { 0x1890, 4, 0x034850a7u }, - { 0x1890, 4, 0x0348402cu }, - { 0x1890, 4, 0x03483029u }, - { 0x1890, 4, 0x0348200cu }, - { 0x1890, 4, 0x03481009u }, - { 0x1890, 4, 0x03400006u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0df00001u }, - { 0x1890, 4, 0x0181712au }, - { 0x1890, 4, 0x0ef00040u }, - { 0x1890, 4, 0x035006ccu }, - { 0x1890, 4, 0x035086ccu }, - { 0x1890, 4, 0x035106ccu }, - { 0x1890, 4, 0x035206ccu }, - { 0x1890, 4, 0x035286ccu }, - { 0x1890, 4, 0x035306ccu }, - { 0x1890, 4, 0x035406ccu }, - { 0x1890, 4, 0x035486ccu }, - { 0x1890, 4, 0x035506ccu }, - { 0x1890, 4, 0x035806ccu }, - { 0x1890, 4, 0x035886ccu }, - { 0x1890, 4, 0x035906ccu }, - { 0x1890, 4, 0x035a06ccu }, - { 0x1890, 4, 0x035a86ccu }, - { 0x1890, 4, 0x035b06ccu }, - { 0x1890, 4, 0x035c06ccu }, - { 0x1890, 4, 0x035c86ccu }, - { 0x1890, 4, 0x035d06ccu }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0df00001u }, - { 0x1890, 4, 0x0181712au }, - { 0x1890, 4, 0x0ef00010u }, - { 0x1890, 4, 0x03600473u }, - { 0x1890, 4, 0x03608473u }, - { 0x1890, 4, 0x03610473u }, - { 0x1890, 4, 0x03620473u }, - { 0x1890, 4, 0x03628473u }, - { 0x1890, 4, 0x03630473u }, - { 0x1890, 4, 0x03640473u }, - { 0x1890, 4, 0x03648473u }, - { 0x1890, 4, 0x03650473u }, - { 0x1890, 4, 0x03680473u }, - { 0x1890, 4, 0x03688473u }, - { 0x1890, 4, 0x03690473u }, - { 0x1890, 4, 0x036a0473u }, - { 0x1890, 4, 0x036a8473u }, - { 0x1890, 4, 0x036b0473u }, - { 0x1890, 4, 0x036c0473u }, - { 0x1890, 4, 0x036c8473u }, - { 0x1890, 4, 0x036d0473u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0ef00008u }, - { 0x1890, 4, 0x03c0027du }, - { 0x1890, 4, 0x03c00541u }, - { 0x1890, 4, 0x03c00821u }, - { 0x1890, 4, 0x03c0127du }, - { 0x1890, 4, 0x03c01541u }, - { 0x1890, 4, 0x03c01821u }, - { 0x1890, 4, 0x03c0227du }, - { 0x1890, 4, 0x03c02541u }, - { 0x1890, 4, 0x03c02821u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1890, 4, 0x061c0d47u }, - { 0x1890, 4, 0x0620133cu }, - { 0x1890, 4, 0x063750e7u }, - { 0x1890, 4, 0x06414fecu }, - { 0x1890, 4, 0x065920d0u }, - { 0x1890, 4, 0x06600040u }, - { 0x1890, 4, 0x05750000u }, - { 0x1890, 4, 0x05651df0u }, - { 0x1a90, 4, 0x01813124u }, - { 0x1a90, 4, 0x04000c00u }, - { 0x1a90, 4, 0x05800f98u }, - { 0x1a90, 4, 0x07f68004u }, - { 0x1a90, 4, 0x01800006u }, - { 0x1a90, 4, 0x086e4b58u }, - { 0x1a90, 4, 0x08749f80u }, - { 0x1a90, 4, 0x0df00008u }, - { 0x1a90, 4, 0x0ef02000u }, - { 0x1a90, 4, 0x03b3f258u }, - { 0x1a90, 4, 0x03b30a58u }, - { 0x1a90, 4, 0x03b2fa58u }, - { 0x1a90, 4, 0x03b22590u }, - { 0x1a90, 4, 0x03b1fa50u }, - { 0x1a90, 4, 0x03b10248u }, - { 0x1a90, 4, 0x03b08240u }, - { 0x1a90, 4, 0x0ef00100u }, - { 0x1a90, 4, 0x0340adf6u }, - { 0x1a90, 4, 0x03409df3u }, - { 0x1a90, 4, 0x03408df0u }, - { 0x1a90, 4, 0x03407dedu }, - { 0x1a90, 4, 0x03406deau }, - { 0x1a90, 4, 0x03405cedu }, - { 0x1a90, 4, 0x03404ceau }, - { 0x1a90, 4, 0x034034eau }, - { 0x1a90, 4, 0x034024e7u }, - { 0x1a90, 4, 0x0340146au }, - { 0x1a90, 4, 0x0340006bu }, - { 0x1a90, 4, 0x0348adf6u }, - { 0x1a90, 4, 0x03489df3u }, - { 0x1a90, 4, 0x03488df0u }, - { 0x1a90, 4, 0x03487dedu }, - { 0x1a90, 4, 0x03486deau }, - { 0x1a90, 4, 0x03485cedu }, - { 0x1a90, 4, 0x03484ceau }, - { 0x1a90, 4, 0x034834eau }, - { 0x1a90, 4, 0x034824e7u }, - { 0x1a90, 4, 0x0348146au }, - { 0x1a90, 4, 0x0348006bu }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0ef020a2u }, - { 0x1a90, 4, 0x0df00080u }, - { 0x1a90, 4, 0x03500192u }, - { 0x1a90, 4, 0x03508192u }, - { 0x1a90, 4, 0x03510192u }, - { 0x1a90, 4, 0x03600024u }, - { 0x1a90, 4, 0x03608024u }, - { 0x1a90, 4, 0x03610024u }, - { 0x1a90, 4, 0x03618024u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x05100c21u }, - { 0x1a90, 4, 0x052006d9u }, - { 0x1a90, 4, 0x053fc649u }, - { 0x1a90, 4, 0x0540017eu }, - { 0x1a90, 4, 0x0181012au }, - { 0x1a90, 4, 0x0817fc00u }, - { 0x1a90, 4, 0x08950110u }, - { 0x1a90, 4, 0x08a43e50u }, - { 0x1a90, 4, 0x08b2e180u }, - { 0x1a90, 4, 0x08c93c3cu }, - { 0x1a90, 4, 0x085f8000u }, - { 0x1a90, 4, 0x08dffff0u }, - { 0x1a90, 4, 0x0ef01000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b38023u }, - { 0x1a90, 4, 0x03c44000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b30023u }, - { 0x1a90, 4, 0x03c48000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b28623u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b21633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b1c633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b10293u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b09593u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a00148u }, - { 0x1a90, 4, 0x03b0078bu }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b78023u }, - { 0x1a90, 4, 0x03c20000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b70023u }, - { 0x1a90, 4, 0x03c48000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b68623u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b61633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b5c633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b50293u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b49593u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a00148u }, - { 0x1a90, 4, 0x03b4078bu }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03bb8023u }, - { 0x1a90, 4, 0x03c04000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03bb0023u }, - { 0x1a90, 4, 0x03c20000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03ba8623u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03ba1633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b9c633u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b90293u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a0013cu }, - { 0x1a90, 4, 0x03b89593u }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x03a00148u }, - { 0x1a90, 4, 0x03b8078bu }, - { 0x1a90, 4, 0x03c00000u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0ef00800u }, - { 0x1a90, 4, 0x03b00000u }, - { 0x1a90, 4, 0x03a00803u }, - { 0x1a90, 4, 0x03b40000u }, - { 0x1a90, 4, 0x03a01000u }, - { 0x1a90, 4, 0x03b80000u }, - { 0x1a90, 4, 0x03a01002u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x01813124u }, - { 0x1a90, 4, 0x0ef00100u }, - { 0x1a90, 4, 0x0344a3ebu }, - { 0x1a90, 4, 0x0344938bu }, - { 0x1a90, 4, 0x034481acu }, - { 0x1a90, 4, 0x034471a9u }, - { 0x1a90, 4, 0x034460acu }, - { 0x1a90, 4, 0x034450a9u }, - { 0x1a90, 4, 0x0344402eu }, - { 0x1a90, 4, 0x0344302bu }, - { 0x1a90, 4, 0x03442028u }, - { 0x1a90, 4, 0x0344100bu }, - { 0x1a90, 4, 0x03440008u }, - { 0x1a90, 4, 0x0342a3eeu }, - { 0x1a90, 4, 0x034293ebu }, - { 0x1a90, 4, 0x0342838bu }, - { 0x1a90, 4, 0x034271acu }, - { 0x1a90, 4, 0x034261a9u }, - { 0x1a90, 4, 0x034250acu }, - { 0x1a90, 4, 0x034240a9u }, - { 0x1a90, 4, 0x034230a6u }, - { 0x1a90, 4, 0x0342202cu }, - { 0x1a90, 4, 0x03421029u }, - { 0x1a90, 4, 0x03420026u }, - { 0x1a90, 4, 0x0340a3efu }, - { 0x1a90, 4, 0x034093ecu }, - { 0x1a90, 4, 0x0340838cu }, - { 0x1a90, 4, 0x034071adu }, - { 0x1a90, 4, 0x034061aau }, - { 0x1a90, 4, 0x034050adu }, - { 0x1a90, 4, 0x034040aau }, - { 0x1a90, 4, 0x0340306au }, - { 0x1a90, 4, 0x0340202du }, - { 0x1a90, 4, 0x0340102au }, - { 0x1a90, 4, 0x03400027u }, - { 0x1a90, 4, 0x034ca3ebu }, - { 0x1a90, 4, 0x034c938bu }, - { 0x1a90, 4, 0x034c81acu }, - { 0x1a90, 4, 0x034c71a9u }, - { 0x1a90, 4, 0x034c60acu }, - { 0x1a90, 4, 0x034c50a9u }, - { 0x1a90, 4, 0x034c402eu }, - { 0x1a90, 4, 0x034c302bu }, - { 0x1a90, 4, 0x034c2028u }, - { 0x1a90, 4, 0x034c100bu }, - { 0x1a90, 4, 0x034c0008u }, - { 0x1a90, 4, 0x034aa3eeu }, - { 0x1a90, 4, 0x034a93ebu }, - { 0x1a90, 4, 0x034a838bu }, - { 0x1a90, 4, 0x034a71acu }, - { 0x1a90, 4, 0x034a61a9u }, - { 0x1a90, 4, 0x034a50acu }, - { 0x1a90, 4, 0x034a40a9u }, - { 0x1a90, 4, 0x034a30a6u }, - { 0x1a90, 4, 0x034a202cu }, - { 0x1a90, 4, 0x034a1029u }, - { 0x1a90, 4, 0x034a0026u }, - { 0x1a90, 4, 0x0348a3efu }, - { 0x1a90, 4, 0x034893ecu }, - { 0x1a90, 4, 0x0348838cu }, - { 0x1a90, 4, 0x034871adu }, - { 0x1a90, 4, 0x034861aau }, - { 0x1a90, 4, 0x034850adu }, - { 0x1a90, 4, 0x034840aau }, - { 0x1a90, 4, 0x0348306au }, - { 0x1a90, 4, 0x0348202du }, - { 0x1a90, 4, 0x0348102au }, - { 0x1a90, 4, 0x03480027u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0df00001u }, - { 0x1a90, 4, 0x0181712au }, - { 0x1a90, 4, 0x0ef00040u }, - { 0x1a90, 4, 0x035006ccu }, - { 0x1a90, 4, 0x035086ccu }, - { 0x1a90, 4, 0x035106ccu }, - { 0x1a90, 4, 0x035206ccu }, - { 0x1a90, 4, 0x035286ccu }, - { 0x1a90, 4, 0x035306ccu }, - { 0x1a90, 4, 0x035406ccu }, - { 0x1a90, 4, 0x035486ccu }, - { 0x1a90, 4, 0x035506ccu }, - { 0x1a90, 4, 0x035806ccu }, - { 0x1a90, 4, 0x035886ccu }, - { 0x1a90, 4, 0x035906ccu }, - { 0x1a90, 4, 0x035a06ccu }, - { 0x1a90, 4, 0x035a86ccu }, - { 0x1a90, 4, 0x035b06ccu }, - { 0x1a90, 4, 0x035c06ccu }, - { 0x1a90, 4, 0x035c86ccu }, - { 0x1a90, 4, 0x035d06ccu }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0df00001u }, - { 0x1a90, 4, 0x0181712au }, - { 0x1a90, 4, 0x0ef00010u }, - { 0x1a90, 4, 0x03600473u }, - { 0x1a90, 4, 0x03608473u }, - { 0x1a90, 4, 0x03610473u }, - { 0x1a90, 4, 0x03620473u }, - { 0x1a90, 4, 0x03628473u }, - { 0x1a90, 4, 0x03630473u }, - { 0x1a90, 4, 0x03640473u }, - { 0x1a90, 4, 0x03648473u }, - { 0x1a90, 4, 0x03650473u }, - { 0x1a90, 4, 0x03680473u }, - { 0x1a90, 4, 0x03688473u }, - { 0x1a90, 4, 0x03690473u }, - { 0x1a90, 4, 0x036a0473u }, - { 0x1a90, 4, 0x036a8473u }, - { 0x1a90, 4, 0x036b0473u }, - { 0x1a90, 4, 0x036c0473u }, - { 0x1a90, 4, 0x036c8473u }, - { 0x1a90, 4, 0x036d0473u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0ef00008u }, - { 0x1a90, 4, 0x03c00275u }, - { 0x1a90, 4, 0x03c00542u }, - { 0x1a90, 4, 0x03c00821u }, - { 0x1a90, 4, 0x03c01275u }, - { 0x1a90, 4, 0x03c01542u }, - { 0x1a90, 4, 0x03c01821u }, - { 0x1a90, 4, 0x03c02275u }, - { 0x1a90, 4, 0x03c02542u }, - { 0x1a90, 4, 0x03c02821u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x061c0d47u }, - { 0x1a90, 4, 0x0620133cu }, - { 0x1a90, 4, 0x063750e7u }, - { 0x1a90, 4, 0x06414fecu }, - { 0x1a90, 4, 0x065920d0u }, - { 0x1a90, 4, 0x06600040u }, - { 0x1a90, 4, 0x05750000u }, - { 0x1a90, 4, 0x05651df0u }, - { 0x0e90, 4, 0x01c43112u }, - { 0x1890, 4, 0x01c43112u }, - { 0x1a90, 4, 0x01c43112u }, - { 0x0808, 4, 0x3e0282ffu }, - { 0x1002, 1, 0x000000aeu }, - { 0x0958, 4, 0x00000000u }, - { 0x0cb0, 4, 0x77777777u }, - { 0x0eb0, 4, 0x77777777u }, - { 0x18b4, 4, 0x77777777u }, - { 0x1ab4, 4, 0x77777777u }, - { 0x1abc, 4, 0x77700000u }, - { 0x080c, 4, 0x1000002fu }, - { 0x0a04, 4, 0x45ff800cu }, - { 0x0808, 4, 0x3e0282ffu }, - { 0x0454, 1, 0x00000000u }, - { 0x0a80, 4, 0x218075b2u }, - { 0x0c1c, 4, 0x40000053u }, - { 0x0e1c, 4, 0x40000053u }, - { 0x181c, 4, 0x40000053u }, - { 0x1a1c, 4, 0x40000053u }, - { 0x08ac, 4, 0xf40f5508u }, - { 0x082c, 4, 0x73986170u }, - { 0x1002, 1, 0x000000afu }, - { 0x0860, 4, 0x72d5c321u }, - { 0x0c90, 4, 0x01803001u }, - { 0x0e90, 4, 0x01807001u }, - { 0x1890, 4, 0x01807001u }, - { 0x1a90, 4, 0x01807001u }, - { 0x0a20, 4, 0x1a1b0030u }, - { 0x0a24, 4, 0x090e1317u }, - { 0x0a28, 4, 0x00000204u }, - { 0x0668, 2, 0x00001000u }, - { 0x0483, 1, 0x00000000u }, - { 0x08ac, 4, 0xf40f5508u }, - { 0x082c, 4, 0x73986170u }, - { 0x0c90, 4, 0x01803c01u }, - { 0x0e90, 4, 0x01807c01u }, - { 0x1890, 4, 0x01807c01u }, - { 0x1a90, 4, 0x01807c01u }, - { 0x087c, 4, 0x000fc000u }, - { 0x0874, 4, 0x21612c2eu }, - { 0x0880, 4, 0x00000000u }, - { 0x0884, 4, 0x00000000u }, - { 0x0898, 4, 0x00000000u }, - { 0x089c, 4, 0x00000000u }, - { 0x087c, 4, 0x000fc000u }, - { 0x1998, 4, 0x21801000u }, - { 0x1998, 4, 0x21801000u }, - { 0x1998, 4, 0x21801001u }, - { 0x1998, 4, 0x21801002u }, - { 0x1998, 4, 0x21801003u }, - { 0x1998, 4, 0x25801004u }, - { 0x1998, 4, 0x25801005u }, - { 0x1998, 4, 0x25801006u }, - { 0x1998, 4, 0x25801007u }, - { 0x1998, 4, 0x25801008u }, - { 0x1998, 4, 0x25801009u }, - { 0x1998, 4, 0x2580100au }, - { 0x1998, 4, 0x2580100bu }, - { 0x1998, 4, 0x2580100cu }, - { 0x1998, 4, 0x2580100du }, - { 0x1998, 4, 0x2580100eu }, - { 0x1998, 4, 0x2580100fu }, - { 0x1998, 4, 0x25801010u }, - { 0x1998, 4, 0x25801011u }, - { 0x1998, 4, 0x25801012u }, - { 0x1998, 4, 0x25801013u }, - { 0x1998, 4, 0x2580102cu }, - { 0x1998, 4, 0x2580102du }, - { 0x1998, 4, 0x2580102eu }, - { 0x1998, 4, 0x2580102fu }, - { 0x1998, 4, 0x25801030u }, - { 0x1998, 4, 0x25801031u }, - { 0x1998, 4, 0x25801032u }, - { 0x1998, 4, 0x25801033u }, - { 0x1998, 4, 0x25801034u }, - { 0x1998, 4, 0x25801035u }, - { 0x1998, 4, 0x23801014u }, - { 0x1998, 4, 0x23801015u }, - { 0x1998, 4, 0x23801016u }, - { 0x1998, 4, 0x23801017u }, - { 0x1998, 4, 0x23801018u }, - { 0x1998, 4, 0x23801019u }, - { 0x1998, 4, 0x2380101au }, - { 0x1998, 4, 0x2380101bu }, - { 0x1998, 4, 0x23801036u }, - { 0x1998, 4, 0x23801037u }, - { 0x1998, 4, 0x23801038u }, - { 0x1998, 4, 0x23801039u }, - { 0x1998, 4, 0x2380103au }, - { 0x1998, 4, 0x2380103bu }, - { 0x1998, 4, 0x2380103cu }, - { 0x1998, 4, 0x2380103du }, - { 0x1998, 4, 0x2380103eu }, - { 0x1998, 4, 0x2380103fu }, - { 0x1998, 4, 0x2180101cu }, - { 0x1998, 4, 0x2180101du }, - { 0x1998, 4, 0x2180101eu }, - { 0x1998, 4, 0x2180101fu }, - { 0x1998, 4, 0x21801020u }, - { 0x1998, 4, 0x21801021u }, - { 0x1998, 4, 0x21801022u }, - { 0x1998, 4, 0x21801023u }, - { 0x1998, 4, 0x21801040u }, - { 0x1998, 4, 0x21801041u }, - { 0x1998, 4, 0x21801042u }, - { 0x1998, 4, 0x21801043u }, - { 0x1998, 4, 0x21801044u }, - { 0x1998, 4, 0x21801045u }, - { 0x1998, 4, 0x21801046u }, - { 0x1998, 4, 0x21801047u }, - { 0x1998, 4, 0x21801048u }, - { 0x1998, 4, 0x21801049u }, - { 0x1998, 4, 0x22801100u }, - { 0x1998, 4, 0x22801100u }, - { 0x1998, 4, 0x22801101u }, - { 0x1998, 4, 0x22801102u }, - { 0x1998, 4, 0x22801103u }, - { 0x1998, 4, 0x26801104u }, - { 0x1998, 4, 0x26801105u }, - { 0x1998, 4, 0x26801106u }, - { 0x1998, 4, 0x26801107u }, - { 0x1998, 4, 0x26801108u }, - { 0x1998, 4, 0x26801109u }, - { 0x1998, 4, 0x2680110au }, - { 0x1998, 4, 0x2680110bu }, - { 0x1998, 4, 0x2680110cu }, - { 0x1998, 4, 0x2680110du }, - { 0x1998, 4, 0x2680110eu }, - { 0x1998, 4, 0x2680110fu }, - { 0x1998, 4, 0x26801110u }, - { 0x1998, 4, 0x26801111u }, - { 0x1998, 4, 0x26801112u }, - { 0x1998, 4, 0x26801113u }, - { 0x1998, 4, 0x2680112cu }, - { 0x1998, 4, 0x2680112du }, - { 0x1998, 4, 0x2680112eu }, - { 0x1998, 4, 0x2680112fu }, - { 0x1998, 4, 0x26801130u }, - { 0x1998, 4, 0x26801131u }, - { 0x1998, 4, 0x26801132u }, - { 0x1998, 4, 0x26801133u }, - { 0x1998, 4, 0x26801134u }, - { 0x1998, 4, 0x26801135u }, - { 0x1998, 4, 0x24801114u }, - { 0x1998, 4, 0x24801115u }, - { 0x1998, 4, 0x24801116u }, - { 0x1998, 4, 0x24801117u }, - { 0x1998, 4, 0x24801118u }, - { 0x1998, 4, 0x24801119u }, - { 0x1998, 4, 0x2480111au }, - { 0x1998, 4, 0x2480111bu }, - { 0x1998, 4, 0x24801136u }, - { 0x1998, 4, 0x24801137u }, - { 0x1998, 4, 0x24801138u }, - { 0x1998, 4, 0x24801139u }, - { 0x1998, 4, 0x2480113au }, - { 0x1998, 4, 0x2480113bu }, - { 0x1998, 4, 0x2480113cu }, - { 0x1998, 4, 0x2480113du }, - { 0x1998, 4, 0x2480113eu }, - { 0x1998, 4, 0x2480113fu }, - { 0x1998, 4, 0x2280111cu }, - { 0x1998, 4, 0x2280111du }, - { 0x1998, 4, 0x2280111eu }, - { 0x1998, 4, 0x2280111fu }, - { 0x1998, 4, 0x22801120u }, - { 0x1998, 4, 0x22801121u }, - { 0x1998, 4, 0x22801122u }, - { 0x1998, 4, 0x22801123u }, - { 0x1998, 4, 0x22801140u }, - { 0x1998, 4, 0x22801141u }, - { 0x1998, 4, 0x22801142u }, - { 0x1998, 4, 0x22801143u }, - { 0x1998, 4, 0x22801144u }, - { 0x1998, 4, 0x22801145u }, - { 0x1998, 4, 0x22801146u }, - { 0x1998, 4, 0x22801147u }, - { 0x1998, 4, 0x22801148u }, - { 0x1998, 4, 0x22801149u }, - { 0x1998, 4, 0x24801200u }, - { 0x1998, 4, 0x24801200u }, - { 0x1998, 4, 0x24801201u }, - { 0x1998, 4, 0x24801202u }, - { 0x1998, 4, 0x24801203u }, - { 0x1998, 4, 0x28801204u }, - { 0x1998, 4, 0x28801205u }, - { 0x1998, 4, 0x28801206u }, - { 0x1998, 4, 0x28801207u }, - { 0x1998, 4, 0x28801208u }, - { 0x1998, 4, 0x28801209u }, - { 0x1998, 4, 0x2880120au }, - { 0x1998, 4, 0x2880120bu }, - { 0x1998, 4, 0x2880120cu }, - { 0x1998, 4, 0x2880120du }, - { 0x1998, 4, 0x2880120eu }, - { 0x1998, 4, 0x2880120fu }, - { 0x1998, 4, 0x28801210u }, - { 0x1998, 4, 0x28801211u }, - { 0x1998, 4, 0x28801212u }, - { 0x1998, 4, 0x28801213u }, - { 0x1998, 4, 0x2880122cu }, - { 0x1998, 4, 0x2880122du }, - { 0x1998, 4, 0x2880122eu }, - { 0x1998, 4, 0x2880122fu }, - { 0x1998, 4, 0x28801230u }, - { 0x1998, 4, 0x28801231u }, - { 0x1998, 4, 0x28801232u }, - { 0x1998, 4, 0x28801233u }, - { 0x1998, 4, 0x28801234u }, - { 0x1998, 4, 0x28801235u }, - { 0x1998, 4, 0x26801214u }, - { 0x1998, 4, 0x26801215u }, - { 0x1998, 4, 0x26801216u }, - { 0x1998, 4, 0x26801217u }, - { 0x1998, 4, 0x26801218u }, - { 0x1998, 4, 0x26801219u }, - { 0x1998, 4, 0x2680121au }, - { 0x1998, 4, 0x2680121bu }, - { 0x1998, 4, 0x26801236u }, - { 0x1998, 4, 0x26801237u }, - { 0x1998, 4, 0x26801238u }, - { 0x1998, 4, 0x26801239u }, - { 0x1998, 4, 0x2680123au }, - { 0x1998, 4, 0x2680123bu }, - { 0x1998, 4, 0x2680123cu }, - { 0x1998, 4, 0x2680123du }, - { 0x1998, 4, 0x2680123eu }, - { 0x1998, 4, 0x2680123fu }, - { 0x1998, 4, 0x2480121cu }, - { 0x1998, 4, 0x2480121du }, - { 0x1998, 4, 0x2480121eu }, - { 0x1998, 4, 0x2480121fu }, - { 0x1998, 4, 0x24801220u }, - { 0x1998, 4, 0x24801221u }, - { 0x1998, 4, 0x24801222u }, - { 0x1998, 4, 0x24801223u }, - { 0x1998, 4, 0x24801240u }, - { 0x1998, 4, 0x24801241u }, - { 0x1998, 4, 0x24801242u }, - { 0x1998, 4, 0x24801243u }, - { 0x1998, 4, 0x24801244u }, - { 0x1998, 4, 0x24801245u }, - { 0x1998, 4, 0x24801246u }, - { 0x1998, 4, 0x24801247u }, - { 0x1998, 4, 0x24801248u }, - { 0x1998, 4, 0x24801249u }, - { 0x1998, 4, 0x23801300u }, - { 0x1998, 4, 0x23801300u }, - { 0x1998, 4, 0x23801301u }, - { 0x1998, 4, 0x23801302u }, - { 0x1998, 4, 0x23801303u }, - { 0x1998, 4, 0x27801304u }, - { 0x1998, 4, 0x27801305u }, - { 0x1998, 4, 0x27801306u }, - { 0x1998, 4, 0x27801307u }, - { 0x1998, 4, 0x27801308u }, - { 0x1998, 4, 0x27801309u }, - { 0x1998, 4, 0x2780130au }, - { 0x1998, 4, 0x2780130bu }, - { 0x1998, 4, 0x2780130cu }, - { 0x1998, 4, 0x2780130du }, - { 0x1998, 4, 0x2780130eu }, - { 0x1998, 4, 0x2780130fu }, - { 0x1998, 4, 0x27801310u }, - { 0x1998, 4, 0x27801311u }, - { 0x1998, 4, 0x27801312u }, - { 0x1998, 4, 0x27801313u }, - { 0x1998, 4, 0x2780132cu }, - { 0x1998, 4, 0x2780132du }, - { 0x1998, 4, 0x2780132eu }, - { 0x1998, 4, 0x2780132fu }, - { 0x1998, 4, 0x27801330u }, - { 0x1998, 4, 0x27801331u }, - { 0x1998, 4, 0x27801332u }, - { 0x1998, 4, 0x27801333u }, - { 0x1998, 4, 0x27801334u }, - { 0x1998, 4, 0x27801335u }, - { 0x1998, 4, 0x25801314u }, - { 0x1998, 4, 0x25801315u }, - { 0x1998, 4, 0x25801316u }, - { 0x1998, 4, 0x25801317u }, - { 0x1998, 4, 0x25801318u }, - { 0x1998, 4, 0x25801319u }, - { 0x1998, 4, 0x2580131au }, - { 0x1998, 4, 0x2580131bu }, - { 0x1998, 4, 0x25801336u }, - { 0x1998, 4, 0x25801337u }, - { 0x1998, 4, 0x25801338u }, - { 0x1998, 4, 0x25801339u }, - { 0x1998, 4, 0x2580133au }, - { 0x1998, 4, 0x2580133bu }, - { 0x1998, 4, 0x2580133cu }, - { 0x1998, 4, 0x2580133du }, - { 0x1998, 4, 0x2580133eu }, - { 0x1998, 4, 0x2580133fu }, - { 0x1998, 4, 0x2380131cu }, - { 0x1998, 4, 0x2380131du }, - { 0x1998, 4, 0x2380131eu }, - { 0x1998, 4, 0x2380131fu }, - { 0x1998, 4, 0x23801320u }, - { 0x1998, 4, 0x23801321u }, - { 0x1998, 4, 0x23801322u }, - { 0x1998, 4, 0x23801323u }, - { 0x1998, 4, 0x23801340u }, - { 0x1998, 4, 0x23801341u }, - { 0x1998, 4, 0x23801342u }, - { 0x1998, 4, 0x23801343u }, - { 0x1998, 4, 0x23801344u }, - { 0x1998, 4, 0x23801345u }, - { 0x1998, 4, 0x23801346u }, - { 0x1998, 4, 0x23801347u }, - { 0x1998, 4, 0x23801348u }, - { 0x1998, 4, 0x23801349u }, - { 0x0670, 4, 0xc0000000u }, - { 0x0423, 1, 0x000000ffu }, - { 0x04cc, 4, 0x0201ffffu }, - { 0x0577, 1, 0x00000003u }, - { 0x0652, 1, 0x00000000u }, - { 0x0040, 1, 0x00000004u }, - { 0x0a00, 4, 0x00d047c8u }, - { 0x0a70, 4, 0x101fff00u }, - { 0x0a74, 4, 0x00000028u }, - { 0x0a14, 4, 0x11144028u }, - { 0x0a20, 4, 0x1a1b0010u }, - { 0x0a84, 4, 0x9c1f8c00u }, - { 0x0a0a, 1, 0x00000040u }, - { 0x0994, 4, 0xffff0100u }, - { 0x0994, 4, 0xffff0000u }, - { 0x0994, 4, 0xffff0100u }, - { 0x0998, 4, 0x302c2824u }, - { 0x099c, 4, 0x403c3834u }, - { 0x09a0, 4, 0x00000044u }, - { 0x0994, 4, 0x4c480100u }, - { 0x0990, 4, 0x2710ffffu }, - { 0x0944, 4, 0x18000000u }, - { 0x08a4, 4, 0x7f7f7f7fu }, - { 0x08a4, 4, 0x7f7f7f7fu }, - { 0x0520, 4, 0x00002f0fu }, - { 0x0524, 4, 0x00ff4f0fu }, - { 0x0c90, 4, 0x0ef80000u }, - { 0x0e90, 4, 0x0ef80000u }, - { 0x1890, 4, 0x0ef80000u }, - { 0x1a90, 4, 0x0ef80000u }, - { 0x0c90, 4, 0x03018000u }, - { 0x0e90, 4, 0x03018000u }, - { 0x1890, 4, 0x03018000u }, - { 0x1a90, 4, 0x03018000u }, - { 0x0c90, 4, 0x031be77fu }, - { 0x0c90, 4, 0x032226bfu }, - { 0x0e90, 4, 0x031be77fu }, - { 0x0e90, 4, 0x032226bfu }, - { 0x1890, 4, 0x031be77fu }, - { 0x1890, 4, 0x032226bfu }, - { 0x1a90, 4, 0x031be77fu }, - { 0x1a90, 4, 0x032226bfu }, - { 0x0c90, 4, 0x032e26bfu }, - { 0x0c90, 4, 0x0ef00000u }, - { 0x0e90, 4, 0x0ef00000u }, - { 0x1890, 4, 0x0ef00000u }, - { 0x1a90, 4, 0x0ef00000u }, - { 0x0910, 4, 0x0000fc00u }, - { 0x0910, 4, 0x0000ec00u }, - { 0x0910, 4, 0x00002c00u }, - { 0x0910, 4, 0x00002c00u }, - { 0x0910, 4, 0x00002c00u }, - { 0x1994, 4, 0x0000007fu }, - { 0x0042, 1, 0x000000f0u }, - { 0x04c6, 1, 0x00000004u }, - { 0x0652, 1, 0x000000ebu }, - { 0x0421, 1, 0x0000000fu }, - { 0x0070, 1, 0x00000000u }, - { 0x003e, 1, 0x00000000u }, - { 0x0610, 1, 0x00000020u }, - { 0x0611, 1, 0x0000000du }, - { 0x0612, 1, 0x000000b0u }, - { 0x0613, 1, 0x000000c7u }, - { 0x0614, 1, 0x000000e4u }, - { 0x0615, 1, 0x000000b3u }, - { 0x06a2, 2, 0x00000520u }, - { 0x0860, 4, 0x72d5c321u }, - { 0x0c90, 4, 0x01803c01u }, - { 0x0e90, 4, 0x01807c01u }, - { 0x1890, 4, 0x01807c01u }, - { 0x1a90, 4, 0x01807c01u }, - { 0x0a20, 4, 0x1a1b0030u }, - { 0x0a24, 4, 0x090e1317u }, - { 0x0a28, 4, 0x00000204u }, - { 0x0668, 2, 0x00001000u }, - { 0x0483, 1, 0x00000000u }, - { 0x08ac, 4, 0xf40f5508u }, - { 0x082c, 4, 0x73986170u }, - { 0x0c90, 4, 0x01803c01u }, - { 0x0e90, 4, 0x01807c01u }, - { 0x1890, 4, 0x01807c01u }, - { 0x1a90, 4, 0x01807c01u }, - { 0x087c, 4, 0x000fc000u }, - { 0x0874, 4, 0x21612c2eu }, - { 0x0880, 4, 0x00000000u }, - { 0x0884, 4, 0x00000000u }, - { 0x0898, 4, 0x00000000u }, - { 0x089c, 4, 0x00000000u }, - { 0x087c, 4, 0x000fc000u }, - { 0x1998, 4, 0x25801004u }, - { 0x1998, 4, 0x25801005u }, - { 0x1998, 4, 0x25801006u }, - { 0x1998, 4, 0x25801007u }, - { 0x1998, 4, 0x25801008u }, - { 0x1998, 4, 0x25801009u }, - { 0x1998, 4, 0x2580100au }, - { 0x1998, 4, 0x2580100bu }, - { 0x1998, 4, 0x2580100cu }, - { 0x1998, 4, 0x2580100du }, - { 0x1998, 4, 0x2580100eu }, - { 0x1998, 4, 0x2580100fu }, - { 0x1998, 4, 0x25801010u }, - { 0x1998, 4, 0x25801011u }, - { 0x1998, 4, 0x25801012u }, - { 0x1998, 4, 0x25801013u }, - { 0x1998, 4, 0x2580102cu }, - { 0x1998, 4, 0x2580102du }, - { 0x1998, 4, 0x2580102eu }, - { 0x1998, 4, 0x2580102fu }, - { 0x1998, 4, 0x25801030u }, - { 0x1998, 4, 0x25801031u }, - { 0x1998, 4, 0x25801032u }, - { 0x1998, 4, 0x25801033u }, - { 0x1998, 4, 0x25801034u }, - { 0x1998, 4, 0x25801035u }, - { 0x1998, 4, 0x23801014u }, - { 0x1998, 4, 0x23801015u }, - { 0x1998, 4, 0x23801016u }, - { 0x1998, 4, 0x23801017u }, - { 0x1998, 4, 0x23801018u }, - { 0x1998, 4, 0x23801019u }, - { 0x1998, 4, 0x2380101au }, - { 0x1998, 4, 0x2380101bu }, - { 0x1998, 4, 0x23801036u }, - { 0x1998, 4, 0x23801037u }, - { 0x1998, 4, 0x23801038u }, - { 0x1998, 4, 0x23801039u }, - { 0x1998, 4, 0x2380103au }, - { 0x1998, 4, 0x2380103bu }, - { 0x1998, 4, 0x2380103cu }, - { 0x1998, 4, 0x2380103du }, - { 0x1998, 4, 0x2380103eu }, - { 0x1998, 4, 0x2380103fu }, - { 0x1998, 4, 0x2180101cu }, - { 0x1998, 4, 0x2180101du }, - { 0x1998, 4, 0x2180101eu }, - { 0x1998, 4, 0x2180101fu }, - { 0x1998, 4, 0x21801020u }, - { 0x1998, 4, 0x21801021u }, - { 0x1998, 4, 0x21801022u }, - { 0x1998, 4, 0x21801023u }, - { 0x1998, 4, 0x21801040u }, - { 0x1998, 4, 0x21801041u }, - { 0x1998, 4, 0x21801042u }, - { 0x1998, 4, 0x21801043u }, - { 0x1998, 4, 0x21801044u }, - { 0x1998, 4, 0x21801045u }, - { 0x1998, 4, 0x21801046u }, - { 0x1998, 4, 0x21801047u }, - { 0x1998, 4, 0x21801048u }, - { 0x1998, 4, 0x21801049u }, - { 0x1998, 4, 0x26801104u }, - { 0x1998, 4, 0x26801105u }, - { 0x1998, 4, 0x26801106u }, - { 0x1998, 4, 0x26801107u }, - { 0x1998, 4, 0x26801108u }, - { 0x1998, 4, 0x26801109u }, - { 0x1998, 4, 0x2680110au }, - { 0x1998, 4, 0x2680110bu }, - { 0x1998, 4, 0x2680110cu }, - { 0x1998, 4, 0x2680110du }, - { 0x1998, 4, 0x2680110eu }, - { 0x1998, 4, 0x2680110fu }, - { 0x1998, 4, 0x26801110u }, - { 0x1998, 4, 0x26801111u }, - { 0x1998, 4, 0x26801112u }, - { 0x1998, 4, 0x26801113u }, - { 0x1998, 4, 0x2680112cu }, - { 0x1998, 4, 0x2680112du }, - { 0x1998, 4, 0x2680112eu }, - { 0x1998, 4, 0x2680112fu }, - { 0x1998, 4, 0x26801130u }, - { 0x1998, 4, 0x26801131u }, - { 0x1998, 4, 0x26801132u }, - { 0x1998, 4, 0x26801133u }, - { 0x1998, 4, 0x26801134u }, - { 0x1998, 4, 0x26801135u }, - { 0x1998, 4, 0x24801114u }, - { 0x1998, 4, 0x24801115u }, - { 0x1998, 4, 0x24801116u }, - { 0x1998, 4, 0x24801117u }, - { 0x1998, 4, 0x24801118u }, - { 0x1998, 4, 0x24801119u }, - { 0x1998, 4, 0x2480111au }, - { 0x1998, 4, 0x2480111bu }, - { 0x1998, 4, 0x24801136u }, - { 0x1998, 4, 0x24801137u }, - { 0x1998, 4, 0x24801138u }, - { 0x1998, 4, 0x24801139u }, - { 0x1998, 4, 0x2480113au }, - { 0x1998, 4, 0x2480113bu }, - { 0x1998, 4, 0x2480113cu }, - { 0x1998, 4, 0x2480113du }, - { 0x1998, 4, 0x2480113eu }, - { 0x1998, 4, 0x2480113fu }, - { 0x1998, 4, 0x2280111cu }, - { 0x1998, 4, 0x2280111du }, - { 0x1998, 4, 0x2280111eu }, - { 0x1998, 4, 0x2280111fu }, - { 0x1998, 4, 0x22801120u }, - { 0x1998, 4, 0x22801121u }, - { 0x1998, 4, 0x22801122u }, - { 0x1998, 4, 0x22801123u }, - { 0x1998, 4, 0x22801140u }, - { 0x1998, 4, 0x22801141u }, - { 0x1998, 4, 0x22801142u }, - { 0x1998, 4, 0x22801143u }, - { 0x1998, 4, 0x22801144u }, - { 0x1998, 4, 0x22801145u }, - { 0x1998, 4, 0x22801146u }, - { 0x1998, 4, 0x22801147u }, - { 0x1998, 4, 0x22801148u }, - { 0x1998, 4, 0x22801149u }, - { 0x1998, 4, 0x28801204u }, - { 0x1998, 4, 0x28801205u }, - { 0x1998, 4, 0x28801206u }, - { 0x1998, 4, 0x28801207u }, - { 0x1998, 4, 0x28801208u }, - { 0x1998, 4, 0x28801209u }, - { 0x1998, 4, 0x2880120au }, - { 0x1998, 4, 0x2880120bu }, - { 0x1998, 4, 0x2880120cu }, - { 0x1998, 4, 0x2880120du }, - { 0x1998, 4, 0x2880120eu }, - { 0x1998, 4, 0x2880120fu }, - { 0x1998, 4, 0x28801210u }, - { 0x1998, 4, 0x28801211u }, - { 0x1998, 4, 0x28801212u }, - { 0x1998, 4, 0x28801213u }, - { 0x1998, 4, 0x2880122cu }, - { 0x1998, 4, 0x2880122du }, - { 0x1998, 4, 0x2880122eu }, - { 0x1998, 4, 0x2880122fu }, - { 0x1998, 4, 0x28801230u }, - { 0x1998, 4, 0x28801231u }, - { 0x1998, 4, 0x28801232u }, - { 0x1998, 4, 0x28801233u }, - { 0x1998, 4, 0x28801234u }, - { 0x1998, 4, 0x28801235u }, - { 0x1998, 4, 0x26801214u }, - { 0x1998, 4, 0x26801215u }, - { 0x1998, 4, 0x26801216u }, - { 0x1998, 4, 0x26801217u }, - { 0x1998, 4, 0x26801218u }, - { 0x1998, 4, 0x26801219u }, - { 0x1998, 4, 0x2680121au }, - { 0x1998, 4, 0x2680121bu }, - { 0x1998, 4, 0x26801236u }, - { 0x1998, 4, 0x26801237u }, - { 0x1998, 4, 0x26801238u }, - { 0x1998, 4, 0x26801239u }, - { 0x1998, 4, 0x2680123au }, - { 0x1998, 4, 0x2680123bu }, - { 0x1998, 4, 0x2680123cu }, - { 0x1998, 4, 0x2680123du }, - { 0x1998, 4, 0x2680123eu }, - { 0x1998, 4, 0x2680123fu }, - { 0x1998, 4, 0x2480121cu }, - { 0x1998, 4, 0x2480121du }, - { 0x1998, 4, 0x2480121eu }, - { 0x1998, 4, 0x2480121fu }, - { 0x1998, 4, 0x24801220u }, - { 0x1998, 4, 0x24801221u }, - { 0x1998, 4, 0x24801222u }, - { 0x1998, 4, 0x24801223u }, - { 0x1998, 4, 0x24801240u }, - { 0x1998, 4, 0x24801241u }, - { 0x1998, 4, 0x24801242u }, - { 0x1998, 4, 0x24801243u }, - { 0x1998, 4, 0x24801244u }, - { 0x1998, 4, 0x24801245u }, - { 0x1998, 4, 0x24801246u }, - { 0x1998, 4, 0x24801247u }, - { 0x1998, 4, 0x24801248u }, - { 0x1998, 4, 0x24801249u }, - { 0x1998, 4, 0x27801304u }, - { 0x1998, 4, 0x27801305u }, - { 0x1998, 4, 0x27801306u }, - { 0x1998, 4, 0x27801307u }, - { 0x1998, 4, 0x27801308u }, - { 0x1998, 4, 0x27801309u }, - { 0x1998, 4, 0x2780130au }, - { 0x1998, 4, 0x2780130bu }, - { 0x1998, 4, 0x2780130cu }, - { 0x1998, 4, 0x2780130du }, - { 0x1998, 4, 0x2780130eu }, - { 0x1998, 4, 0x2780130fu }, - { 0x1998, 4, 0x27801310u }, - { 0x1998, 4, 0x27801311u }, - { 0x1998, 4, 0x27801312u }, - { 0x1998, 4, 0x27801313u }, - { 0x1998, 4, 0x2780132cu }, - { 0x1998, 4, 0x2780132du }, - { 0x1998, 4, 0x2780132eu }, - { 0x1998, 4, 0x2780132fu }, - { 0x1998, 4, 0x27801330u }, - { 0x1998, 4, 0x27801331u }, - { 0x1998, 4, 0x27801332u }, - { 0x1998, 4, 0x27801333u }, - { 0x1998, 4, 0x27801334u }, - { 0x1998, 4, 0x27801335u }, - { 0x1998, 4, 0x25801314u }, - { 0x1998, 4, 0x25801315u }, - { 0x1998, 4, 0x25801316u }, - { 0x1998, 4, 0x25801317u }, - { 0x1998, 4, 0x25801318u }, - { 0x1998, 4, 0x25801319u }, - { 0x1998, 4, 0x2580131au }, - { 0x1998, 4, 0x2580131bu }, - { 0x1998, 4, 0x25801336u }, - { 0x1998, 4, 0x25801337u }, - { 0x1998, 4, 0x25801338u }, - { 0x1998, 4, 0x25801339u }, - { 0x1998, 4, 0x2580133au }, - { 0x1998, 4, 0x2580133bu }, - { 0x1998, 4, 0x2580133cu }, - { 0x1998, 4, 0x2580133du }, - { 0x1998, 4, 0x2580133eu }, - { 0x1998, 4, 0x2580133fu }, - { 0x1998, 4, 0x2380131cu }, - { 0x1998, 4, 0x2380131du }, - { 0x1998, 4, 0x2380131eu }, - { 0x1998, 4, 0x2380131fu }, - { 0x1998, 4, 0x23801320u }, - { 0x1998, 4, 0x23801321u }, - { 0x1998, 4, 0x23801322u }, - { 0x1998, 4, 0x23801323u }, - { 0x1998, 4, 0x23801340u }, - { 0x1998, 4, 0x23801341u }, - { 0x1998, 4, 0x23801342u }, - { 0x1998, 4, 0x23801343u }, - { 0x1998, 4, 0x23801344u }, - { 0x1998, 4, 0x23801345u }, - { 0x1998, 4, 0x23801346u }, - { 0x1998, 4, 0x23801347u }, - { 0x1998, 4, 0x23801348u }, - { 0x1998, 4, 0x23801349u }, - { 0x0608, 4, 0x00000000u }, - { 0x06a0, 2, 0x00000000u }, - { 0x06a2, 2, 0x00000000u }, - { 0x06a4, 2, 0x00000000u }, - { 0x0608, 4, 0x000000c0u }, - { 0x0610, 1, 0x00000020u }, - { 0x0611, 1, 0x0000000du }, - { 0x0612, 1, 0x000000b0u }, - { 0x0613, 1, 0x000000c7u }, - { 0x0614, 1, 0x000000e4u }, - { 0x0615, 1, 0x000000b3u }, - { 0x0102, 1, 0x00000002u }, - { 0x0422, 1, 0x00000031u }, - { 0x0541, 1, 0x00000064u }, - { 0x0542, 1, 0x00000000u }, - { 0x0550, 1, 0x00000019u }, - { 0x0102, 1, 0x00000000u }, - { 0x0608, 4, 0x90003b2fu }, - { 0x06a0, 2, 0x0000ffffu }, - { 0x06a2, 2, 0x0000ffffu }, - { 0x06a4, 2, 0x0000ffffu }, - { 0x0860, 4, 0x72d5c321u }, - { 0x0c90, 4, 0x01803c06u }, - { 0x0e90, 4, 0x01807c06u }, - { 0x1890, 4, 0x01807c06u }, - { 0x1a90, 4, 0x01807c06u }, - { 0x0a20, 4, 0x1a1b0030u }, - { 0x0a24, 4, 0x090e1317u }, - { 0x0a28, 4, 0x00000204u }, - { 0x0668, 2, 0x00001000u }, - { 0x0483, 1, 0x00000000u }, - { 0x08ac, 4, 0xf40f5508u }, - { 0x082c, 4, 0x73986170u }, - { 0x0c90, 4, 0x01803c06u }, - { 0x0e90, 4, 0x01807c06u }, - { 0x1890, 4, 0x01807c06u }, - { 0x1a90, 4, 0x01807c06u }, - { 0x087c, 4, 0x000fc000u }, - { 0x0874, 4, 0x21612c2eu }, - { 0x0880, 4, 0x00000000u }, - { 0x0884, 4, 0x00000000u }, - { 0x0898, 4, 0x00000000u }, - { 0x089c, 4, 0x00000000u }, - { 0x087c, 4, 0x00010000u }, - { 0x087c, 4, 0x00012000u }, - { 0x1998, 4, 0x25801004u }, - { 0x1998, 4, 0x25801005u }, - { 0x1998, 4, 0x25801006u }, - { 0x1998, 4, 0x25801007u }, - { 0x1998, 4, 0x25801008u }, - { 0x1998, 4, 0x25801009u }, - { 0x1998, 4, 0x2580100au }, - { 0x1998, 4, 0x2580100bu }, - { 0x1998, 4, 0x2580100cu }, - { 0x1998, 4, 0x2580100du }, - { 0x1998, 4, 0x2580100eu }, - { 0x1998, 4, 0x2580100fu }, - { 0x1998, 4, 0x25801010u }, - { 0x1998, 4, 0x25801011u }, - { 0x1998, 4, 0x25801012u }, - { 0x1998, 4, 0x25801013u }, - { 0x1998, 4, 0x2580102cu }, - { 0x1998, 4, 0x2580102du }, - { 0x1998, 4, 0x2580102eu }, - { 0x1998, 4, 0x2580102fu }, - { 0x1998, 4, 0x25801030u }, - { 0x1998, 4, 0x25801031u }, - { 0x1998, 4, 0x25801032u }, - { 0x1998, 4, 0x25801033u }, - { 0x1998, 4, 0x25801034u }, - { 0x1998, 4, 0x25801035u }, - { 0x1998, 4, 0x23801014u }, - { 0x1998, 4, 0x23801015u }, - { 0x1998, 4, 0x23801016u }, - { 0x1998, 4, 0x23801017u }, - { 0x1998, 4, 0x23801018u }, - { 0x1998, 4, 0x23801019u }, - { 0x1998, 4, 0x2380101au }, - { 0x1998, 4, 0x2380101bu }, - { 0x1998, 4, 0x23801036u }, - { 0x1998, 4, 0x23801037u }, - { 0x1998, 4, 0x23801038u }, - { 0x1998, 4, 0x23801039u }, - { 0x1998, 4, 0x2380103au }, - { 0x1998, 4, 0x2380103bu }, - { 0x1998, 4, 0x2380103cu }, - { 0x1998, 4, 0x2380103du }, - { 0x1998, 4, 0x2380103eu }, - { 0x1998, 4, 0x2380103fu }, - { 0x1998, 4, 0x2180101cu }, - { 0x1998, 4, 0x2180101du }, - { 0x1998, 4, 0x2180101eu }, - { 0x1998, 4, 0x2180101fu }, - { 0x1998, 4, 0x21801020u }, - { 0x1998, 4, 0x21801021u }, - { 0x1998, 4, 0x21801022u }, - { 0x1998, 4, 0x21801023u }, - { 0x1998, 4, 0x21801040u }, - { 0x1998, 4, 0x21801041u }, - { 0x1998, 4, 0x21801042u }, - { 0x1998, 4, 0x21801043u }, - { 0x1998, 4, 0x21801044u }, - { 0x1998, 4, 0x21801045u }, - { 0x1998, 4, 0x21801046u }, - { 0x1998, 4, 0x21801047u }, - { 0x1998, 4, 0x21801048u }, - { 0x1998, 4, 0x21801049u }, - { 0x1998, 4, 0x26801104u }, - { 0x1998, 4, 0x26801105u }, - { 0x1998, 4, 0x26801106u }, - { 0x1998, 4, 0x26801107u }, - { 0x1998, 4, 0x26801108u }, - { 0x1998, 4, 0x26801109u }, - { 0x1998, 4, 0x2680110au }, - { 0x1998, 4, 0x2680110bu }, - { 0x1998, 4, 0x2680110cu }, - { 0x1998, 4, 0x2680110du }, - { 0x1998, 4, 0x2680110eu }, - { 0x1998, 4, 0x2680110fu }, - { 0x1998, 4, 0x26801110u }, - { 0x1998, 4, 0x26801111u }, - { 0x1998, 4, 0x26801112u }, - { 0x1998, 4, 0x26801113u }, - { 0x1998, 4, 0x2680112cu }, - { 0x1998, 4, 0x2680112du }, - { 0x1998, 4, 0x2680112eu }, - { 0x1998, 4, 0x2680112fu }, - { 0x1998, 4, 0x26801130u }, - { 0x1998, 4, 0x26801131u }, - { 0x1998, 4, 0x26801132u }, - { 0x1998, 4, 0x26801133u }, - { 0x1998, 4, 0x26801134u }, - { 0x1998, 4, 0x26801135u }, - { 0x1998, 4, 0x24801114u }, - { 0x1998, 4, 0x24801115u }, - { 0x1998, 4, 0x24801116u }, - { 0x1998, 4, 0x24801117u }, - { 0x1998, 4, 0x24801118u }, - { 0x1998, 4, 0x24801119u }, - { 0x1998, 4, 0x2480111au }, - { 0x1998, 4, 0x2480111bu }, - { 0x1998, 4, 0x24801136u }, - { 0x1998, 4, 0x24801137u }, - { 0x1998, 4, 0x24801138u }, - { 0x1998, 4, 0x24801139u }, - { 0x1998, 4, 0x2480113au }, - { 0x1998, 4, 0x2480113bu }, - { 0x1998, 4, 0x2480113cu }, - { 0x1998, 4, 0x2480113du }, - { 0x1998, 4, 0x2480113eu }, - { 0x1998, 4, 0x2480113fu }, - { 0x1998, 4, 0x2280111cu }, - { 0x1998, 4, 0x2280111du }, - { 0x1998, 4, 0x2280111eu }, - { 0x1998, 4, 0x2280111fu }, - { 0x1998, 4, 0x22801120u }, - { 0x1998, 4, 0x22801121u }, - { 0x1998, 4, 0x22801122u }, - { 0x1998, 4, 0x22801123u }, - { 0x1998, 4, 0x22801140u }, - { 0x1998, 4, 0x22801141u }, - { 0x1998, 4, 0x22801142u }, - { 0x1998, 4, 0x22801143u }, - { 0x1998, 4, 0x22801144u }, - { 0x1998, 4, 0x22801145u }, - { 0x1998, 4, 0x22801146u }, - { 0x1998, 4, 0x22801147u }, - { 0x1998, 4, 0x22801148u }, - { 0x1998, 4, 0x22801149u }, - { 0x1998, 4, 0x28801204u }, - { 0x1998, 4, 0x28801205u }, - { 0x1998, 4, 0x28801206u }, - { 0x1998, 4, 0x28801207u }, - { 0x1998, 4, 0x28801208u }, - { 0x1998, 4, 0x28801209u }, - { 0x1998, 4, 0x2880120au }, - { 0x1998, 4, 0x2880120bu }, - { 0x1998, 4, 0x2880120cu }, - { 0x1998, 4, 0x2880120du }, - { 0x1998, 4, 0x2880120eu }, - { 0x1998, 4, 0x2880120fu }, - { 0x1998, 4, 0x28801210u }, - { 0x1998, 4, 0x28801211u }, - { 0x1998, 4, 0x28801212u }, - { 0x1998, 4, 0x28801213u }, - { 0x1998, 4, 0x2880122cu }, - { 0x1998, 4, 0x2880122du }, - { 0x1998, 4, 0x2880122eu }, - { 0x1998, 4, 0x2880122fu }, - { 0x1998, 4, 0x28801230u }, - { 0x1998, 4, 0x28801231u }, - { 0x1998, 4, 0x28801232u }, - { 0x1998, 4, 0x28801233u }, - { 0x1998, 4, 0x28801234u }, - { 0x1998, 4, 0x28801235u }, - { 0x1998, 4, 0x26801214u }, - { 0x1998, 4, 0x26801215u }, - { 0x1998, 4, 0x26801216u }, - { 0x1998, 4, 0x26801217u }, - { 0x1998, 4, 0x26801218u }, - { 0x1998, 4, 0x26801219u }, - { 0x1998, 4, 0x2680121au }, - { 0x1998, 4, 0x2680121bu }, - { 0x1998, 4, 0x26801236u }, - { 0x1998, 4, 0x26801237u }, - { 0x1998, 4, 0x26801238u }, - { 0x1998, 4, 0x26801239u }, - { 0x1998, 4, 0x2680123au }, - { 0x1998, 4, 0x2680123bu }, - { 0x1998, 4, 0x2680123cu }, - { 0x1998, 4, 0x2680123du }, - { 0x1998, 4, 0x2680123eu }, - { 0x1998, 4, 0x2680123fu }, - { 0x1998, 4, 0x2480121cu }, - { 0x1998, 4, 0x2480121du }, - { 0x1998, 4, 0x2480121eu }, - { 0x1998, 4, 0x2480121fu }, - { 0x1998, 4, 0x24801220u }, - { 0x1998, 4, 0x24801221u }, - { 0x1998, 4, 0x24801222u }, - { 0x1998, 4, 0x24801223u }, - { 0x1998, 4, 0x24801240u }, - { 0x1998, 4, 0x24801241u }, - { 0x1998, 4, 0x24801242u }, - { 0x1998, 4, 0x24801243u }, - { 0x1998, 4, 0x24801244u }, - { 0x1998, 4, 0x24801245u }, - { 0x1998, 4, 0x24801246u }, - { 0x1998, 4, 0x24801247u }, - { 0x1998, 4, 0x24801248u }, - { 0x1998, 4, 0x24801249u }, - { 0x1998, 4, 0x27801304u }, - { 0x1998, 4, 0x27801305u }, - { 0x1998, 4, 0x27801306u }, - { 0x1998, 4, 0x27801307u }, - { 0x1998, 4, 0x27801308u }, - { 0x1998, 4, 0x27801309u }, - { 0x1998, 4, 0x2780130au }, - { 0x1998, 4, 0x2780130bu }, - { 0x1998, 4, 0x2780130cu }, - { 0x1998, 4, 0x2780130du }, - { 0x1998, 4, 0x2780130eu }, - { 0x1998, 4, 0x2780130fu }, - { 0x1998, 4, 0x27801310u }, - { 0x1998, 4, 0x27801311u }, - { 0x1998, 4, 0x27801312u }, - { 0x1998, 4, 0x27801313u }, - { 0x1998, 4, 0x2780132cu }, - { 0x1998, 4, 0x2780132du }, - { 0x1998, 4, 0x2780132eu }, - { 0x1998, 4, 0x2780132fu }, - { 0x1998, 4, 0x27801330u }, - { 0x1998, 4, 0x27801331u }, - { 0x1998, 4, 0x27801332u }, - { 0x1998, 4, 0x27801333u }, - { 0x1998, 4, 0x27801334u }, - { 0x1998, 4, 0x27801335u }, - { 0x1998, 4, 0x25801314u }, - { 0x1998, 4, 0x25801315u }, - { 0x1998, 4, 0x25801316u }, - { 0x1998, 4, 0x25801317u }, - { 0x1998, 4, 0x25801318u }, - { 0x1998, 4, 0x25801319u }, - { 0x1998, 4, 0x2580131au }, - { 0x1998, 4, 0x2580131bu }, - { 0x1998, 4, 0x25801336u }, - { 0x1998, 4, 0x25801337u }, - { 0x1998, 4, 0x25801338u }, - { 0x1998, 4, 0x25801339u }, - { 0x1998, 4, 0x2580133au }, - { 0x1998, 4, 0x2580133bu }, - { 0x1998, 4, 0x2580133cu }, - { 0x1998, 4, 0x2580133du }, - { 0x1998, 4, 0x2580133eu }, - { 0x1998, 4, 0x2580133fu }, - { 0x1998, 4, 0x2380131cu }, - { 0x1998, 4, 0x2380131du }, - { 0x1998, 4, 0x2380131eu }, - { 0x1998, 4, 0x2380131fu }, - { 0x1998, 4, 0x23801320u }, - { 0x1998, 4, 0x23801321u }, - { 0x1998, 4, 0x23801322u }, - { 0x1998, 4, 0x23801323u }, - { 0x1998, 4, 0x23801340u }, - { 0x1998, 4, 0x23801341u }, - { 0x1998, 4, 0x23801342u }, - { 0x1998, 4, 0x23801343u }, - { 0x1998, 4, 0x23801344u }, - { 0x1998, 4, 0x23801345u }, - { 0x1998, 4, 0x23801346u }, - { 0x1998, 4, 0x23801347u }, - { 0x1998, 4, 0x23801348u }, - { 0x1998, 4, 0x23801349u }, - { 0x0060, 4, 0x00630000u }, - { 0x0060, 4, 0x00636300u }, - { 0x087c, 4, 0x00010000u }, - { 0x198c, 4, 0x00000007u }, - { 0x08fc, 4, 0x00000000u }, - { 0x198c, 4, 0x00000000u }, - { 0x08f8, 4, 0x400082c0u }, - { 0x198c, 4, 0x00000007u }, - { 0x08fc, 4, 0x00000209u }, - { 0x198c, 4, 0x00000000u }, - { 0x08f8, 4, 0x400082c0u }, - { 0x09a4, 4, 0x000a0080u }, - { 0x09a4, 4, 0x00080080u }, - { 0x0a2c, 4, 0x00900000u }, - { 0x0a2c, 4, 0x00908000u }, - { 0x0b58, 4, 0xe0000209u }, - { 0x0b58, 4, 0xe0000208u }, - { 0x0c50, 4, 0x0000001eu }, - { 0x0e50, 4, 0x0000001eu }, - { 0x1850, 4, 0x0000001eu }, - { 0x1a50, 4, 0x0000001eu }, - { 0x08a4, 4, 0x7f7f7f30u }, - { 0x08a4, 4, 0x7f7f2830u }, - { 0x0440, 4, 0x00000fffu }, - { 0x0c90, 4, 0x0423ad58u }, - { 0x0994, 4, 0x4c480100u }, - { 0x0994, 4, 0x4c480100u }, - { 0x0990, 4, 0xfffeffffu }, - { 0x0998, 4, 0x2c282420u }, - { 0x099c, 4, 0x3c383430u }, - { 0x09a0, 4, 0x00000040u }, - { 0x0994, 4, 0x48440100u }, - { 0x0994, 4, 0x48440100u }, - { 0x0994, 4, 0x48440100u }, - { 0x0994, 4, 0x48440102u }, - { 0x0994, 4, 0x48440102u }, - { 0x0994, 4, 0x48440103u }, -}; -static constexpr size_t kKernelPostFwdlWritesCount = sizeof(kKernelPostFwdlWrites)/sizeof(kKernelPostFwdlWrites[0]); -/* clang-format on */ - -#endif /* HAL8814_POSTFWDL_REPLAY_H */ diff --git a/src/FirmwareManager.cpp b/src/FirmwareManager.cpp index 0d6bf9f..11b6654 100644 --- a/src/FirmwareManager.cpp +++ b/src/FirmwareManager.cpp @@ -252,8 +252,7 @@ void FirmwareManager::FirmwareDownload_8814A() { * rtw88_8814au's usbmon trace (163 reads + 79 writes). The reads matter: * several Realtek registers have read-side-effects (RC1 status clears, * latched values, state-machine triggers), and a writes-only replay was - * insufficient to unlock the chip's BCN_VALID ack after the bulk OUT. - * Generated from /tmp/rtw88_init.seq via tools/gen_rtw88_mimic.py. */ + * insufficient to unlock the chip's BCN_VALID ack after the bulk OUT. */ (void)_device.rtw_read32(0x00F0); _device.rtw_write8(0x001C, 0x00); (void)_device.rtw_read32(0x0064); diff --git a/src/HalModule.cpp b/src/HalModule.cpp index 52e56c1..a4210e6 100644 --- a/src/HalModule.cpp +++ b/src/HalModule.cpp @@ -3,7 +3,6 @@ #include "FirmwareManager.h" #include "Hal8812PhyReg.h" #include "Hal8814_PhyTables.h" -#include "Hal8814_PostFwdlReplay.h" #include "Hal8821PhyReg.h" #include "PhyTableLoader.h" #include "phydm_pre_define.h" @@ -142,38 +141,6 @@ bool HalModule::rtl8812au_hal_init(uint8_t init_channel) { const bool is_8814a = _eepromManager->version_id.ICType == CHIP_8814A; const bool is_8821 = _eepromManager->version_id.ICType == CHIP_8821; - /* Experimental, env-gated (default OFF): deinit-before-init for the 8814. - * The 8814 path below skips BOTH rtl8812au_hw_reset() (the - * "DEINIT_BEFORE_INIT" double-init guard) and InitPowerOn() — it relies on - * the 242-op rtw88-mimic inside FirmwareDownload_8814A instead. So a - * WARM/dirty chip (a re-run without a cold USB Vbus power-cycle, or after - * rtw88_8814au auto-bound it) is never reset: RX bulk-IN wedges (~10 frames - * then LIBUSB_ERROR_TIMEOUT) and TX goes 0 on-air, until a Vbus drop. The - * kernel avoids this by card_disable-on-unbind (CardDisableRTL8814AU runs - * Rtl8814A_NIC_DISABLE_FLOW); devourer never powers the chip off. Mirror it - * as a deinit-before-init here. GATED: the 8814 PWR_SEQ has a known - * cut-mask-filter interaction with fwdl, so this needs clean-rig validation - * (set the env, run devourer twice with no power-cycle, confirm the 2nd run - * does not wedge AND cold init is unaffected) before it can become default. */ - if (is_8814a && std::getenv("DEVOURER_8814_DEINIT_BEFORE_INIT") != nullptr) { - if (macAlreadyOn) { - /* Kernel card-disable prologue (hal_carddisable_8814, - * usb_halinit.c:1394-1398): quiesce MAC DMA first ("stop rx"), then - * run the disable flow. The kernel also only card-disables a chip - * whose HW init completed (usb_halinit.c:1453) — mirror that with - * the warm-boot detect above rather than feeding ACT_TO_CARDEMU to - * a cold chip, a path the kernel never exercises. */ - _logger->info("8814 deinit-before-init: running card_disable_flow"); - _device.rtw_write8(REG_CR, 0x0); /* stop rx */ - if (!HalPwrSeqCmdParsing(rtl8814A_card_disable_flow)) { - _logger->warn("8814 deinit-before-init: card_disable_flow failed"); - } - } else { - _logger->info( - "8814 deinit-before-init: chip is cold, skipping card_disable_flow"); - } - } - if (!is_8814a) { if (!is_8821) { _device.rtw_write8(REG_RF_CTRL, 5); @@ -410,9 +377,9 @@ bool HalModule::rtl8812au_hal_init(uint8_t init_channel) { * user's channel from `init_hw_mlme_ext`) wedged 8821AU at ch100 * mid-second-channel-set TX-power loop — the chip stopped ACK'ing * USB control transfers after 2 BB writes, leaving the demo - * deadlocked on libusb_control_transfer until SIGKILL. See kaeru - * cite "8821AU ch100 wedge — confirmed second-channel-set is the - * trigger, not band-switch 2026-06-02". */ + * deadlocked on libusb_control_transfer until SIGKILL. (Verified on + * hardware: the second channel-set is the trigger, not the + * band-switch.) */ const BandType init_band = (init_channel <= 14) ? BandType::BAND_ON_2_4G : BandType::BAND_ON_5G; if (_eepromManager->version_id.ICType == CHIP_8814A) { @@ -585,7 +552,7 @@ bool HalModule::rtl8812au_hal_init(uint8_t init_channel) { * during init; devourer never wrote REG_MACID for 8812AU at all and used * a hardcoded locally-administered address for 8814AU. Many Realtek MAC * TX paths refuse to schedule a frame if the MAC ID is zero — caught by - * the T1 canary diff (TODO.md) on 8812AU at ch6: kernel side + * a kernel-vs-devourer register canary diff on 8812AU at ch6: kernel side * `MAC 0x610 = 0x02FFC954`, devourer side `MAC 0x610 = 0x00000000`. * * Read the MAC from EFUSE per chip type (EepromManager handles the @@ -667,84 +634,6 @@ bool HalModule::rtl8812au_hal_init(uint8_t init_channel) { _logger->info("8814A: trace-derived post-fwdl writes applied"); } - if (is_8814a) { - /* TX-validation diagnostic. Read back the registers that gate USB→TX - * dataflow to confirm what state the chip is actually in at the end of - * init. One log per register to dodge the Logger format helper's - * placeholder-overflow truncation. */ - using namespace rtl8814a; - _logger->info("8814A TX-state CR = 0x{:04x}", _device.rtw_read16(REG_CR)); - _logger->info("8814A TX-state TXPAUSE(0x522) = 0x{:02x}", - _device.rtw_read8(0x0522)); - _logger->info("8814A TX-state FWHW_TXQ_CTRL(0x420) = 0x{:08x}", - _device.rtw_read32(0x0420)); - _logger->info("8814A TX-state FIFOPAGE_CTRL_2 = 0x{:08x}", - _device.rtw_read32(REG_FIFOPAGE_CTRL_2_8814A)); - _logger->info("8814A TX-state MGQ_PGBNDY = 0x{:04x}", - _device.rtw_read16(REG_MGQ_PGBNDY_8814A)); - _logger->info("8814A TX-state FIFOPAGE_INFO_1(HPQ) = 0x{:08x}", - _device.rtw_read32(REG_FIFOPAGE_INFO_1_8814A)); - _logger->info("8814A TX-state FIFOPAGE_INFO_5(PUB) = 0x{:08x}", - _device.rtw_read32(REG_FIFOPAGE_INFO_5_8814A)); - _logger->info("8814A TX-state MCUFWDL = 0x{:08x}", - _device.rtw_read32(0x0080)); - _logger->info("8814A TX-state TXDMA_STATUS(0x210) = 0x{:08x}", - _device.rtw_read32(0x0210)); - _logger->info("8814A TX-state TXDMA_OFFSET_CHK(0x20C) = 0x{:08x}", - _device.rtw_read32(0x020C)); - /* 8-bit read of 0x423 is unreliable on 8814; surface both 8-bit and the - * byte-3 of the 32-bit FWHW_TXQ_CTRL word for comparison. */ - _logger->info("8814A TX-state HWSEQ_CTRL(0x423,8bit) = 0x{:02x}", - _device.rtw_read8(0x0423)); - _logger->info("8814A TX-state HWSEQ_CTRL(byte3 of 0x420 32bit) = 0x{:02x}", - (_device.rtw_read32(REG_FWHW_TXQ_CTRL) >> 24) & 0xFF); - _logger->info("8814A TX-state TCR(0x604) = 0x{:08x}", - _device.rtw_read32(0x0604)); - _logger->info("8814A TX-state RCR(0x608) = 0x{:08x}", - _device.rtw_read32(0x0608)); - } - - if (is_8814a && std::getenv("DEVOURER_OOT_REPLAY")) { - /* DEVOURER_OOT_REPLAY=1 enables verbatim replay of the kernel - * driver's post-fwdl vendor-write sequence on 8814AU. This is the - * minimum that unwedges TX today. - * - * Without this, devourer's post-fwdl chip state diverges from the - * working kernel-driver's in many small ways that combine to leave - * the chip's USB controller wedged — bulk OUT EP 0x02 NAKs every - * TX URB. With the replay, devourer's chip state matches the - * kernel driver byte-for-byte (verified via live pyusb register - * dump) and TX URBs drain (status=0 across 781 of 781 URBs in - * verification runs). - * - * Trade-off: the replay sequence also includes BB writes that - * degrade RX throughput on the same chip (e.g. RX-packet rate - * drops ~10x in a 60-second window). Because of this, the replay - * is opt-in via env var; default behaviour preserves RX. Users - * who need 8814 TX set DEVOURER_OOT_REPLAY=1. - * - * Source of the replay table (hal/Hal8814_PostFwdlReplay.h): - * usbmon capture of a cold-init kernel-driver session - * modprobe 8814au; ip link up; iw set monitor; iw set channel 6 - * with all vendor control writes between the last fwdl bulk chunk - * and the first TX bulk OUT captured (4464 entries). - * - * Long-term: port the equivalent upstream functions individually - * (rtl8814a_hal_init.c + usb_halinit.c) so TX works without the - * RX trade-off and without 130 KB of opaque trace data in the - * binary. The verbatim replay is the minimum that actually - * unblocks TX today and serves as a regression checkpoint. */ - _logger->info("8814A: replaying {} kernel-driver post-fwdl writes", - kKernelPostFwdlWritesCount); - for (size_t i = 0; i < kKernelPostFwdlWritesCount; ++i) { - const auto &w = kKernelPostFwdlWrites[i]; - if (w.len == 1) _device.rtw_write8(w.addr, (uint8_t)w.value); - else if (w.len == 2) _device.rtw_write16(w.addr, (uint16_t)w.value); - else if (w.len == 4) _device.rtw_write32(w.addr, w.value); - } - _logger->info("8814A: replay complete"); - } - return true; } @@ -1730,9 +1619,9 @@ void HalModule::_InitInterrupt_8812AU() { void HalModule::_InitNetworkType_8812A() { /* devourer is monitor-only; the kernel rtw driver sets MSR (REG_CR * bits [17:16] for port 0) to NT_NO_LINK in this case. The earlier - * NT_LINK_AP value here was a leftover that the T1 canary diff - * caught — `MAC 0x102 = 0x02` on devourer vs `0x00` on kernel - * (TODO.md, kernel side via `iwpriv read 4,0x100`). Setting + * NT_LINK_AP value here was a leftover that a kernel-vs-devourer + * register canary diff caught — `MAC 0x102 = 0x02` on devourer vs + * `0x00` on kernel (kernel side via `iwpriv read 4,0x100`). Setting * NT_NO_LINK matches kernel's monitor-mode state. */ auto value32 = _device.rtw_read32(REG_CR); value32 = (value32 & ~MASK_NETTYPE) | _NETTYPE(NT_NO_LINK); diff --git a/src/Iqk8814a.cpp b/src/Iqk8814a.cpp index f8233ec..67342d4 100644 --- a/src/Iqk8814a.cpp +++ b/src/Iqk8814a.cpp @@ -38,10 +38,9 @@ void Iqk8814a::BackupMacBb(const uint32_t *macRegs, uint32_t *macOut, } void Iqk8814a::BackupRf(const uint32_t *regs, uint32_t out[][4]) { - /* Path C/D RF reads return sentinel/zero by HW design (kaeru: - * "RTL8814AU RF read mechanism — paths C/D write-only by HW design") - * but mirror upstream's read-all-4-paths pattern exactly so the - * restore writes back identical values. */ + /* 8814 RF paths C/D are write-only by HW design — reads return + * sentinel/zero. Mirror upstream's read-all-4-paths pattern anyway so + * the restore writes back identical values. */ for (int i = 0; i < kRfRegNum; i++) { out[i][RfPath::RF_PATH_A] = _radio->phy_query_rf_reg(RfPath::RF_PATH_A, regs[i], kRFRegMask); diff --git a/src/RadioManagementModule.cpp b/src/RadioManagementModule.cpp index c0c2a35..6c83401 100644 --- a/src/RadioManagementModule.cpp +++ b/src/RadioManagementModule.cpp @@ -306,7 +306,7 @@ void RadioManagementModule::phy_SwChnlAndSetBwMode8812() { _pwrTrk.TickThermalMeter(current_band_type, _currentChannel); } - /* T1 cross-validation oracle (TODO.md): when DEVOURER_DUMP_CANARY=1 + /* Kernel cross-validation oracle: when DEVOURER_DUMP_CANARY=1 * is set, dump the canary BB/MAC/RF registers after channel-set is * complete. Output format matches `iwpriv read 4,` / * `iwpriv rfr ` so kernel and devourer dumps @@ -331,9 +331,8 @@ void RadioManagementModule::phy_SwChnlAndSetBwMode8812() { * or sentinel zero — including them just clutters the diff. * - 8812AU is 2T2R: paths A + B are both active. * - 8814AU is 4T4R: paths A + B + C + D BB-table state is active. - * RF[C]/RF[D] are write-only by HW design (kaeru cite "RTL8814AU - * RF read mechanism — paths C/D write-only by HW design") so we - * skip RF reads for paths C and D. + * RF[C]/RF[D] are write-only by HW design (reads return + * sentinel/zero) so we skip RF reads for paths C and D. * The MAC anchor set is chip-independent (same regs across the * family). */ @@ -1212,11 +1211,11 @@ void RadioManagementModule::init_hw_mlme_ext(SelectedChannel pmlmeext) { * (channel, bw, offset) AND the chip is an 8821AU, skip the * reset-and-redo. The second channel-set wedges 8821AU at ch100 * mid-TX-power loop (chip stops ACK'ing USB control transfers - * after 2 BB writes — see kaeru cite "8821AU ch100 wedge — - * confirmed second-channel-set is the trigger, not band-switch - * 2026-06-02"). Other chips (8812AU, 8814AU) tolerate the second - * pass; some 8814AU init steps appear to depend on it (gating the - * skip caused 8814 ch6 to lose its RX loop entry). + * after 2 BB writes; verified on hardware that the second + * channel-set is the trigger, not the band-switch). Other chips + * (8812AU, 8814AU) tolerate the second pass; some 8814AU init + * steps appear to depend on it (gating the skip caused 8814 ch6 + * to lose its RX loop entry). * * Falls through to the historical reset+redo path for everything * else. */ diff --git a/tests/README.md b/tests/README.md index ba71fc4..95a6347 100644 --- a/tests/README.md +++ b/tests/README.md @@ -81,7 +81,7 @@ sudo python3 tests/regress.py \ --vm-name devourer-testrig \ --vm-ssh @ # Defaults to --channel 6 (2.4GHz). Re-run with --channel 36 / 100 to -# also exercise 5GHz; devourer has known broken cells there for some chips. +# also exercise 5GHz. ``` VM mode is what unblocks chipsets where the host kernel driver doesn't @@ -148,11 +148,13 @@ per-cell stdout/stderr logs end up at `/tmp/devourer-regress-last/`. ## CLI knobs -- `--channel N` — Wi-Fi channel for both adapters (default `6`). **Devourer's - 5GHz path has known broken cells** (8814 RX, 8821 TX/RX) that are masked - if you only test 2.4GHz. Override with `--channel 36` / `--channel 100` - to surface them. The 8814 TX gate (kaeru ref `RTL8814AU libusb-userspace - bulk-OUT does not produce on-air TX`) shows on both bands. +- `--channel N` — Wi-Fi channel for both adapters (default `6`). Band + behaviour can differ per chip — don't assume a single-channel matrix is + comprehensive; re-run with `--channel 36` / `--channel 100` to cover + 5GHz. NB: with the RTL8814AU on the kernel-TX side, kernel-TX cells + read 0 at every channel — `88XXau` host-push beacon injection (what + `inject_beacon.py` does) doesn't emit on that driver; judge 8814 TX by + the devourer-TX cells. - `--duration SECONDS` — per-cell injection/measurement window (default 15) - `--pass-threshold N` — min hits to pass (default 1) - `--tx-pid 0xNNNN` / `--rx-pid 0xNNNN` — pick specific DUTs (defaults to @@ -188,7 +190,7 @@ A single sniffer chip can't cover the whole spectrum. Pick by band: | Band | Sniffer chip | Why | |----------------------|-------------------------|--------------------------------------| | 2.4 GHz (ch 1–13) | **AR9271** (`ath9k_htc`)| Vanilla radiotap, no driver-side flag filtering. Canonical kernel-MAC reference for HT/legacy capture. 2.4 G only. | -| 5 GHz (UNII-1/2/3) | **RTL8832AU** (`8852au`, lwfinger OOT) | Covers UNII-1 (ch36–48), UNII-2 DFS (ch52–144), UNII-3 (ch149+). Out-of-tree DKMS; kernel-6.18 patch set documented in kaeru (`lwfinger/rtl8852au — kernel 6.18 build patches`). **Caveat — host stall observed once** (2026-06-04) when used as `--sniffer-iface` for `--full-matrix --channel 36` on kernel 6.18 with three concurrent Realtek DUTs on the same xhci bus; hard CPU stall, no oops/NMI trace. Cause not isolated (xhci bus contention vs. lwfinger 5 GHz monitor path); if you see a stall, drop `--sniffer-iface` for 5 G runs and use compositional attribution across cells. | +| 5 GHz (UNII-1/2/3) | **RTL8832AU** (`8852au`, lwfinger OOT) | Covers UNII-1 (ch36–48), UNII-2 DFS (ch52–144), UNII-3 (ch149+). Out-of-tree DKMS; recent kernels may need build patches. **Caveat — host stall observed once** when used as `--sniffer-iface` for `--full-matrix --channel 36` on kernel 6.18 with three concurrent Realtek DUTs on the same xhci bus; hard CPU stall, no oops/NMI trace. Cause not isolated (xhci bus contention vs. lwfinger 5 GHz monitor path); if you see a stall, drop `--sniffer-iface` for 5 G runs and use compositional attribution across cells. | Set the iface per run — there is no auto-band switching: @@ -354,17 +356,10 @@ to add new chipsets — the rest of the script is chipset-agnostic. still runs locally; if the VM is on a different host, run virsh there (via your own wrapper). - Cell 4 (`devourer-TX → devourer-RX`) requires both DUTs to be on the - host and devourer-claimable simultaneously. Works fine, but means both - chipsets need working devourer RX — if one is RX-broken (e.g. current - RTL8814AU TODO), that cell will always show 0 hits regardless of TX. -- **Channel / band asymmetry on devourer.** A single-channel matrix run - doesn't tell the full story — devourer's 5GHz code path has long- - standing broken cells (8814 RX, 8821 TX, 8821 RX) that pass on 2.4GHz. - The default of `--channel 6` was chosen because it produces the - "everything except 8814 TX works" picture that matches CLAUDE.md and - the project's primary use case. Run with `--channel 36` or - `--channel 100` to surface the 5GHz issues. Older PR matrix tables - in the repo history were captured at `--channel 100`, which is why - multiple PR bodies (e.g. #34, #42, #49) record "8814 RX devourer still - broken" — those cells work at 2.4GHz; the documented "broken" status - is band-specific. + host and devourer-claimable simultaneously. Both chipsets need working + devourer RX — an RX-side failure shows as 0 hits in that cell + regardless of the TX side. +- **Channel / band asymmetry.** A single-channel matrix run doesn't tell + the full story — chip behaviour can differ per band. Run 2.4GHz + (`--channel 6`) plus at least one 5GHz channel (`--channel 36` / + `--channel 100`) before calling a configuration good.