162306a36Sopenharmony_ci/* bnx2x_dump.h: QLogic Everest network driver. 262306a36Sopenharmony_ci * 362306a36Sopenharmony_ci * Copyright (c) 2012-2013 Broadcom Corporation 462306a36Sopenharmony_ci * Copyright (c) 2014 QLogic Corporation 562306a36Sopenharmony_ci * All rights reserved 662306a36Sopenharmony_ci * 762306a36Sopenharmony_ci * Unless you and QLogic execute a separate written software license 862306a36Sopenharmony_ci * agreement governing use of this software, this software is licensed to you 962306a36Sopenharmony_ci * under the terms of the GNU General Public License version 2, available 1062306a36Sopenharmony_ci * at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL"). 1162306a36Sopenharmony_ci * 1262306a36Sopenharmony_ci * Notwithstanding the above, under no circumstances may you combine this 1362306a36Sopenharmony_ci * software in any way with any other QLogic software provided under a 1462306a36Sopenharmony_ci * license other than the GPL, without QLogic's express prior written 1562306a36Sopenharmony_ci * consent. 1662306a36Sopenharmony_ci */ 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_ci#ifndef BNX2X_DUMP_H 1962306a36Sopenharmony_ci#define BNX2X_DUMP_H 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_ci/* WaitP Definitions */ 2262306a36Sopenharmony_ci#define DRV_DUMP_XSTORM_WAITP_ADDRESS 0x2b8a80 2362306a36Sopenharmony_ci#define DRV_DUMP_TSTORM_WAITP_ADDRESS 0x1b8a80 2462306a36Sopenharmony_ci#define DRV_DUMP_USTORM_WAITP_ADDRESS 0x338a80 2562306a36Sopenharmony_ci#define DRV_DUMP_CSTORM_WAITP_ADDRESS 0x238a80 2662306a36Sopenharmony_ci 2762306a36Sopenharmony_ci/* Possible Chips */ 2862306a36Sopenharmony_ci#define DUMP_CHIP_E1 1 2962306a36Sopenharmony_ci#define DUMP_CHIP_E1H 2 3062306a36Sopenharmony_ci#define DUMP_CHIP_E2 4 3162306a36Sopenharmony_ci#define DUMP_CHIP_E3A0 8 3262306a36Sopenharmony_ci#define DUMP_CHIP_E3B0 16 3362306a36Sopenharmony_ci#define DUMP_PATH_0 512 3462306a36Sopenharmony_ci#define DUMP_PATH_1 1024 3562306a36Sopenharmony_ci#define NUM_PRESETS 13 3662306a36Sopenharmony_ci#define NUM_CHIPS 5 3762306a36Sopenharmony_ci 3862306a36Sopenharmony_cistruct dump_header { 3962306a36Sopenharmony_ci u32 header_size; /* Size in DWORDs excluding this field */ 4062306a36Sopenharmony_ci u32 version; 4162306a36Sopenharmony_ci u32 preset; 4262306a36Sopenharmony_ci u32 dump_meta_data; /* OR of CHIP and PATH. */ 4362306a36Sopenharmony_ci}; 4462306a36Sopenharmony_ci 4562306a36Sopenharmony_ci#define BNX2X_DUMP_VERSION 0x61111111 4662306a36Sopenharmony_cistruct reg_addr { 4762306a36Sopenharmony_ci u32 addr; 4862306a36Sopenharmony_ci u32 size; 4962306a36Sopenharmony_ci u32 chips; 5062306a36Sopenharmony_ci u32 presets; 5162306a36Sopenharmony_ci}; 5262306a36Sopenharmony_ci 5362306a36Sopenharmony_cistruct wreg_addr { 5462306a36Sopenharmony_ci u32 addr; 5562306a36Sopenharmony_ci u32 size; 5662306a36Sopenharmony_ci u32 read_regs_count; 5762306a36Sopenharmony_ci const u32 *read_regs; 5862306a36Sopenharmony_ci u32 chips; 5962306a36Sopenharmony_ci u32 presets; 6062306a36Sopenharmony_ci}; 6162306a36Sopenharmony_ci 6262306a36Sopenharmony_ci#define PAGE_MODE_VALUES_E2 2 6362306a36Sopenharmony_ci#define PAGE_READ_REGS_E2 1 6462306a36Sopenharmony_ci#define PAGE_WRITE_REGS_E2 1 6562306a36Sopenharmony_cistatic const u32 page_vals_e2[] = {0, 128}; 6662306a36Sopenharmony_cistatic const u32 page_write_regs_e2[] = {328476}; 6762306a36Sopenharmony_cistatic const struct reg_addr page_read_regs_e2[] = { 6862306a36Sopenharmony_ci {0x58000, 4608, DUMP_CHIP_E2, 0x30} 6962306a36Sopenharmony_ci}; 7062306a36Sopenharmony_ci 7162306a36Sopenharmony_ci#define PAGE_MODE_VALUES_E3 2 7262306a36Sopenharmony_ci#define PAGE_READ_REGS_E3 1 7362306a36Sopenharmony_ci#define PAGE_WRITE_REGS_E3 1 7462306a36Sopenharmony_cistatic const u32 page_vals_e3[] = {0, 128}; 7562306a36Sopenharmony_cistatic const u32 page_write_regs_e3[] = {328476}; 7662306a36Sopenharmony_cistatic const struct reg_addr page_read_regs_e3[] = { 7762306a36Sopenharmony_ci {0x58000, 4608, DUMP_CHIP_E3A0 | DUMP_CHIP_E3B0, 0x30} 7862306a36Sopenharmony_ci}; 7962306a36Sopenharmony_ci 8062306a36Sopenharmony_cistatic const struct reg_addr reg_addrs[] = { 8162306a36Sopenharmony_ci { 0x2000, 1, 0x1f, 0xfff}, 8262306a36Sopenharmony_ci { 0x2004, 1, 0x1f, 0x1fff}, 8362306a36Sopenharmony_ci { 0x2008, 25, 0x1f, 0xfff}, 8462306a36Sopenharmony_ci { 0x206c, 1, 0x1f, 0x1fff}, 8562306a36Sopenharmony_ci { 0x2070, 313, 0x1f, 0xfff}, 8662306a36Sopenharmony_ci { 0x2800, 103, 0x1f, 0xfff}, 8762306a36Sopenharmony_ci { 0x3000, 287, 0x1f, 0xfff}, 8862306a36Sopenharmony_ci { 0x3800, 331, 0x1f, 0xfff}, 8962306a36Sopenharmony_ci { 0x8800, 6, 0x1f, 0x924}, 9062306a36Sopenharmony_ci { 0x8818, 1, 0x1e, 0x924}, 9162306a36Sopenharmony_ci { 0x9000, 4, 0x1c, 0x924}, 9262306a36Sopenharmony_ci { 0x9010, 7, 0x1c, 0xfff}, 9362306a36Sopenharmony_ci { 0x902c, 1, 0x1c, 0x924}, 9462306a36Sopenharmony_ci { 0x9030, 1, 0x1c, 0xfff}, 9562306a36Sopenharmony_ci { 0x9034, 13, 0x1c, 0x924}, 9662306a36Sopenharmony_ci { 0x9068, 16, 0x1c, 0xfff}, 9762306a36Sopenharmony_ci { 0x90a8, 98, 0x1c, 0x924}, 9862306a36Sopenharmony_ci { 0x9230, 2, 0x1c, 0xfff}, 9962306a36Sopenharmony_ci { 0x9238, 3, 0x1c, 0x924}, 10062306a36Sopenharmony_ci { 0x9244, 1, 0x1c, 0xfff}, 10162306a36Sopenharmony_ci { 0x9248, 1, 0x1c, 0x924}, 10262306a36Sopenharmony_ci { 0x924c, 1, 0x4, 0x924}, 10362306a36Sopenharmony_ci { 0x9250, 16, 0x1c, 0x924}, 10462306a36Sopenharmony_ci { 0x92a8, 2, 0x1c, 0x1fff}, 10562306a36Sopenharmony_ci { 0x92b4, 1, 0x1c, 0x1fff}, 10662306a36Sopenharmony_ci { 0x9400, 33, 0x1c, 0x924}, 10762306a36Sopenharmony_ci { 0x9484, 5, 0x18, 0x924}, 10862306a36Sopenharmony_ci { 0xa000, 27, 0x1f, 0x924}, 10962306a36Sopenharmony_ci { 0xa06c, 1, 0x3, 0x924}, 11062306a36Sopenharmony_ci { 0xa070, 2, 0x1f, 0x924}, 11162306a36Sopenharmony_ci { 0xa078, 1, 0x1f, 0x1fff}, 11262306a36Sopenharmony_ci { 0xa07c, 31, 0x1f, 0x924}, 11362306a36Sopenharmony_ci { 0xa0f8, 1, 0x1f, 0x1fff}, 11462306a36Sopenharmony_ci { 0xa0fc, 3, 0x1f, 0x924}, 11562306a36Sopenharmony_ci { 0xa108, 1, 0x1f, 0x1fff}, 11662306a36Sopenharmony_ci { 0xa10c, 3, 0x1f, 0x924}, 11762306a36Sopenharmony_ci { 0xa118, 1, 0x1f, 0x1fff}, 11862306a36Sopenharmony_ci { 0xa11c, 28, 0x1f, 0x924}, 11962306a36Sopenharmony_ci { 0xa18c, 4, 0x3, 0x924}, 12062306a36Sopenharmony_ci { 0xa19c, 3, 0x1f, 0x924}, 12162306a36Sopenharmony_ci { 0xa1a8, 1, 0x1f, 0x1fff}, 12262306a36Sopenharmony_ci { 0xa1ac, 3, 0x1f, 0x924}, 12362306a36Sopenharmony_ci { 0xa1b8, 1, 0x1f, 0x1fff}, 12462306a36Sopenharmony_ci { 0xa1bc, 54, 0x1f, 0x924}, 12562306a36Sopenharmony_ci { 0xa294, 2, 0x3, 0x924}, 12662306a36Sopenharmony_ci { 0xa29c, 2, 0x1f, 0x924}, 12762306a36Sopenharmony_ci { 0xa2a4, 2, 0x7, 0x924}, 12862306a36Sopenharmony_ci { 0xa2ac, 2, 0x1f, 0x924}, 12962306a36Sopenharmony_ci { 0xa2b4, 1, 0x1f, 0x1fff}, 13062306a36Sopenharmony_ci { 0xa2b8, 49, 0x1f, 0x924}, 13162306a36Sopenharmony_ci { 0xa38c, 2, 0x1f, 0x1fff}, 13262306a36Sopenharmony_ci { 0xa398, 1, 0x1f, 0x1fff}, 13362306a36Sopenharmony_ci { 0xa39c, 7, 0x1e, 0x924}, 13462306a36Sopenharmony_ci { 0xa3b8, 2, 0x18, 0x924}, 13562306a36Sopenharmony_ci { 0xa3c0, 1, 0x1e, 0x924}, 13662306a36Sopenharmony_ci { 0xa3c4, 1, 0x1e, 0xfff}, 13762306a36Sopenharmony_ci { 0xa3c8, 1, 0x1e, 0x924}, 13862306a36Sopenharmony_ci { 0xa3d0, 1, 0x1e, 0x924}, 13962306a36Sopenharmony_ci { 0xa3d8, 1, 0x1e, 0x924}, 14062306a36Sopenharmony_ci { 0xa3e0, 1, 0x1e, 0x924}, 14162306a36Sopenharmony_ci { 0xa3e8, 1, 0x1e, 0x924}, 14262306a36Sopenharmony_ci { 0xa3f0, 1, 0x1e, 0x924}, 14362306a36Sopenharmony_ci { 0xa3f8, 1, 0x1e, 0x924}, 14462306a36Sopenharmony_ci { 0xa400, 1, 0x1f, 0x924}, 14562306a36Sopenharmony_ci { 0xa404, 1, 0x1f, 0xfff}, 14662306a36Sopenharmony_ci { 0xa408, 2, 0x1f, 0x1fff}, 14762306a36Sopenharmony_ci { 0xa410, 7, 0x1f, 0x924}, 14862306a36Sopenharmony_ci { 0xa42c, 12, 0x1f, 0xfff}, 14962306a36Sopenharmony_ci { 0xa45c, 1, 0x1f, 0x924}, 15062306a36Sopenharmony_ci { 0xa460, 1, 0x1f, 0x1924}, 15162306a36Sopenharmony_ci { 0xa464, 15, 0x1f, 0x924}, 15262306a36Sopenharmony_ci { 0xa4a0, 1, 0x7, 0x924}, 15362306a36Sopenharmony_ci { 0xa4a4, 2, 0x1f, 0x924}, 15462306a36Sopenharmony_ci { 0xa4ac, 2, 0x3, 0x924}, 15562306a36Sopenharmony_ci { 0xa4b4, 1, 0x7, 0x924}, 15662306a36Sopenharmony_ci { 0xa4b8, 2, 0x3, 0x924}, 15762306a36Sopenharmony_ci { 0xa4c0, 3, 0x1f, 0x924}, 15862306a36Sopenharmony_ci { 0xa4cc, 5, 0x3, 0x924}, 15962306a36Sopenharmony_ci { 0xa4e0, 3, 0x1f, 0x924}, 16062306a36Sopenharmony_ci { 0xa4fc, 2, 0x1f, 0x924}, 16162306a36Sopenharmony_ci { 0xa504, 1, 0x3, 0x924}, 16262306a36Sopenharmony_ci { 0xa508, 3, 0x1f, 0x924}, 16362306a36Sopenharmony_ci { 0xa518, 1, 0x1f, 0x924}, 16462306a36Sopenharmony_ci { 0xa520, 1, 0x1f, 0x924}, 16562306a36Sopenharmony_ci { 0xa528, 1, 0x1f, 0x924}, 16662306a36Sopenharmony_ci { 0xa530, 1, 0x1f, 0x924}, 16762306a36Sopenharmony_ci { 0xa538, 1, 0x1f, 0x924}, 16862306a36Sopenharmony_ci { 0xa540, 1, 0x1f, 0x924}, 16962306a36Sopenharmony_ci { 0xa548, 1, 0x3, 0x924}, 17062306a36Sopenharmony_ci { 0xa550, 1, 0x3, 0x924}, 17162306a36Sopenharmony_ci { 0xa558, 1, 0x3, 0x924}, 17262306a36Sopenharmony_ci { 0xa560, 1, 0x3, 0x924}, 17362306a36Sopenharmony_ci { 0xa568, 1, 0x3, 0x924}, 17462306a36Sopenharmony_ci { 0xa570, 1, 0x1f, 0x924}, 17562306a36Sopenharmony_ci { 0xa580, 1, 0x1f, 0x1fff}, 17662306a36Sopenharmony_ci { 0xa590, 1, 0x1f, 0x1fff}, 17762306a36Sopenharmony_ci { 0xa5a0, 1, 0x7, 0x924}, 17862306a36Sopenharmony_ci { 0xa5c0, 1, 0x1f, 0x924}, 17962306a36Sopenharmony_ci { 0xa5e0, 1, 0x1e, 0x924}, 18062306a36Sopenharmony_ci { 0xa5e8, 1, 0x1e, 0x924}, 18162306a36Sopenharmony_ci { 0xa5f0, 1, 0x1e, 0x924}, 18262306a36Sopenharmony_ci { 0xa5f8, 1, 0x6, 0x924}, 18362306a36Sopenharmony_ci { 0xa5fc, 1, 0x1e, 0x924}, 18462306a36Sopenharmony_ci { 0xa600, 5, 0x1e, 0xfff}, 18562306a36Sopenharmony_ci { 0xa614, 1, 0x1e, 0x924}, 18662306a36Sopenharmony_ci { 0xa618, 1, 0x1e, 0xfff}, 18762306a36Sopenharmony_ci { 0xa61c, 1, 0x1e, 0x924}, 18862306a36Sopenharmony_ci { 0xa620, 6, 0x1c, 0x924}, 18962306a36Sopenharmony_ci { 0xa638, 20, 0x4, 0x924}, 19062306a36Sopenharmony_ci { 0xa688, 35, 0x1c, 0x924}, 19162306a36Sopenharmony_ci { 0xa714, 1, 0x1c, 0xfff}, 19262306a36Sopenharmony_ci { 0xa718, 2, 0x1c, 0x924}, 19362306a36Sopenharmony_ci { 0xa720, 1, 0x1c, 0xfff}, 19462306a36Sopenharmony_ci { 0xa724, 3, 0x1c, 0x924}, 19562306a36Sopenharmony_ci { 0xa730, 1, 0x4, 0x924}, 19662306a36Sopenharmony_ci { 0xa734, 2, 0x1c, 0x924}, 19762306a36Sopenharmony_ci { 0xa73c, 4, 0x4, 0x924}, 19862306a36Sopenharmony_ci { 0xa74c, 1, 0x1c, 0x924}, 19962306a36Sopenharmony_ci { 0xa750, 1, 0x1c, 0xfff}, 20062306a36Sopenharmony_ci { 0xa754, 3, 0x1c, 0x924}, 20162306a36Sopenharmony_ci { 0xa760, 5, 0x4, 0x924}, 20262306a36Sopenharmony_ci { 0xa774, 7, 0x1c, 0x924}, 20362306a36Sopenharmony_ci { 0xa790, 15, 0x4, 0x924}, 20462306a36Sopenharmony_ci { 0xa7cc, 4, 0x1c, 0x924}, 20562306a36Sopenharmony_ci { 0xa7e0, 6, 0x18, 0x924}, 20662306a36Sopenharmony_ci { 0xa800, 18, 0x4, 0x924}, 20762306a36Sopenharmony_ci { 0xa848, 33, 0x1c, 0x924}, 20862306a36Sopenharmony_ci { 0xa8cc, 2, 0x18, 0x924}, 20962306a36Sopenharmony_ci { 0xa8d4, 4, 0x1c, 0x924}, 21062306a36Sopenharmony_ci { 0xa8e4, 1, 0x18, 0x924}, 21162306a36Sopenharmony_ci { 0xa8e8, 1, 0x1c, 0x924}, 21262306a36Sopenharmony_ci { 0xa8f0, 1, 0x1c, 0x924}, 21362306a36Sopenharmony_ci { 0xa8f8, 30, 0x18, 0x924}, 21462306a36Sopenharmony_ci { 0xa974, 73, 0x18, 0x924}, 21562306a36Sopenharmony_ci { 0xac30, 1, 0x18, 0x924}, 21662306a36Sopenharmony_ci { 0xac40, 1, 0x18, 0x924}, 21762306a36Sopenharmony_ci { 0xac50, 1, 0x18, 0x924}, 21862306a36Sopenharmony_ci { 0xac60, 1, 0x10, 0x924}, 21962306a36Sopenharmony_ci { 0x10000, 9, 0x1f, 0x924}, 22062306a36Sopenharmony_ci { 0x10024, 1, 0x7, 0x924}, 22162306a36Sopenharmony_ci { 0x10028, 5, 0x1f, 0x924}, 22262306a36Sopenharmony_ci { 0x1003c, 6, 0x7, 0x924}, 22362306a36Sopenharmony_ci { 0x10054, 20, 0x1f, 0x924}, 22462306a36Sopenharmony_ci { 0x100a4, 4, 0x7, 0x924}, 22562306a36Sopenharmony_ci { 0x100b4, 11, 0x1f, 0x924}, 22662306a36Sopenharmony_ci { 0x100e0, 4, 0x7, 0x924}, 22762306a36Sopenharmony_ci { 0x100f0, 8, 0x1f, 0x924}, 22862306a36Sopenharmony_ci { 0x10110, 6, 0x7, 0x924}, 22962306a36Sopenharmony_ci { 0x10128, 110, 0x1f, 0x924}, 23062306a36Sopenharmony_ci { 0x102e0, 4, 0x7, 0x924}, 23162306a36Sopenharmony_ci { 0x102f0, 18, 0x1f, 0x924}, 23262306a36Sopenharmony_ci { 0x10338, 20, 0x7, 0x924}, 23362306a36Sopenharmony_ci { 0x10388, 10, 0x1f, 0x924}, 23462306a36Sopenharmony_ci { 0x103d0, 2, 0x3, 0x1fff}, 23562306a36Sopenharmony_ci { 0x103dc, 1, 0x3, 0x1fff}, 23662306a36Sopenharmony_ci { 0x10400, 6, 0x7, 0x924}, 23762306a36Sopenharmony_ci { 0x10418, 1, 0x1f, 0xfff}, 23862306a36Sopenharmony_ci { 0x1041c, 1, 0x1f, 0x924}, 23962306a36Sopenharmony_ci { 0x10420, 1, 0x1f, 0xfff}, 24062306a36Sopenharmony_ci { 0x10424, 1, 0x1f, 0x924}, 24162306a36Sopenharmony_ci { 0x10428, 1, 0x1f, 0xfff}, 24262306a36Sopenharmony_ci { 0x1042c, 1, 0x1f, 0x924}, 24362306a36Sopenharmony_ci { 0x10430, 10, 0x7, 0x924}, 24462306a36Sopenharmony_ci { 0x10458, 2, 0x1f, 0x924}, 24562306a36Sopenharmony_ci { 0x10460, 1, 0x1f, 0xfff}, 24662306a36Sopenharmony_ci { 0x10464, 4, 0x1f, 0x924}, 24762306a36Sopenharmony_ci { 0x10474, 1, 0x1f, 0xfff}, 24862306a36Sopenharmony_ci { 0x10478, 14, 0x1f, 0x924}, 24962306a36Sopenharmony_ci { 0x104b0, 12, 0x7, 0x924}, 25062306a36Sopenharmony_ci { 0x104e0, 1, 0x1f, 0xfff}, 25162306a36Sopenharmony_ci { 0x104e8, 1, 0x1f, 0x924}, 25262306a36Sopenharmony_ci { 0x104ec, 1, 0x1f, 0xfff}, 25362306a36Sopenharmony_ci { 0x104f4, 1, 0x1f, 0x924}, 25462306a36Sopenharmony_ci { 0x104f8, 1, 0x1f, 0xfff}, 25562306a36Sopenharmony_ci { 0x10500, 2, 0x1f, 0x924}, 25662306a36Sopenharmony_ci { 0x10508, 1, 0x1f, 0xfff}, 25762306a36Sopenharmony_ci { 0x1050c, 9, 0x1f, 0x924}, 25862306a36Sopenharmony_ci { 0x10530, 1, 0x1f, 0xfff}, 25962306a36Sopenharmony_ci { 0x10534, 1, 0x1f, 0x924}, 26062306a36Sopenharmony_ci { 0x10538, 1, 0x1f, 0xfff}, 26162306a36Sopenharmony_ci { 0x1053c, 3, 0x1f, 0x924}, 26262306a36Sopenharmony_ci { 0x10548, 1, 0x1f, 0xfff}, 26362306a36Sopenharmony_ci { 0x1054c, 3, 0x1f, 0x924}, 26462306a36Sopenharmony_ci { 0x10558, 1, 0x1f, 0xfff}, 26562306a36Sopenharmony_ci { 0x1055c, 123, 0x1f, 0x924}, 26662306a36Sopenharmony_ci { 0x10750, 2, 0x7, 0x924}, 26762306a36Sopenharmony_ci { 0x10760, 2, 0x7, 0x924}, 26862306a36Sopenharmony_ci { 0x10770, 2, 0x7, 0x924}, 26962306a36Sopenharmony_ci { 0x10780, 2, 0x7, 0x924}, 27062306a36Sopenharmony_ci { 0x10790, 2, 0x1f, 0x924}, 27162306a36Sopenharmony_ci { 0x107a0, 2, 0x7, 0x924}, 27262306a36Sopenharmony_ci { 0x107b0, 2, 0x7, 0x924}, 27362306a36Sopenharmony_ci { 0x107c0, 2, 0x7, 0x924}, 27462306a36Sopenharmony_ci { 0x107d0, 2, 0x7, 0x924}, 27562306a36Sopenharmony_ci { 0x107e0, 2, 0x1f, 0x924}, 27662306a36Sopenharmony_ci { 0x10880, 2, 0x1f, 0x924}, 27762306a36Sopenharmony_ci { 0x10900, 2, 0x1f, 0x924}, 27862306a36Sopenharmony_ci { 0x16000, 1, 0x6, 0x924}, 27962306a36Sopenharmony_ci { 0x16004, 25, 0x1e, 0x924}, 28062306a36Sopenharmony_ci { 0x16070, 8, 0x1e, 0x924}, 28162306a36Sopenharmony_ci { 0x16090, 4, 0xe, 0x924}, 28262306a36Sopenharmony_ci { 0x160a0, 6, 0x1e, 0x924}, 28362306a36Sopenharmony_ci { 0x160c0, 7, 0x1e, 0x924}, 28462306a36Sopenharmony_ci { 0x160dc, 2, 0x6, 0x924}, 28562306a36Sopenharmony_ci { 0x160e4, 6, 0x1e, 0x924}, 28662306a36Sopenharmony_ci { 0x160fc, 4, 0x1e, 0x1fff}, 28762306a36Sopenharmony_ci { 0x1610c, 2, 0x6, 0x924}, 28862306a36Sopenharmony_ci { 0x16114, 6, 0x1e, 0x924}, 28962306a36Sopenharmony_ci { 0x16140, 48, 0x1e, 0x1fff}, 29062306a36Sopenharmony_ci { 0x16204, 5, 0x1e, 0x924}, 29162306a36Sopenharmony_ci { 0x18000, 1, 0x1e, 0x924}, 29262306a36Sopenharmony_ci { 0x18008, 1, 0x1e, 0x924}, 29362306a36Sopenharmony_ci { 0x18010, 35, 0x1c, 0x924}, 29462306a36Sopenharmony_ci { 0x180a4, 2, 0x1c, 0x924}, 29562306a36Sopenharmony_ci { 0x180c0, 9, 0x1c, 0x924}, 29662306a36Sopenharmony_ci { 0x180e4, 1, 0xc, 0x924}, 29762306a36Sopenharmony_ci { 0x180e8, 2, 0x1c, 0x924}, 29862306a36Sopenharmony_ci { 0x180f0, 1, 0xc, 0x924}, 29962306a36Sopenharmony_ci { 0x180f4, 79, 0x1c, 0x924}, 30062306a36Sopenharmony_ci { 0x18230, 1, 0xc, 0x924}, 30162306a36Sopenharmony_ci { 0x18234, 2, 0x1c, 0x924}, 30262306a36Sopenharmony_ci { 0x1823c, 1, 0xc, 0x924}, 30362306a36Sopenharmony_ci { 0x18240, 13, 0x1c, 0x924}, 30462306a36Sopenharmony_ci { 0x18274, 1, 0x4, 0x924}, 30562306a36Sopenharmony_ci { 0x18278, 12, 0x1c, 0x924}, 30662306a36Sopenharmony_ci { 0x182a8, 1, 0x1c, 0xfff}, 30762306a36Sopenharmony_ci { 0x182ac, 3, 0x1c, 0x924}, 30862306a36Sopenharmony_ci { 0x182b8, 1, 0x1c, 0xfff}, 30962306a36Sopenharmony_ci { 0x182bc, 19, 0x1c, 0x924}, 31062306a36Sopenharmony_ci { 0x18308, 1, 0x1c, 0xfff}, 31162306a36Sopenharmony_ci { 0x1830c, 3, 0x1c, 0x924}, 31262306a36Sopenharmony_ci { 0x18318, 1, 0x1c, 0xfff}, 31362306a36Sopenharmony_ci { 0x1831c, 7, 0x1c, 0x924}, 31462306a36Sopenharmony_ci { 0x18338, 1, 0x1c, 0xfff}, 31562306a36Sopenharmony_ci { 0x1833c, 3, 0x1c, 0x924}, 31662306a36Sopenharmony_ci { 0x18348, 1, 0x1c, 0xfff}, 31762306a36Sopenharmony_ci { 0x1834c, 28, 0x1c, 0x924}, 31862306a36Sopenharmony_ci { 0x183bc, 2, 0x1c, 0x1fff}, 31962306a36Sopenharmony_ci { 0x183c8, 3, 0x1c, 0x1fff}, 32062306a36Sopenharmony_ci { 0x183d8, 1, 0x1c, 0x1fff}, 32162306a36Sopenharmony_ci { 0x18440, 48, 0x1c, 0x1fff}, 32262306a36Sopenharmony_ci { 0x18500, 15, 0x1c, 0x924}, 32362306a36Sopenharmony_ci { 0x18570, 1, 0x18, 0xfff}, 32462306a36Sopenharmony_ci { 0x18574, 1, 0x18, 0x924}, 32562306a36Sopenharmony_ci { 0x18578, 1, 0x18, 0xfff}, 32662306a36Sopenharmony_ci { 0x1857c, 4, 0x18, 0x924}, 32762306a36Sopenharmony_ci { 0x1858c, 1, 0x18, 0xfff}, 32862306a36Sopenharmony_ci { 0x18590, 1, 0x18, 0x924}, 32962306a36Sopenharmony_ci { 0x18594, 1, 0x18, 0xfff}, 33062306a36Sopenharmony_ci { 0x18598, 32, 0x18, 0x924}, 33162306a36Sopenharmony_ci { 0x18618, 5, 0x10, 0x924}, 33262306a36Sopenharmony_ci { 0x1862c, 4, 0x10, 0xfff}, 33362306a36Sopenharmony_ci { 0x1863c, 16, 0x10, 0x924}, 33462306a36Sopenharmony_ci { 0x18680, 44, 0x10, 0x924}, 33562306a36Sopenharmony_ci { 0x18748, 12, 0x10, 0x924}, 33662306a36Sopenharmony_ci { 0x18788, 1, 0x10, 0x924}, 33762306a36Sopenharmony_ci { 0x1879c, 6, 0x10, 0x924}, 33862306a36Sopenharmony_ci { 0x187c4, 51, 0x10, 0x924}, 33962306a36Sopenharmony_ci { 0x18a00, 48, 0x10, 0x924}, 34062306a36Sopenharmony_ci { 0x20000, 24, 0x1f, 0x924}, 34162306a36Sopenharmony_ci { 0x20060, 8, 0x1f, 0x9e4}, 34262306a36Sopenharmony_ci { 0x20080, 94, 0x1f, 0x924}, 34362306a36Sopenharmony_ci { 0x201f8, 1, 0x3, 0x924}, 34462306a36Sopenharmony_ci { 0x201fc, 1, 0x1f, 0x924}, 34562306a36Sopenharmony_ci { 0x20200, 1, 0x3, 0x924}, 34662306a36Sopenharmony_ci { 0x20204, 1, 0x1f, 0x924}, 34762306a36Sopenharmony_ci { 0x20208, 1, 0x3, 0x924}, 34862306a36Sopenharmony_ci { 0x2020c, 4, 0x1f, 0x924}, 34962306a36Sopenharmony_ci { 0x2021c, 11, 0x1f, 0xfff}, 35062306a36Sopenharmony_ci { 0x20248, 24, 0x1f, 0x924}, 35162306a36Sopenharmony_ci { 0x202b8, 2, 0x1f, 0x1fff}, 35262306a36Sopenharmony_ci { 0x202c4, 1, 0x1f, 0x1fff}, 35362306a36Sopenharmony_ci { 0x202c8, 1, 0x1c, 0x924}, 35462306a36Sopenharmony_ci { 0x202d8, 4, 0x1c, 0x924}, 35562306a36Sopenharmony_ci { 0x202f0, 1, 0x10, 0x924}, 35662306a36Sopenharmony_ci { 0x20400, 1, 0x1f, 0x924}, 35762306a36Sopenharmony_ci { 0x20404, 1, 0x1f, 0xfff}, 35862306a36Sopenharmony_ci { 0x2040c, 2, 0x1f, 0xfff}, 35962306a36Sopenharmony_ci { 0x20414, 2, 0x1f, 0x924}, 36062306a36Sopenharmony_ci { 0x2041c, 2, 0x1f, 0xfff}, 36162306a36Sopenharmony_ci { 0x20424, 2, 0x1f, 0x924}, 36262306a36Sopenharmony_ci { 0x2042c, 18, 0x1e, 0x924}, 36362306a36Sopenharmony_ci { 0x20480, 1, 0x1f, 0x924}, 36462306a36Sopenharmony_ci { 0x20500, 1, 0x1f, 0x924}, 36562306a36Sopenharmony_ci { 0x20600, 1, 0x1f, 0x924}, 36662306a36Sopenharmony_ci { 0x28000, 1, 0x1f, 0x9e4}, 36762306a36Sopenharmony_ci { 0x28004, 255, 0x1f, 0x180}, 36862306a36Sopenharmony_ci { 0x28400, 1, 0x1f, 0x1c0}, 36962306a36Sopenharmony_ci { 0x28404, 255, 0x1f, 0x180}, 37062306a36Sopenharmony_ci { 0x28800, 1, 0x1f, 0x1c0}, 37162306a36Sopenharmony_ci { 0x28804, 255, 0x1f, 0x180}, 37262306a36Sopenharmony_ci { 0x28c00, 1, 0x1f, 0x1c0}, 37362306a36Sopenharmony_ci { 0x28c04, 255, 0x1f, 0x180}, 37462306a36Sopenharmony_ci { 0x29000, 1, 0x1f, 0x1c0}, 37562306a36Sopenharmony_ci { 0x29004, 255, 0x1f, 0x180}, 37662306a36Sopenharmony_ci { 0x29400, 1, 0x1f, 0x1c0}, 37762306a36Sopenharmony_ci { 0x29404, 255, 0x1f, 0x180}, 37862306a36Sopenharmony_ci { 0x29800, 1, 0x1f, 0x1c0}, 37962306a36Sopenharmony_ci { 0x29804, 255, 0x1f, 0x180}, 38062306a36Sopenharmony_ci { 0x29c00, 1, 0x1f, 0x1c0}, 38162306a36Sopenharmony_ci { 0x29c04, 255, 0x1f, 0x180}, 38262306a36Sopenharmony_ci { 0x2a000, 1, 0x1f, 0x1c0}, 38362306a36Sopenharmony_ci { 0x2a004, 255, 0x1f, 0x180}, 38462306a36Sopenharmony_ci { 0x2a400, 1, 0x1f, 0x1c0}, 38562306a36Sopenharmony_ci { 0x2a404, 255, 0x1f, 0x180}, 38662306a36Sopenharmony_ci { 0x2a800, 1, 0x1f, 0x1c0}, 38762306a36Sopenharmony_ci { 0x2a804, 255, 0x1f, 0x180}, 38862306a36Sopenharmony_ci { 0x2ac00, 1, 0x1f, 0x1c0}, 38962306a36Sopenharmony_ci { 0x2ac04, 255, 0x1f, 0x180}, 39062306a36Sopenharmony_ci { 0x2b000, 1, 0x1f, 0x1c0}, 39162306a36Sopenharmony_ci { 0x2b004, 255, 0x1f, 0x180}, 39262306a36Sopenharmony_ci { 0x2b400, 1, 0x1f, 0x1c0}, 39362306a36Sopenharmony_ci { 0x2b404, 255, 0x1f, 0x180}, 39462306a36Sopenharmony_ci { 0x2b800, 1, 0x1f, 0x1c0}, 39562306a36Sopenharmony_ci { 0x2b804, 255, 0x1f, 0x180}, 39662306a36Sopenharmony_ci { 0x2bc00, 1, 0x1f, 0x1c0}, 39762306a36Sopenharmony_ci { 0x2bc04, 255, 0x1f, 0x180}, 39862306a36Sopenharmony_ci { 0x2c000, 1, 0x1f, 0x1c0}, 39962306a36Sopenharmony_ci { 0x2c004, 255, 0x1f, 0x180}, 40062306a36Sopenharmony_ci { 0x2c400, 1, 0x1f, 0x1c0}, 40162306a36Sopenharmony_ci { 0x2c404, 255, 0x1f, 0x180}, 40262306a36Sopenharmony_ci { 0x2c800, 1, 0x1f, 0x1c0}, 40362306a36Sopenharmony_ci { 0x2c804, 255, 0x1f, 0x180}, 40462306a36Sopenharmony_ci { 0x2cc00, 1, 0x1f, 0x1c0}, 40562306a36Sopenharmony_ci { 0x2cc04, 255, 0x1f, 0x180}, 40662306a36Sopenharmony_ci { 0x2d000, 1, 0x1f, 0x1c0}, 40762306a36Sopenharmony_ci { 0x2d004, 255, 0x1f, 0x180}, 40862306a36Sopenharmony_ci { 0x2d400, 1, 0x1f, 0x1c0}, 40962306a36Sopenharmony_ci { 0x2d404, 255, 0x1f, 0x180}, 41062306a36Sopenharmony_ci { 0x2d800, 1, 0x1f, 0x1c0}, 41162306a36Sopenharmony_ci { 0x2d804, 255, 0x1f, 0x180}, 41262306a36Sopenharmony_ci { 0x2dc00, 1, 0x1f, 0x1c0}, 41362306a36Sopenharmony_ci { 0x2dc04, 255, 0x1f, 0x180}, 41462306a36Sopenharmony_ci { 0x2e000, 1, 0x1f, 0x1c0}, 41562306a36Sopenharmony_ci { 0x2e004, 255, 0x1f, 0x180}, 41662306a36Sopenharmony_ci { 0x2e400, 1, 0x1f, 0x1c0}, 41762306a36Sopenharmony_ci { 0x2e404, 255, 0x1f, 0x180}, 41862306a36Sopenharmony_ci { 0x2e800, 1, 0x1f, 0x1c0}, 41962306a36Sopenharmony_ci { 0x2e804, 255, 0x1f, 0x180}, 42062306a36Sopenharmony_ci { 0x2ec00, 1, 0x1f, 0x1c0}, 42162306a36Sopenharmony_ci { 0x2ec04, 255, 0x1f, 0x180}, 42262306a36Sopenharmony_ci { 0x2f000, 1, 0x1f, 0x1c0}, 42362306a36Sopenharmony_ci { 0x2f004, 255, 0x1f, 0x180}, 42462306a36Sopenharmony_ci { 0x2f400, 1, 0x1f, 0x1c0}, 42562306a36Sopenharmony_ci { 0x2f404, 255, 0x1f, 0x180}, 42662306a36Sopenharmony_ci { 0x2f800, 1, 0x1f, 0x1c0}, 42762306a36Sopenharmony_ci { 0x2f804, 255, 0x1f, 0x180}, 42862306a36Sopenharmony_ci { 0x2fc00, 1, 0x1f, 0x1c0}, 42962306a36Sopenharmony_ci { 0x2fc04, 255, 0x1f, 0x180}, 43062306a36Sopenharmony_ci { 0x30000, 1, 0x1f, 0x9e4}, 43162306a36Sopenharmony_ci { 0x30004, 255, 0x1f, 0x180}, 43262306a36Sopenharmony_ci { 0x30400, 1, 0x1f, 0x1c0}, 43362306a36Sopenharmony_ci { 0x30404, 255, 0x1f, 0x180}, 43462306a36Sopenharmony_ci { 0x30800, 1, 0x1f, 0x1c0}, 43562306a36Sopenharmony_ci { 0x30804, 255, 0x1f, 0x180}, 43662306a36Sopenharmony_ci { 0x30c00, 1, 0x1f, 0x1c0}, 43762306a36Sopenharmony_ci { 0x30c04, 255, 0x1f, 0x180}, 43862306a36Sopenharmony_ci { 0x31000, 1, 0x1f, 0x1c0}, 43962306a36Sopenharmony_ci { 0x31004, 255, 0x1f, 0x180}, 44062306a36Sopenharmony_ci { 0x31400, 1, 0x1f, 0x1c0}, 44162306a36Sopenharmony_ci { 0x31404, 255, 0x1f, 0x180}, 44262306a36Sopenharmony_ci { 0x31800, 1, 0x1f, 0x1c0}, 44362306a36Sopenharmony_ci { 0x31804, 255, 0x1f, 0x180}, 44462306a36Sopenharmony_ci { 0x31c00, 1, 0x1f, 0x1c0}, 44562306a36Sopenharmony_ci { 0x31c04, 255, 0x1f, 0x180}, 44662306a36Sopenharmony_ci { 0x32000, 1, 0x1f, 0x1c0}, 44762306a36Sopenharmony_ci { 0x32004, 255, 0x1f, 0x180}, 44862306a36Sopenharmony_ci { 0x32400, 1, 0x1f, 0x1c0}, 44962306a36Sopenharmony_ci { 0x32404, 255, 0x1f, 0x180}, 45062306a36Sopenharmony_ci { 0x32800, 1, 0x1f, 0x1c0}, 45162306a36Sopenharmony_ci { 0x32804, 255, 0x1f, 0x180}, 45262306a36Sopenharmony_ci { 0x32c00, 1, 0x1f, 0x1c0}, 45362306a36Sopenharmony_ci { 0x32c04, 255, 0x1f, 0x180}, 45462306a36Sopenharmony_ci { 0x33000, 1, 0x1f, 0x1c0}, 45562306a36Sopenharmony_ci { 0x33004, 255, 0x1f, 0x180}, 45662306a36Sopenharmony_ci { 0x33400, 1, 0x1f, 0x1c0}, 45762306a36Sopenharmony_ci { 0x33404, 255, 0x1f, 0x180}, 45862306a36Sopenharmony_ci { 0x33800, 1, 0x1f, 0x1c0}, 45962306a36Sopenharmony_ci { 0x33804, 255, 0x1f, 0x180}, 46062306a36Sopenharmony_ci { 0x33c00, 1, 0x1f, 0x1c0}, 46162306a36Sopenharmony_ci { 0x33c04, 255, 0x1f, 0x180}, 46262306a36Sopenharmony_ci { 0x34000, 1, 0x1f, 0x1c0}, 46362306a36Sopenharmony_ci { 0x34004, 255, 0x1f, 0x180}, 46462306a36Sopenharmony_ci { 0x34400, 1, 0x1f, 0x1c0}, 46562306a36Sopenharmony_ci { 0x34404, 255, 0x1f, 0x180}, 46662306a36Sopenharmony_ci { 0x34800, 1, 0x1f, 0x1c0}, 46762306a36Sopenharmony_ci { 0x34804, 255, 0x1f, 0x180}, 46862306a36Sopenharmony_ci { 0x34c00, 1, 0x1f, 0x1c0}, 46962306a36Sopenharmony_ci { 0x34c04, 255, 0x1f, 0x180}, 47062306a36Sopenharmony_ci { 0x35000, 1, 0x1f, 0x1c0}, 47162306a36Sopenharmony_ci { 0x35004, 255, 0x1f, 0x180}, 47262306a36Sopenharmony_ci { 0x35400, 1, 0x1f, 0x1c0}, 47362306a36Sopenharmony_ci { 0x35404, 255, 0x1f, 0x180}, 47462306a36Sopenharmony_ci { 0x35800, 1, 0x1f, 0x1c0}, 47562306a36Sopenharmony_ci { 0x35804, 255, 0x1f, 0x180}, 47662306a36Sopenharmony_ci { 0x35c00, 1, 0x1f, 0x1c0}, 47762306a36Sopenharmony_ci { 0x35c04, 255, 0x1f, 0x180}, 47862306a36Sopenharmony_ci { 0x36000, 1, 0x1f, 0x1c0}, 47962306a36Sopenharmony_ci { 0x36004, 255, 0x1f, 0x180}, 48062306a36Sopenharmony_ci { 0x36400, 1, 0x1f, 0x1c0}, 48162306a36Sopenharmony_ci { 0x36404, 255, 0x1f, 0x180}, 48262306a36Sopenharmony_ci { 0x36800, 1, 0x1f, 0x1c0}, 48362306a36Sopenharmony_ci { 0x36804, 255, 0x1f, 0x180}, 48462306a36Sopenharmony_ci { 0x36c00, 1, 0x1f, 0x1c0}, 48562306a36Sopenharmony_ci { 0x36c04, 255, 0x1f, 0x180}, 48662306a36Sopenharmony_ci { 0x37000, 1, 0x1f, 0x1c0}, 48762306a36Sopenharmony_ci { 0x37004, 255, 0x1f, 0x180}, 48862306a36Sopenharmony_ci { 0x37400, 1, 0x1f, 0x1c0}, 48962306a36Sopenharmony_ci { 0x37404, 255, 0x1f, 0x180}, 49062306a36Sopenharmony_ci { 0x37800, 1, 0x1f, 0x1c0}, 49162306a36Sopenharmony_ci { 0x37804, 255, 0x1f, 0x180}, 49262306a36Sopenharmony_ci { 0x37c00, 1, 0x1f, 0x1c0}, 49362306a36Sopenharmony_ci { 0x37c04, 255, 0x1f, 0x180}, 49462306a36Sopenharmony_ci { 0x38000, 1, 0x1f, 0x1c0}, 49562306a36Sopenharmony_ci { 0x38004, 255, 0x1f, 0x180}, 49662306a36Sopenharmony_ci { 0x38400, 1, 0x1f, 0x1c0}, 49762306a36Sopenharmony_ci { 0x38404, 255, 0x1f, 0x180}, 49862306a36Sopenharmony_ci { 0x38800, 1, 0x1f, 0x1c0}, 49962306a36Sopenharmony_ci { 0x38804, 255, 0x1f, 0x180}, 50062306a36Sopenharmony_ci { 0x38c00, 1, 0x1f, 0x1c0}, 50162306a36Sopenharmony_ci { 0x38c04, 255, 0x1f, 0x180}, 50262306a36Sopenharmony_ci { 0x39000, 1, 0x1f, 0x1c0}, 50362306a36Sopenharmony_ci { 0x39004, 255, 0x1f, 0x180}, 50462306a36Sopenharmony_ci { 0x39400, 1, 0x1f, 0x1c0}, 50562306a36Sopenharmony_ci { 0x39404, 255, 0x1f, 0x180}, 50662306a36Sopenharmony_ci { 0x39800, 1, 0x1f, 0x1c0}, 50762306a36Sopenharmony_ci { 0x39804, 255, 0x1f, 0x180}, 50862306a36Sopenharmony_ci { 0x39c00, 1, 0x1f, 0x1c0}, 50962306a36Sopenharmony_ci { 0x39c04, 255, 0x1f, 0x180}, 51062306a36Sopenharmony_ci { 0x3a000, 1, 0x1f, 0x1c0}, 51162306a36Sopenharmony_ci { 0x3a004, 255, 0x1f, 0x180}, 51262306a36Sopenharmony_ci { 0x3a400, 1, 0x1f, 0x1c0}, 51362306a36Sopenharmony_ci { 0x3a404, 255, 0x1f, 0x180}, 51462306a36Sopenharmony_ci { 0x3a800, 1, 0x1f, 0x1c0}, 51562306a36Sopenharmony_ci { 0x3a804, 255, 0x1f, 0x180}, 51662306a36Sopenharmony_ci { 0x3ac00, 1, 0x1f, 0x1c0}, 51762306a36Sopenharmony_ci { 0x3ac04, 255, 0x1f, 0x180}, 51862306a36Sopenharmony_ci { 0x3b000, 1, 0x1f, 0x1c0}, 51962306a36Sopenharmony_ci { 0x3b004, 255, 0x1f, 0x180}, 52062306a36Sopenharmony_ci { 0x3b400, 1, 0x1f, 0x1c0}, 52162306a36Sopenharmony_ci { 0x3b404, 255, 0x1f, 0x180}, 52262306a36Sopenharmony_ci { 0x3b800, 1, 0x1f, 0x1c0}, 52362306a36Sopenharmony_ci { 0x3b804, 255, 0x1f, 0x180}, 52462306a36Sopenharmony_ci { 0x3bc00, 1, 0x1f, 0x1c0}, 52562306a36Sopenharmony_ci { 0x3bc04, 255, 0x1f, 0x180}, 52662306a36Sopenharmony_ci { 0x3c000, 1, 0x1f, 0x1c0}, 52762306a36Sopenharmony_ci { 0x3c004, 255, 0x1f, 0x180}, 52862306a36Sopenharmony_ci { 0x3c400, 1, 0x1f, 0x1c0}, 52962306a36Sopenharmony_ci { 0x3c404, 255, 0x1f, 0x180}, 53062306a36Sopenharmony_ci { 0x3c800, 1, 0x1f, 0x1c0}, 53162306a36Sopenharmony_ci { 0x3c804, 255, 0x1f, 0x180}, 53262306a36Sopenharmony_ci { 0x3cc00, 1, 0x1f, 0x1c0}, 53362306a36Sopenharmony_ci { 0x3cc04, 255, 0x1f, 0x180}, 53462306a36Sopenharmony_ci { 0x3d000, 1, 0x1f, 0x1c0}, 53562306a36Sopenharmony_ci { 0x3d004, 255, 0x1f, 0x180}, 53662306a36Sopenharmony_ci { 0x3d400, 1, 0x1f, 0x1c0}, 53762306a36Sopenharmony_ci { 0x3d404, 255, 0x1f, 0x180}, 53862306a36Sopenharmony_ci { 0x3d800, 1, 0x1f, 0x1c0}, 53962306a36Sopenharmony_ci { 0x3d804, 255, 0x1f, 0x180}, 54062306a36Sopenharmony_ci { 0x3dc00, 1, 0x1f, 0x1c0}, 54162306a36Sopenharmony_ci { 0x3dc04, 255, 0x1f, 0x180}, 54262306a36Sopenharmony_ci { 0x3e000, 1, 0x1f, 0x1c0}, 54362306a36Sopenharmony_ci { 0x3e004, 255, 0x1f, 0x180}, 54462306a36Sopenharmony_ci { 0x3e400, 1, 0x1f, 0x1c0}, 54562306a36Sopenharmony_ci { 0x3e404, 255, 0x1f, 0x180}, 54662306a36Sopenharmony_ci { 0x3e800, 1, 0x1f, 0x1c0}, 54762306a36Sopenharmony_ci { 0x3e804, 255, 0x1f, 0x180}, 54862306a36Sopenharmony_ci { 0x3ec00, 1, 0x1f, 0x1c0}, 54962306a36Sopenharmony_ci { 0x3ec04, 255, 0x1f, 0x180}, 55062306a36Sopenharmony_ci { 0x3f000, 1, 0x1f, 0x1c0}, 55162306a36Sopenharmony_ci { 0x3f004, 255, 0x1f, 0x180}, 55262306a36Sopenharmony_ci { 0x3f400, 1, 0x1f, 0x1c0}, 55362306a36Sopenharmony_ci { 0x3f404, 255, 0x1f, 0x180}, 55462306a36Sopenharmony_ci { 0x3f800, 1, 0x1f, 0x1c0}, 55562306a36Sopenharmony_ci { 0x3f804, 255, 0x1f, 0x180}, 55662306a36Sopenharmony_ci { 0x3fc00, 1, 0x1f, 0x1c0}, 55762306a36Sopenharmony_ci { 0x3fc04, 255, 0x1f, 0x180}, 55862306a36Sopenharmony_ci { 0x40000, 85, 0x1f, 0x924}, 55962306a36Sopenharmony_ci { 0x40154, 13, 0x1f, 0xfff}, 56062306a36Sopenharmony_ci { 0x40198, 2, 0x1f, 0x1fff}, 56162306a36Sopenharmony_ci { 0x401a4, 1, 0x1f, 0x1fff}, 56262306a36Sopenharmony_ci { 0x401a8, 8, 0x1e, 0x924}, 56362306a36Sopenharmony_ci { 0x401c8, 1, 0x2, 0x924}, 56462306a36Sopenharmony_ci { 0x401cc, 2, 0x1e, 0x924}, 56562306a36Sopenharmony_ci { 0x401d4, 2, 0x1c, 0x924}, 56662306a36Sopenharmony_ci { 0x40200, 4, 0x1f, 0x924}, 56762306a36Sopenharmony_ci { 0x40220, 6, 0x1c, 0x924}, 56862306a36Sopenharmony_ci { 0x40238, 8, 0xc, 0x924}, 56962306a36Sopenharmony_ci { 0x40258, 4, 0x1c, 0x924}, 57062306a36Sopenharmony_ci { 0x40268, 2, 0x18, 0x924}, 57162306a36Sopenharmony_ci { 0x40270, 17, 0x10, 0x924}, 57262306a36Sopenharmony_ci { 0x40400, 43, 0x1f, 0x924}, 57362306a36Sopenharmony_ci { 0x404bc, 2, 0x1f, 0x1fff}, 57462306a36Sopenharmony_ci { 0x404c8, 1, 0x1f, 0x1fff}, 57562306a36Sopenharmony_ci { 0x404cc, 3, 0x1e, 0x924}, 57662306a36Sopenharmony_ci { 0x404e0, 1, 0x1c, 0x924}, 57762306a36Sopenharmony_ci { 0x40500, 2, 0x1f, 0x924}, 57862306a36Sopenharmony_ci { 0x40510, 2, 0x1f, 0x924}, 57962306a36Sopenharmony_ci { 0x40520, 2, 0x1f, 0x924}, 58062306a36Sopenharmony_ci { 0x40530, 2, 0x1f, 0x924}, 58162306a36Sopenharmony_ci { 0x40540, 2, 0x1f, 0x924}, 58262306a36Sopenharmony_ci { 0x40550, 10, 0x1c, 0x924}, 58362306a36Sopenharmony_ci { 0x40610, 2, 0x1c, 0x924}, 58462306a36Sopenharmony_ci { 0x42000, 164, 0x1f, 0x924}, 58562306a36Sopenharmony_ci { 0x422b0, 2, 0x1f, 0x1fff}, 58662306a36Sopenharmony_ci { 0x422bc, 1, 0x1f, 0x1fff}, 58762306a36Sopenharmony_ci { 0x422c0, 4, 0x1c, 0x924}, 58862306a36Sopenharmony_ci { 0x422d4, 5, 0x1e, 0x924}, 58962306a36Sopenharmony_ci { 0x422e8, 1, 0x1c, 0x924}, 59062306a36Sopenharmony_ci { 0x42400, 49, 0x1f, 0x924}, 59162306a36Sopenharmony_ci { 0x424c8, 32, 0x1f, 0x924}, 59262306a36Sopenharmony_ci { 0x42548, 1, 0x1f, 0xfff}, 59362306a36Sopenharmony_ci { 0x4254c, 1, 0x1f, 0x924}, 59462306a36Sopenharmony_ci { 0x42550, 1, 0x1f, 0xfff}, 59562306a36Sopenharmony_ci { 0x42554, 1, 0x1f, 0x924}, 59662306a36Sopenharmony_ci { 0x42558, 1, 0x1f, 0xfff}, 59762306a36Sopenharmony_ci { 0x4255c, 1, 0x1f, 0x924}, 59862306a36Sopenharmony_ci { 0x42568, 2, 0x1f, 0x924}, 59962306a36Sopenharmony_ci { 0x42640, 5, 0x1c, 0x924}, 60062306a36Sopenharmony_ci { 0x42800, 1, 0x1f, 0x924}, 60162306a36Sopenharmony_ci { 0x50000, 1, 0x1f, 0x1fff}, 60262306a36Sopenharmony_ci { 0x50004, 19, 0x1f, 0x924}, 60362306a36Sopenharmony_ci { 0x50050, 8, 0x1f, 0x93c}, 60462306a36Sopenharmony_ci { 0x50070, 60, 0x1f, 0x924}, 60562306a36Sopenharmony_ci { 0x50160, 8, 0x1f, 0xfff}, 60662306a36Sopenharmony_ci { 0x50180, 20, 0x1f, 0x924}, 60762306a36Sopenharmony_ci { 0x501e0, 2, 0x1f, 0x1fff}, 60862306a36Sopenharmony_ci { 0x501ec, 1, 0x1f, 0x1fff}, 60962306a36Sopenharmony_ci { 0x501f0, 4, 0x1e, 0x924}, 61062306a36Sopenharmony_ci { 0x50200, 1, 0x1f, 0x924}, 61162306a36Sopenharmony_ci { 0x50204, 1, 0x1f, 0xfff}, 61262306a36Sopenharmony_ci { 0x5020c, 2, 0x1f, 0xfff}, 61362306a36Sopenharmony_ci { 0x50214, 2, 0x1f, 0x924}, 61462306a36Sopenharmony_ci { 0x5021c, 1, 0x1f, 0xfff}, 61562306a36Sopenharmony_ci { 0x50220, 2, 0x1f, 0x924}, 61662306a36Sopenharmony_ci { 0x50228, 6, 0x1e, 0x924}, 61762306a36Sopenharmony_ci { 0x50240, 1, 0x1f, 0x924}, 61862306a36Sopenharmony_ci { 0x50280, 1, 0x1f, 0x924}, 61962306a36Sopenharmony_ci { 0x50300, 1, 0x1c, 0x924}, 62062306a36Sopenharmony_ci { 0x5030c, 1, 0x1c, 0x924}, 62162306a36Sopenharmony_ci { 0x50318, 1, 0x1c, 0x934}, 62262306a36Sopenharmony_ci { 0x5031c, 1, 0x1c, 0x924}, 62362306a36Sopenharmony_ci { 0x50320, 2, 0x1c, 0x934}, 62462306a36Sopenharmony_ci { 0x50330, 1, 0x10, 0x924}, 62562306a36Sopenharmony_ci { 0x52000, 1, 0x1f, 0x924}, 62662306a36Sopenharmony_ci { 0x54000, 1, 0x1f, 0x93c}, 62762306a36Sopenharmony_ci { 0x54004, 255, 0x1f, 0x30}, 62862306a36Sopenharmony_ci { 0x54400, 1, 0x1f, 0x38}, 62962306a36Sopenharmony_ci { 0x54404, 255, 0x1f, 0x30}, 63062306a36Sopenharmony_ci { 0x54800, 1, 0x1f, 0x38}, 63162306a36Sopenharmony_ci { 0x54804, 255, 0x1f, 0x30}, 63262306a36Sopenharmony_ci { 0x54c00, 1, 0x1f, 0x38}, 63362306a36Sopenharmony_ci { 0x54c04, 255, 0x1f, 0x30}, 63462306a36Sopenharmony_ci { 0x55000, 1, 0x1f, 0x38}, 63562306a36Sopenharmony_ci { 0x55004, 255, 0x1f, 0x30}, 63662306a36Sopenharmony_ci { 0x55400, 1, 0x1f, 0x38}, 63762306a36Sopenharmony_ci { 0x55404, 255, 0x1f, 0x30}, 63862306a36Sopenharmony_ci { 0x55800, 1, 0x1f, 0x38}, 63962306a36Sopenharmony_ci { 0x55804, 255, 0x1f, 0x30}, 64062306a36Sopenharmony_ci { 0x55c00, 1, 0x1f, 0x38}, 64162306a36Sopenharmony_ci { 0x55c04, 255, 0x1f, 0x30}, 64262306a36Sopenharmony_ci { 0x56000, 1, 0x1f, 0x38}, 64362306a36Sopenharmony_ci { 0x56004, 255, 0x1f, 0x30}, 64462306a36Sopenharmony_ci { 0x56400, 1, 0x1f, 0x38}, 64562306a36Sopenharmony_ci { 0x56404, 255, 0x1f, 0x30}, 64662306a36Sopenharmony_ci { 0x56800, 1, 0x1f, 0x38}, 64762306a36Sopenharmony_ci { 0x56804, 255, 0x1f, 0x30}, 64862306a36Sopenharmony_ci { 0x56c00, 1, 0x1f, 0x38}, 64962306a36Sopenharmony_ci { 0x56c04, 255, 0x1f, 0x30}, 65062306a36Sopenharmony_ci { 0x57000, 1, 0x1f, 0x38}, 65162306a36Sopenharmony_ci { 0x57004, 255, 0x1f, 0x30}, 65262306a36Sopenharmony_ci { 0x58000, 1, 0x1f, 0x934}, 65362306a36Sopenharmony_ci { 0x58004, 8191, 0x3, 0x30}, 65462306a36Sopenharmony_ci { 0x60000, 26, 0x1f, 0x924}, 65562306a36Sopenharmony_ci { 0x60068, 8, 0x3, 0x924}, 65662306a36Sopenharmony_ci { 0x60088, 2, 0x1f, 0x924}, 65762306a36Sopenharmony_ci { 0x60090, 1, 0x1f, 0xfff}, 65862306a36Sopenharmony_ci { 0x60094, 9, 0x1f, 0x924}, 65962306a36Sopenharmony_ci { 0x600b8, 9, 0x3, 0x924}, 66062306a36Sopenharmony_ci { 0x600dc, 1, 0x1f, 0x924}, 66162306a36Sopenharmony_ci { 0x600e0, 5, 0x3, 0x924}, 66262306a36Sopenharmony_ci { 0x600f4, 1, 0x7, 0x924}, 66362306a36Sopenharmony_ci { 0x600f8, 1, 0x3, 0x924}, 66462306a36Sopenharmony_ci { 0x600fc, 8, 0x1f, 0x924}, 66562306a36Sopenharmony_ci { 0x6012c, 2, 0x1f, 0x1fff}, 66662306a36Sopenharmony_ci { 0x60138, 1, 0x1f, 0x1fff}, 66762306a36Sopenharmony_ci { 0x6013c, 24, 0x2, 0x924}, 66862306a36Sopenharmony_ci { 0x6019c, 2, 0x1c, 0x924}, 66962306a36Sopenharmony_ci { 0x601ac, 18, 0x1c, 0x924}, 67062306a36Sopenharmony_ci { 0x60200, 1, 0x1f, 0xb6d}, 67162306a36Sopenharmony_ci { 0x60204, 2, 0x1f, 0x249}, 67262306a36Sopenharmony_ci { 0x60210, 13, 0x1c, 0x924}, 67362306a36Sopenharmony_ci { 0x60244, 16, 0x10, 0x924}, 67462306a36Sopenharmony_ci { 0x61000, 1, 0x1f, 0xb6d}, 67562306a36Sopenharmony_ci { 0x61004, 511, 0x1f, 0x249}, 67662306a36Sopenharmony_ci { 0x61800, 512, 0x18, 0x249}, 67762306a36Sopenharmony_ci { 0x70000, 8, 0x1f, 0xb6d}, 67862306a36Sopenharmony_ci { 0x70020, 8184, 0x1f, 0x249}, 67962306a36Sopenharmony_ci { 0x78000, 8192, 0x18, 0x249}, 68062306a36Sopenharmony_ci { 0x85000, 3, 0x1f, 0x1000}, 68162306a36Sopenharmony_ci { 0x8501c, 7, 0x1f, 0x1000}, 68262306a36Sopenharmony_ci { 0x85048, 1, 0x1f, 0x1000}, 68362306a36Sopenharmony_ci { 0x85200, 32, 0x1f, 0x1000}, 68462306a36Sopenharmony_ci { 0xa0000, 16384, 0x3, 0x1000}, 68562306a36Sopenharmony_ci { 0xb0000, 16384, 0x2, 0x1000}, 68662306a36Sopenharmony_ci { 0xc1000, 7, 0x1f, 0x924}, 68762306a36Sopenharmony_ci { 0xc102c, 2, 0x1f, 0x1fff}, 68862306a36Sopenharmony_ci { 0xc1038, 1, 0x1f, 0x1fff}, 68962306a36Sopenharmony_ci { 0xc103c, 2, 0x1c, 0x924}, 69062306a36Sopenharmony_ci { 0xc1800, 2, 0x1f, 0x924}, 69162306a36Sopenharmony_ci { 0xc2000, 164, 0x1f, 0x924}, 69262306a36Sopenharmony_ci { 0xc22b0, 2, 0x1f, 0x1fff}, 69362306a36Sopenharmony_ci { 0xc22bc, 1, 0x1f, 0x1fff}, 69462306a36Sopenharmony_ci { 0xc22c0, 5, 0x1c, 0x924}, 69562306a36Sopenharmony_ci { 0xc22d8, 4, 0x1c, 0x924}, 69662306a36Sopenharmony_ci { 0xc2400, 49, 0x1f, 0x924}, 69762306a36Sopenharmony_ci { 0xc24c8, 32, 0x1f, 0x924}, 69862306a36Sopenharmony_ci { 0xc2548, 1, 0x1f, 0xfff}, 69962306a36Sopenharmony_ci { 0xc254c, 1, 0x1f, 0x924}, 70062306a36Sopenharmony_ci { 0xc2550, 1, 0x1f, 0xfff}, 70162306a36Sopenharmony_ci { 0xc2554, 1, 0x1f, 0x924}, 70262306a36Sopenharmony_ci { 0xc2558, 1, 0x1f, 0xfff}, 70362306a36Sopenharmony_ci { 0xc255c, 1, 0x1f, 0x924}, 70462306a36Sopenharmony_ci { 0xc2568, 2, 0x1f, 0x924}, 70562306a36Sopenharmony_ci { 0xc2600, 1, 0x1f, 0x924}, 70662306a36Sopenharmony_ci { 0xc4000, 165, 0x1f, 0x924}, 70762306a36Sopenharmony_ci { 0xc42b4, 2, 0x1f, 0x1fff}, 70862306a36Sopenharmony_ci { 0xc42c0, 1, 0x1f, 0x1fff}, 70962306a36Sopenharmony_ci { 0xc42d8, 2, 0x1c, 0x924}, 71062306a36Sopenharmony_ci { 0xc42e0, 7, 0x1e, 0x924}, 71162306a36Sopenharmony_ci { 0xc42fc, 1, 0x1c, 0x924}, 71262306a36Sopenharmony_ci { 0xc4400, 51, 0x1f, 0x924}, 71362306a36Sopenharmony_ci { 0xc44d0, 32, 0x1f, 0x924}, 71462306a36Sopenharmony_ci { 0xc4550, 1, 0x1f, 0xfff}, 71562306a36Sopenharmony_ci { 0xc4554, 1, 0x1f, 0x924}, 71662306a36Sopenharmony_ci { 0xc4558, 1, 0x1f, 0xfff}, 71762306a36Sopenharmony_ci { 0xc455c, 1, 0x1f, 0x924}, 71862306a36Sopenharmony_ci { 0xc4560, 1, 0x1f, 0xfff}, 71962306a36Sopenharmony_ci { 0xc4564, 1, 0x1f, 0x924}, 72062306a36Sopenharmony_ci { 0xc4570, 2, 0x1f, 0x924}, 72162306a36Sopenharmony_ci { 0xc4578, 5, 0x1c, 0x924}, 72262306a36Sopenharmony_ci { 0xc4600, 1, 0x1f, 0x924}, 72362306a36Sopenharmony_ci { 0xd0000, 19, 0x1f, 0x924}, 72462306a36Sopenharmony_ci { 0xd004c, 8, 0x1f, 0x1927}, 72562306a36Sopenharmony_ci { 0xd006c, 64, 0x1f, 0x924}, 72662306a36Sopenharmony_ci { 0xd016c, 8, 0x1f, 0xfff}, 72762306a36Sopenharmony_ci { 0xd018c, 19, 0x1f, 0x924}, 72862306a36Sopenharmony_ci { 0xd01e8, 2, 0x1f, 0x1fff}, 72962306a36Sopenharmony_ci { 0xd01f4, 1, 0x1f, 0x1fff}, 73062306a36Sopenharmony_ci { 0xd01fc, 1, 0x1c, 0x924}, 73162306a36Sopenharmony_ci { 0xd0200, 1, 0x1f, 0x924}, 73262306a36Sopenharmony_ci { 0xd0204, 1, 0x1f, 0xfff}, 73362306a36Sopenharmony_ci { 0xd020c, 3, 0x1f, 0xfff}, 73462306a36Sopenharmony_ci { 0xd0218, 4, 0x1f, 0x924}, 73562306a36Sopenharmony_ci { 0xd0228, 18, 0x1e, 0x924}, 73662306a36Sopenharmony_ci { 0xd0280, 1, 0x1f, 0x924}, 73762306a36Sopenharmony_ci { 0xd0300, 1, 0x1f, 0x924}, 73862306a36Sopenharmony_ci { 0xd0400, 1, 0x1f, 0x924}, 73962306a36Sopenharmony_ci { 0xd0818, 1, 0x10, 0x924}, 74062306a36Sopenharmony_ci { 0xd4000, 1, 0x1f, 0x1927}, 74162306a36Sopenharmony_ci { 0xd4004, 255, 0x1f, 0x6}, 74262306a36Sopenharmony_ci { 0xd4400, 1, 0x1f, 0x1007}, 74362306a36Sopenharmony_ci { 0xd4404, 255, 0x1f, 0x6}, 74462306a36Sopenharmony_ci { 0xd4800, 1, 0x1f, 0x1007}, 74562306a36Sopenharmony_ci { 0xd4804, 255, 0x1f, 0x6}, 74662306a36Sopenharmony_ci { 0xd4c00, 1, 0x1f, 0x1007}, 74762306a36Sopenharmony_ci { 0xd4c04, 255, 0x1f, 0x6}, 74862306a36Sopenharmony_ci { 0xd5000, 1, 0x1f, 0x1007}, 74962306a36Sopenharmony_ci { 0xd5004, 255, 0x1f, 0x6}, 75062306a36Sopenharmony_ci { 0xd5400, 1, 0x1f, 0x1007}, 75162306a36Sopenharmony_ci { 0xd5404, 255, 0x1f, 0x6}, 75262306a36Sopenharmony_ci { 0xd5800, 1, 0x1f, 0x1007}, 75362306a36Sopenharmony_ci { 0xd5804, 255, 0x1f, 0x6}, 75462306a36Sopenharmony_ci { 0xd5c00, 1, 0x1f, 0x1007}, 75562306a36Sopenharmony_ci { 0xd5c04, 255, 0x1f, 0x6}, 75662306a36Sopenharmony_ci { 0xd6000, 1, 0x1f, 0x1007}, 75762306a36Sopenharmony_ci { 0xd6004, 255, 0x1f, 0x6}, 75862306a36Sopenharmony_ci { 0xd6400, 1, 0x1f, 0x1007}, 75962306a36Sopenharmony_ci { 0xd6404, 255, 0x1f, 0x6}, 76062306a36Sopenharmony_ci { 0xd8000, 1, 0x1f, 0x1927}, 76162306a36Sopenharmony_ci { 0xd8004, 255, 0x1f, 0x6}, 76262306a36Sopenharmony_ci { 0xd8400, 1, 0x1f, 0x1007}, 76362306a36Sopenharmony_ci { 0xd8404, 255, 0x1f, 0x6}, 76462306a36Sopenharmony_ci { 0xd8800, 1, 0x1f, 0x1007}, 76562306a36Sopenharmony_ci { 0xd8804, 255, 0x1f, 0x6}, 76662306a36Sopenharmony_ci { 0xd8c00, 1, 0x1f, 0x1007}, 76762306a36Sopenharmony_ci { 0xd8c04, 255, 0x1f, 0x6}, 76862306a36Sopenharmony_ci { 0xd9000, 1, 0x1f, 0x1007}, 76962306a36Sopenharmony_ci { 0xd9004, 255, 0x1f, 0x6}, 77062306a36Sopenharmony_ci { 0xd9400, 1, 0x1f, 0x1007}, 77162306a36Sopenharmony_ci { 0xd9404, 255, 0x1f, 0x6}, 77262306a36Sopenharmony_ci { 0xd9800, 1, 0x1f, 0x1007}, 77362306a36Sopenharmony_ci { 0xd9804, 255, 0x1f, 0x6}, 77462306a36Sopenharmony_ci { 0xd9c00, 1, 0x1f, 0x1007}, 77562306a36Sopenharmony_ci { 0xd9c04, 255, 0x1f, 0x6}, 77662306a36Sopenharmony_ci { 0xda000, 1, 0x1f, 0x1007}, 77762306a36Sopenharmony_ci { 0xda004, 255, 0x1f, 0x6}, 77862306a36Sopenharmony_ci { 0xda400, 1, 0x1f, 0x1007}, 77962306a36Sopenharmony_ci { 0xda404, 255, 0x1f, 0x6}, 78062306a36Sopenharmony_ci { 0xda800, 1, 0x1f, 0x1007}, 78162306a36Sopenharmony_ci { 0xda804, 255, 0x1f, 0x6}, 78262306a36Sopenharmony_ci { 0xdac00, 1, 0x1f, 0x1007}, 78362306a36Sopenharmony_ci { 0xdac04, 255, 0x1f, 0x6}, 78462306a36Sopenharmony_ci { 0xdb000, 1, 0x1f, 0x1007}, 78562306a36Sopenharmony_ci { 0xdb004, 255, 0x1f, 0x6}, 78662306a36Sopenharmony_ci { 0xdb400, 1, 0x1f, 0x1007}, 78762306a36Sopenharmony_ci { 0xdb404, 255, 0x1f, 0x6}, 78862306a36Sopenharmony_ci { 0xdb800, 1, 0x1f, 0x1007}, 78962306a36Sopenharmony_ci { 0xdb804, 255, 0x1f, 0x6}, 79062306a36Sopenharmony_ci { 0xdbc00, 1, 0x1f, 0x1007}, 79162306a36Sopenharmony_ci { 0xdbc04, 255, 0x1f, 0x6}, 79262306a36Sopenharmony_ci { 0xdc000, 1, 0x1f, 0x1007}, 79362306a36Sopenharmony_ci { 0xdc004, 255, 0x1f, 0x6}, 79462306a36Sopenharmony_ci { 0xdc400, 1, 0x1f, 0x1007}, 79562306a36Sopenharmony_ci { 0xdc404, 255, 0x1f, 0x6}, 79662306a36Sopenharmony_ci { 0xdc800, 1, 0x1f, 0x1007}, 79762306a36Sopenharmony_ci { 0xdc804, 255, 0x1f, 0x6}, 79862306a36Sopenharmony_ci { 0xdcc00, 1, 0x1f, 0x1007}, 79962306a36Sopenharmony_ci { 0xdcc04, 255, 0x1f, 0x6}, 80062306a36Sopenharmony_ci { 0xdd000, 1, 0x1f, 0x1007}, 80162306a36Sopenharmony_ci { 0xdd004, 255, 0x1f, 0x6}, 80262306a36Sopenharmony_ci { 0xdd400, 1, 0x1f, 0x1007}, 80362306a36Sopenharmony_ci { 0xdd404, 255, 0x1f, 0x6}, 80462306a36Sopenharmony_ci { 0xdd800, 1, 0x1f, 0x1007}, 80562306a36Sopenharmony_ci { 0xdd804, 255, 0x1f, 0x6}, 80662306a36Sopenharmony_ci { 0xddc00, 1, 0x1f, 0x1007}, 80762306a36Sopenharmony_ci { 0xddc04, 255, 0x1f, 0x6}, 80862306a36Sopenharmony_ci { 0xde000, 1, 0x1f, 0x1007}, 80962306a36Sopenharmony_ci { 0xde004, 255, 0x1f, 0x6}, 81062306a36Sopenharmony_ci { 0xde400, 1, 0x1f, 0x1007}, 81162306a36Sopenharmony_ci { 0xde404, 255, 0x1f, 0x6}, 81262306a36Sopenharmony_ci { 0xde800, 1, 0x1f, 0x1007}, 81362306a36Sopenharmony_ci { 0xde804, 255, 0x1f, 0x6}, 81462306a36Sopenharmony_ci { 0xdec00, 1, 0x1f, 0x1007}, 81562306a36Sopenharmony_ci { 0xdec04, 255, 0x1f, 0x6}, 81662306a36Sopenharmony_ci { 0xdf000, 1, 0x1f, 0x1007}, 81762306a36Sopenharmony_ci { 0xdf004, 255, 0x1f, 0x6}, 81862306a36Sopenharmony_ci { 0xdf400, 1, 0x1f, 0x1007}, 81962306a36Sopenharmony_ci { 0xdf404, 255, 0x1f, 0x6}, 82062306a36Sopenharmony_ci { 0xdf800, 1, 0x1f, 0x1007}, 82162306a36Sopenharmony_ci { 0xdf804, 255, 0x1f, 0x6}, 82262306a36Sopenharmony_ci { 0xdfc00, 1, 0x1f, 0x1007}, 82362306a36Sopenharmony_ci { 0xdfc04, 255, 0x1f, 0x6}, 82462306a36Sopenharmony_ci { 0xe0000, 21, 0x1f, 0x924}, 82562306a36Sopenharmony_ci { 0xe0054, 8, 0x1f, 0xf24}, 82662306a36Sopenharmony_ci { 0xe0074, 49, 0x1f, 0x924}, 82762306a36Sopenharmony_ci { 0xe0138, 1, 0x3, 0x924}, 82862306a36Sopenharmony_ci { 0xe013c, 6, 0x1f, 0x924}, 82962306a36Sopenharmony_ci { 0xe0154, 8, 0x1f, 0xfff}, 83062306a36Sopenharmony_ci { 0xe0174, 21, 0x1f, 0x924}, 83162306a36Sopenharmony_ci { 0xe01d8, 2, 0x1f, 0x1fff}, 83262306a36Sopenharmony_ci { 0xe01e4, 1, 0x1f, 0x1fff}, 83362306a36Sopenharmony_ci { 0xe01f4, 1, 0x4, 0x924}, 83462306a36Sopenharmony_ci { 0xe01f8, 1, 0x1c, 0x924}, 83562306a36Sopenharmony_ci { 0xe0200, 1, 0x1f, 0x924}, 83662306a36Sopenharmony_ci { 0xe0204, 1, 0x1f, 0xfff}, 83762306a36Sopenharmony_ci { 0xe020c, 2, 0x1f, 0xfff}, 83862306a36Sopenharmony_ci { 0xe0214, 2, 0x1f, 0x924}, 83962306a36Sopenharmony_ci { 0xe021c, 2, 0x1f, 0xfff}, 84062306a36Sopenharmony_ci { 0xe0224, 2, 0x1f, 0x924}, 84162306a36Sopenharmony_ci { 0xe022c, 18, 0x1e, 0x924}, 84262306a36Sopenharmony_ci { 0xe0280, 1, 0x1f, 0x924}, 84362306a36Sopenharmony_ci { 0xe0300, 1, 0x1f, 0x924}, 84462306a36Sopenharmony_ci { 0xe0400, 1, 0x10, 0x924}, 84562306a36Sopenharmony_ci { 0xe1000, 1, 0x1f, 0x924}, 84662306a36Sopenharmony_ci { 0xe2000, 1, 0x1f, 0xf24}, 84762306a36Sopenharmony_ci { 0xe2004, 255, 0x1f, 0xc00}, 84862306a36Sopenharmony_ci { 0xe2400, 1, 0x1f, 0xe00}, 84962306a36Sopenharmony_ci { 0xe2404, 255, 0x1f, 0xc00}, 85062306a36Sopenharmony_ci { 0xe2800, 1, 0x1f, 0xe00}, 85162306a36Sopenharmony_ci { 0xe2804, 255, 0x1f, 0xc00}, 85262306a36Sopenharmony_ci { 0xe2c00, 1, 0x1f, 0xe00}, 85362306a36Sopenharmony_ci { 0xe2c04, 255, 0x1f, 0xc00}, 85462306a36Sopenharmony_ci { 0xe3000, 1, 0x1f, 0xe00}, 85562306a36Sopenharmony_ci { 0xe3004, 255, 0x1f, 0xc00}, 85662306a36Sopenharmony_ci { 0xe3400, 1, 0x1f, 0xe00}, 85762306a36Sopenharmony_ci { 0xe3404, 255, 0x1f, 0xc00}, 85862306a36Sopenharmony_ci { 0xe3800, 1, 0x1f, 0xe00}, 85962306a36Sopenharmony_ci { 0xe3804, 255, 0x1f, 0xc00}, 86062306a36Sopenharmony_ci { 0xe3c00, 1, 0x1f, 0xe00}, 86162306a36Sopenharmony_ci { 0xe3c04, 255, 0x1f, 0xc00}, 86262306a36Sopenharmony_ci { 0xf0000, 1, 0x1f, 0xf24}, 86362306a36Sopenharmony_ci { 0xf0004, 255, 0x1f, 0xc00}, 86462306a36Sopenharmony_ci { 0xf0400, 1, 0x1f, 0xe00}, 86562306a36Sopenharmony_ci { 0xf0404, 255, 0x1f, 0xc00}, 86662306a36Sopenharmony_ci { 0xf0800, 1, 0x1f, 0xe00}, 86762306a36Sopenharmony_ci { 0xf0804, 255, 0x1f, 0xc00}, 86862306a36Sopenharmony_ci { 0xf0c00, 1, 0x1f, 0xe00}, 86962306a36Sopenharmony_ci { 0xf0c04, 255, 0x1f, 0xc00}, 87062306a36Sopenharmony_ci { 0xf1000, 1, 0x1f, 0xe00}, 87162306a36Sopenharmony_ci { 0xf1004, 255, 0x1f, 0xc00}, 87262306a36Sopenharmony_ci { 0xf1400, 1, 0x1f, 0xe00}, 87362306a36Sopenharmony_ci { 0xf1404, 255, 0x1f, 0xc00}, 87462306a36Sopenharmony_ci { 0xf1800, 1, 0x1f, 0xe00}, 87562306a36Sopenharmony_ci { 0xf1804, 255, 0x1f, 0xc00}, 87662306a36Sopenharmony_ci { 0xf1c00, 1, 0x1f, 0xe00}, 87762306a36Sopenharmony_ci { 0xf1c04, 255, 0x1f, 0xc00}, 87862306a36Sopenharmony_ci { 0xf2000, 1, 0x1f, 0xe00}, 87962306a36Sopenharmony_ci { 0xf2004, 255, 0x1f, 0xc00}, 88062306a36Sopenharmony_ci { 0xf2400, 1, 0x1f, 0xe00}, 88162306a36Sopenharmony_ci { 0xf2404, 255, 0x1f, 0xc00}, 88262306a36Sopenharmony_ci { 0xf2800, 1, 0x1f, 0xe00}, 88362306a36Sopenharmony_ci { 0xf2804, 255, 0x1f, 0xc00}, 88462306a36Sopenharmony_ci { 0xf2c00, 1, 0x1f, 0xe00}, 88562306a36Sopenharmony_ci { 0xf2c04, 255, 0x1f, 0xc00}, 88662306a36Sopenharmony_ci { 0xf3000, 1, 0x1f, 0xe00}, 88762306a36Sopenharmony_ci { 0xf3004, 255, 0x1f, 0xc00}, 88862306a36Sopenharmony_ci { 0xf3400, 1, 0x1f, 0xe00}, 88962306a36Sopenharmony_ci { 0xf3404, 255, 0x1f, 0xc00}, 89062306a36Sopenharmony_ci { 0xf3800, 1, 0x1f, 0xe00}, 89162306a36Sopenharmony_ci { 0xf3804, 255, 0x1f, 0xc00}, 89262306a36Sopenharmony_ci { 0xf3c00, 1, 0x1f, 0xe00}, 89362306a36Sopenharmony_ci { 0xf3c04, 255, 0x1f, 0xc00}, 89462306a36Sopenharmony_ci { 0xf4000, 1, 0x1f, 0xe00}, 89562306a36Sopenharmony_ci { 0xf4004, 255, 0x1f, 0xc00}, 89662306a36Sopenharmony_ci { 0xf4400, 1, 0x1f, 0xe00}, 89762306a36Sopenharmony_ci { 0xf4404, 255, 0x1f, 0xc00}, 89862306a36Sopenharmony_ci { 0xf4800, 1, 0x1f, 0xe00}, 89962306a36Sopenharmony_ci { 0xf4804, 255, 0x1f, 0xc00}, 90062306a36Sopenharmony_ci { 0xf4c00, 1, 0x1f, 0xe00}, 90162306a36Sopenharmony_ci { 0xf4c04, 255, 0x1f, 0xc00}, 90262306a36Sopenharmony_ci { 0xf5000, 1, 0x1f, 0xe00}, 90362306a36Sopenharmony_ci { 0xf5004, 255, 0x1f, 0xc00}, 90462306a36Sopenharmony_ci { 0xf5400, 1, 0x1f, 0xe00}, 90562306a36Sopenharmony_ci { 0xf5404, 255, 0x1f, 0xc00}, 90662306a36Sopenharmony_ci { 0xf5800, 1, 0x1f, 0xe00}, 90762306a36Sopenharmony_ci { 0xf5804, 255, 0x1f, 0xc00}, 90862306a36Sopenharmony_ci { 0xf5c00, 1, 0x1f, 0xe00}, 90962306a36Sopenharmony_ci { 0xf5c04, 255, 0x1f, 0xc00}, 91062306a36Sopenharmony_ci { 0xf6000, 1, 0x1f, 0xe00}, 91162306a36Sopenharmony_ci { 0xf6004, 255, 0x1f, 0xc00}, 91262306a36Sopenharmony_ci { 0xf6400, 1, 0x1f, 0xe00}, 91362306a36Sopenharmony_ci { 0xf6404, 255, 0x1f, 0xc00}, 91462306a36Sopenharmony_ci { 0xf6800, 1, 0x1f, 0xe00}, 91562306a36Sopenharmony_ci { 0xf6804, 255, 0x1f, 0xc00}, 91662306a36Sopenharmony_ci { 0xf6c00, 1, 0x1f, 0xe00}, 91762306a36Sopenharmony_ci { 0xf6c04, 255, 0x1f, 0xc00}, 91862306a36Sopenharmony_ci { 0xf7000, 1, 0x1f, 0xe00}, 91962306a36Sopenharmony_ci { 0xf7004, 255, 0x1f, 0xc00}, 92062306a36Sopenharmony_ci { 0xf7400, 1, 0x1f, 0xe00}, 92162306a36Sopenharmony_ci { 0xf7404, 255, 0x1f, 0xc00}, 92262306a36Sopenharmony_ci { 0xf7800, 1, 0x1f, 0xe00}, 92362306a36Sopenharmony_ci { 0xf7804, 255, 0x1f, 0xc00}, 92462306a36Sopenharmony_ci { 0xf7c00, 1, 0x1f, 0xe00}, 92562306a36Sopenharmony_ci { 0xf7c04, 255, 0x1f, 0xc00}, 92662306a36Sopenharmony_ci { 0xf8000, 1, 0x1f, 0xe00}, 92762306a36Sopenharmony_ci { 0xf8004, 255, 0x1f, 0xc00}, 92862306a36Sopenharmony_ci { 0xf8400, 1, 0x1f, 0xe00}, 92962306a36Sopenharmony_ci { 0xf8404, 255, 0x1f, 0xc00}, 93062306a36Sopenharmony_ci { 0xf8800, 1, 0x1f, 0xe00}, 93162306a36Sopenharmony_ci { 0xf8804, 255, 0x1f, 0xc00}, 93262306a36Sopenharmony_ci { 0xf8c00, 1, 0x1f, 0xe00}, 93362306a36Sopenharmony_ci { 0xf8c04, 255, 0x1f, 0xc00}, 93462306a36Sopenharmony_ci { 0xf9000, 1, 0x1f, 0xe00}, 93562306a36Sopenharmony_ci { 0xf9004, 255, 0x1f, 0xc00}, 93662306a36Sopenharmony_ci { 0xf9400, 1, 0x1f, 0xe00}, 93762306a36Sopenharmony_ci { 0xf9404, 255, 0x1f, 0xc00}, 93862306a36Sopenharmony_ci { 0xf9800, 1, 0x1f, 0xe00}, 93962306a36Sopenharmony_ci { 0xf9804, 255, 0x1f, 0xc00}, 94062306a36Sopenharmony_ci { 0xf9c00, 1, 0x1f, 0xe00}, 94162306a36Sopenharmony_ci { 0xf9c04, 255, 0x1f, 0xc00}, 94262306a36Sopenharmony_ci { 0xfa000, 1, 0x1f, 0xe00}, 94362306a36Sopenharmony_ci { 0xfa004, 255, 0x1f, 0xc00}, 94462306a36Sopenharmony_ci { 0xfa400, 1, 0x1f, 0xe00}, 94562306a36Sopenharmony_ci { 0xfa404, 255, 0x1f, 0xc00}, 94662306a36Sopenharmony_ci { 0xfa800, 1, 0x1f, 0xe00}, 94762306a36Sopenharmony_ci { 0xfa804, 255, 0x1f, 0xc00}, 94862306a36Sopenharmony_ci { 0xfac00, 1, 0x1f, 0xe00}, 94962306a36Sopenharmony_ci { 0xfac04, 255, 0x1f, 0xc00}, 95062306a36Sopenharmony_ci { 0xfb000, 1, 0x1f, 0xe00}, 95162306a36Sopenharmony_ci { 0xfb004, 255, 0x1f, 0xc00}, 95262306a36Sopenharmony_ci { 0xfb400, 1, 0x1f, 0xe00}, 95362306a36Sopenharmony_ci { 0xfb404, 255, 0x1f, 0xc00}, 95462306a36Sopenharmony_ci { 0xfb800, 1, 0x1f, 0xe00}, 95562306a36Sopenharmony_ci { 0xfb804, 255, 0x1f, 0xc00}, 95662306a36Sopenharmony_ci { 0xfbc00, 1, 0x1f, 0xe00}, 95762306a36Sopenharmony_ci { 0xfbc04, 255, 0x1f, 0xc00}, 95862306a36Sopenharmony_ci { 0xfc000, 1, 0x1f, 0xe00}, 95962306a36Sopenharmony_ci { 0xfc004, 255, 0x1f, 0xc00}, 96062306a36Sopenharmony_ci { 0xfc400, 1, 0x1f, 0xe00}, 96162306a36Sopenharmony_ci { 0xfc404, 255, 0x1f, 0xc00}, 96262306a36Sopenharmony_ci { 0xfc800, 1, 0x1f, 0xe00}, 96362306a36Sopenharmony_ci { 0xfc804, 255, 0x1f, 0xc00}, 96462306a36Sopenharmony_ci { 0xfcc00, 1, 0x1f, 0xe00}, 96562306a36Sopenharmony_ci { 0xfcc04, 255, 0x1f, 0xc00}, 96662306a36Sopenharmony_ci { 0xfd000, 1, 0x1f, 0xe00}, 96762306a36Sopenharmony_ci { 0xfd004, 255, 0x1f, 0xc00}, 96862306a36Sopenharmony_ci { 0xfd400, 1, 0x1f, 0xe00}, 96962306a36Sopenharmony_ci { 0xfd404, 255, 0x1f, 0xc00}, 97062306a36Sopenharmony_ci { 0xfd800, 1, 0x1f, 0xe00}, 97162306a36Sopenharmony_ci { 0xfd804, 255, 0x1f, 0xc00}, 97262306a36Sopenharmony_ci { 0xfdc00, 1, 0x1f, 0xe00}, 97362306a36Sopenharmony_ci { 0xfdc04, 255, 0x1f, 0xc00}, 97462306a36Sopenharmony_ci { 0xfe000, 1, 0x1f, 0xe00}, 97562306a36Sopenharmony_ci { 0xfe004, 255, 0x1f, 0xc00}, 97662306a36Sopenharmony_ci { 0xfe400, 1, 0x1f, 0xe00}, 97762306a36Sopenharmony_ci { 0xfe404, 255, 0x1f, 0xc00}, 97862306a36Sopenharmony_ci { 0xfe800, 1, 0x1f, 0xe00}, 97962306a36Sopenharmony_ci { 0xfe804, 255, 0x1f, 0xc00}, 98062306a36Sopenharmony_ci { 0xfec00, 1, 0x1f, 0xe00}, 98162306a36Sopenharmony_ci { 0xfec04, 255, 0x1f, 0xc00}, 98262306a36Sopenharmony_ci { 0xff000, 1, 0x1f, 0xe00}, 98362306a36Sopenharmony_ci { 0xff004, 255, 0x1f, 0xc00}, 98462306a36Sopenharmony_ci { 0xff400, 1, 0x1f, 0xe00}, 98562306a36Sopenharmony_ci { 0xff404, 255, 0x1f, 0xc00}, 98662306a36Sopenharmony_ci { 0xff800, 1, 0x1f, 0xe00}, 98762306a36Sopenharmony_ci { 0xff804, 255, 0x1f, 0xc00}, 98862306a36Sopenharmony_ci { 0xffc00, 1, 0x1f, 0xe00}, 98962306a36Sopenharmony_ci { 0xffc04, 255, 0x1f, 0xc00}, 99062306a36Sopenharmony_ci { 0x101000, 5, 0x1f, 0x924}, 99162306a36Sopenharmony_ci { 0x101014, 1, 0x1f, 0xfff}, 99262306a36Sopenharmony_ci { 0x101018, 6, 0x1f, 0x924}, 99362306a36Sopenharmony_ci { 0x101040, 2, 0x1f, 0x1fff}, 99462306a36Sopenharmony_ci { 0x10104c, 1, 0x1f, 0x1fff}, 99562306a36Sopenharmony_ci { 0x101050, 1, 0x1e, 0x924}, 99662306a36Sopenharmony_ci { 0x101054, 3, 0x1c, 0x924}, 99762306a36Sopenharmony_ci { 0x101100, 1, 0x1f, 0x924}, 99862306a36Sopenharmony_ci { 0x101800, 8, 0x1f, 0x924}, 99962306a36Sopenharmony_ci { 0x102000, 18, 0x1f, 0x924}, 100062306a36Sopenharmony_ci { 0x102058, 2, 0x1f, 0x1fff}, 100162306a36Sopenharmony_ci { 0x102064, 1, 0x1f, 0x1fff}, 100262306a36Sopenharmony_ci { 0x102068, 6, 0x1c, 0x924}, 100362306a36Sopenharmony_ci { 0x102080, 16, 0x1f, 0xfff}, 100462306a36Sopenharmony_ci { 0x1020c0, 1, 0x1f, 0x924}, 100562306a36Sopenharmony_ci { 0x1020c8, 8, 0x2, 0x924}, 100662306a36Sopenharmony_ci { 0x1020e8, 9, 0x1c, 0x924}, 100762306a36Sopenharmony_ci { 0x102400, 1, 0x1f, 0x924}, 100862306a36Sopenharmony_ci { 0x103000, 1, 0x1f, 0x924}, 100962306a36Sopenharmony_ci { 0x103004, 2, 0x1f, 0xfff}, 101062306a36Sopenharmony_ci { 0x10300c, 23, 0x1f, 0x924}, 101162306a36Sopenharmony_ci { 0x103088, 2, 0x1f, 0x1fff}, 101262306a36Sopenharmony_ci { 0x103094, 1, 0x1f, 0x1fff}, 101362306a36Sopenharmony_ci { 0x103098, 1, 0x1e, 0x924}, 101462306a36Sopenharmony_ci { 0x10309c, 2, 0x1e, 0xfff}, 101562306a36Sopenharmony_ci { 0x1030a4, 2, 0x1e, 0x924}, 101662306a36Sopenharmony_ci { 0x1030ac, 2, 0x1c, 0x924}, 101762306a36Sopenharmony_ci { 0x1030b4, 1, 0x4, 0x924}, 101862306a36Sopenharmony_ci { 0x1030b8, 2, 0x1c, 0xfff}, 101962306a36Sopenharmony_ci { 0x1030c0, 3, 0x1c, 0x924}, 102062306a36Sopenharmony_ci { 0x1030cc, 1, 0x1c, 0xfff}, 102162306a36Sopenharmony_ci { 0x1030d0, 1, 0x1c, 0x924}, 102262306a36Sopenharmony_ci { 0x1030d8, 2, 0x1c, 0x924}, 102362306a36Sopenharmony_ci { 0x1030e0, 1, 0x1c, 0xfff}, 102462306a36Sopenharmony_ci { 0x1030e4, 5, 0x1c, 0x924}, 102562306a36Sopenharmony_ci { 0x103400, 136, 0x1c, 0x1fff}, 102662306a36Sopenharmony_ci { 0x103800, 8, 0x1f, 0x924}, 102762306a36Sopenharmony_ci { 0x104000, 1, 0x1f, 0x924}, 102862306a36Sopenharmony_ci { 0x104004, 1, 0x1f, 0xfff}, 102962306a36Sopenharmony_ci { 0x104008, 4, 0x1f, 0x924}, 103062306a36Sopenharmony_ci { 0x104018, 1, 0x1f, 0xfff}, 103162306a36Sopenharmony_ci { 0x10401c, 1, 0x1f, 0x924}, 103262306a36Sopenharmony_ci { 0x104020, 1, 0x1f, 0xfff}, 103362306a36Sopenharmony_ci { 0x104024, 6, 0x1f, 0x924}, 103462306a36Sopenharmony_ci { 0x10403c, 1, 0x1f, 0xfff}, 103562306a36Sopenharmony_ci { 0x104040, 47, 0x1f, 0x924}, 103662306a36Sopenharmony_ci { 0x10410c, 2, 0x1f, 0x1fff}, 103762306a36Sopenharmony_ci { 0x104118, 1, 0x1f, 0x1fff}, 103862306a36Sopenharmony_ci { 0x10411c, 16, 0x1c, 0x924}, 103962306a36Sopenharmony_ci { 0x104200, 17, 0x1f, 0x924}, 104062306a36Sopenharmony_ci { 0x104400, 1, 0x1f, 0x1fff}, 104162306a36Sopenharmony_ci { 0x104404, 63, 0x1f, 0xfff}, 104262306a36Sopenharmony_ci { 0x104500, 192, 0x1f, 0xdb6}, 104362306a36Sopenharmony_ci { 0x104800, 1, 0x1f, 0x1fff}, 104462306a36Sopenharmony_ci { 0x104804, 63, 0x1f, 0xfff}, 104562306a36Sopenharmony_ci { 0x104900, 192, 0x1f, 0xdb6}, 104662306a36Sopenharmony_ci { 0x105000, 4, 0x1f, 0x1fff}, 104762306a36Sopenharmony_ci { 0x105010, 252, 0x1f, 0xfff}, 104862306a36Sopenharmony_ci { 0x105400, 768, 0x1f, 0xdb6}, 104962306a36Sopenharmony_ci { 0x107000, 7, 0x1c, 0x924}, 105062306a36Sopenharmony_ci { 0x10701c, 1, 0x18, 0x924}, 105162306a36Sopenharmony_ci { 0x108000, 33, 0x3, 0x924}, 105262306a36Sopenharmony_ci { 0x1080ac, 5, 0x2, 0x924}, 105362306a36Sopenharmony_ci { 0x108100, 5, 0x3, 0x924}, 105462306a36Sopenharmony_ci { 0x108120, 5, 0x3, 0x924}, 105562306a36Sopenharmony_ci { 0x108200, 74, 0x3, 0x924}, 105662306a36Sopenharmony_ci { 0x108400, 74, 0x3, 0x924}, 105762306a36Sopenharmony_ci { 0x108800, 152, 0x3, 0x924}, 105862306a36Sopenharmony_ci { 0x110000, 111, 0x1c, 0x924}, 105962306a36Sopenharmony_ci { 0x1101cc, 2, 0x1c, 0x1fff}, 106062306a36Sopenharmony_ci { 0x1101d8, 1, 0x1c, 0x1fff}, 106162306a36Sopenharmony_ci { 0x1101dc, 1, 0x18, 0x924}, 106262306a36Sopenharmony_ci { 0x110200, 4, 0x1c, 0x924}, 106362306a36Sopenharmony_ci { 0x120000, 92, 0x1f, 0x924}, 106462306a36Sopenharmony_ci { 0x120170, 2, 0x3, 0x924}, 106562306a36Sopenharmony_ci { 0x120178, 14, 0x1f, 0x924}, 106662306a36Sopenharmony_ci { 0x1201b0, 2, 0x1f, 0xfff}, 106762306a36Sopenharmony_ci { 0x1201b8, 93, 0x1f, 0x924}, 106862306a36Sopenharmony_ci { 0x12032c, 1, 0x1f, 0xfff}, 106962306a36Sopenharmony_ci { 0x120330, 15, 0x1f, 0x924}, 107062306a36Sopenharmony_ci { 0x12036c, 3, 0x1f, 0xfff}, 107162306a36Sopenharmony_ci { 0x120378, 36, 0x1f, 0x924}, 107262306a36Sopenharmony_ci { 0x120408, 2, 0x1f, 0xfff}, 107362306a36Sopenharmony_ci { 0x120410, 1, 0x1f, 0x924}, 107462306a36Sopenharmony_ci { 0x120414, 15, 0x1f, 0xfff}, 107562306a36Sopenharmony_ci { 0x120450, 10, 0x1f, 0x924}, 107662306a36Sopenharmony_ci { 0x120478, 2, 0x1f, 0xfff}, 107762306a36Sopenharmony_ci { 0x120480, 43, 0x1f, 0x924}, 107862306a36Sopenharmony_ci { 0x12052c, 1, 0x1f, 0xfff}, 107962306a36Sopenharmony_ci { 0x120530, 5, 0x1f, 0x924}, 108062306a36Sopenharmony_ci { 0x120544, 4, 0x3, 0x924}, 108162306a36Sopenharmony_ci { 0x120554, 4, 0x1f, 0x924}, 108262306a36Sopenharmony_ci { 0x120564, 2, 0x1f, 0xfff}, 108362306a36Sopenharmony_ci { 0x12057c, 2, 0x1f, 0x1fff}, 108462306a36Sopenharmony_ci { 0x120588, 3, 0x1f, 0x1fff}, 108562306a36Sopenharmony_ci { 0x120598, 1, 0x1f, 0x1fff}, 108662306a36Sopenharmony_ci { 0x12059c, 22, 0x1e, 0x924}, 108762306a36Sopenharmony_ci { 0x1205f4, 1, 0x6, 0x924}, 108862306a36Sopenharmony_ci { 0x1205f8, 4, 0x1c, 0x924}, 108962306a36Sopenharmony_ci { 0x120618, 1, 0x1c, 0x924}, 109062306a36Sopenharmony_ci { 0x12061c, 31, 0x1e, 0x924}, 109162306a36Sopenharmony_ci { 0x120698, 3, 0x1c, 0x924}, 109262306a36Sopenharmony_ci { 0x1206a4, 1, 0x4, 0x924}, 109362306a36Sopenharmony_ci { 0x1206a8, 1, 0x1c, 0x924}, 109462306a36Sopenharmony_ci { 0x1206b0, 38, 0x1c, 0x924}, 109562306a36Sopenharmony_ci { 0x120748, 1, 0x1c, 0xfff}, 109662306a36Sopenharmony_ci { 0x12074c, 11, 0x1c, 0x924}, 109762306a36Sopenharmony_ci { 0x120778, 2, 0x1c, 0xfff}, 109862306a36Sopenharmony_ci { 0x120780, 23, 0x1c, 0x924}, 109962306a36Sopenharmony_ci { 0x1207dc, 1, 0x4, 0x924}, 110062306a36Sopenharmony_ci { 0x1207fc, 1, 0x1c, 0x924}, 110162306a36Sopenharmony_ci { 0x12080c, 2, 0x1f, 0xfff}, 110262306a36Sopenharmony_ci { 0x120814, 1, 0x1f, 0x924}, 110362306a36Sopenharmony_ci { 0x120818, 1, 0x1f, 0xfff}, 110462306a36Sopenharmony_ci { 0x12081c, 1, 0x1f, 0x924}, 110562306a36Sopenharmony_ci { 0x120820, 1, 0x1f, 0xfff}, 110662306a36Sopenharmony_ci { 0x120824, 1, 0x1f, 0x924}, 110762306a36Sopenharmony_ci { 0x120828, 1, 0x1f, 0xfff}, 110862306a36Sopenharmony_ci { 0x12082c, 1, 0x1f, 0x924}, 110962306a36Sopenharmony_ci { 0x120830, 1, 0x1f, 0xfff}, 111062306a36Sopenharmony_ci { 0x120834, 1, 0x1f, 0x924}, 111162306a36Sopenharmony_ci { 0x120838, 1, 0x1f, 0xfff}, 111262306a36Sopenharmony_ci { 0x12083c, 1, 0x1f, 0x924}, 111362306a36Sopenharmony_ci { 0x120840, 1, 0x1f, 0xfff}, 111462306a36Sopenharmony_ci { 0x120844, 1, 0x1f, 0x924}, 111562306a36Sopenharmony_ci { 0x120848, 1, 0x1f, 0xfff}, 111662306a36Sopenharmony_ci { 0x12084c, 1, 0x1f, 0x924}, 111762306a36Sopenharmony_ci { 0x120850, 1, 0x1f, 0xfff}, 111862306a36Sopenharmony_ci { 0x120854, 1, 0x1f, 0x924}, 111962306a36Sopenharmony_ci { 0x120858, 1, 0x1f, 0xfff}, 112062306a36Sopenharmony_ci { 0x12085c, 1, 0x1f, 0x924}, 112162306a36Sopenharmony_ci { 0x120860, 1, 0x1f, 0xfff}, 112262306a36Sopenharmony_ci { 0x120864, 1, 0x1f, 0x924}, 112362306a36Sopenharmony_ci { 0x120868, 1, 0x1f, 0xfff}, 112462306a36Sopenharmony_ci { 0x12086c, 1, 0x1f, 0x924}, 112562306a36Sopenharmony_ci { 0x120870, 1, 0x1f, 0xfff}, 112662306a36Sopenharmony_ci { 0x120874, 1, 0x1f, 0x924}, 112762306a36Sopenharmony_ci { 0x120878, 1, 0x1f, 0xfff}, 112862306a36Sopenharmony_ci { 0x12087c, 1, 0x1f, 0x924}, 112962306a36Sopenharmony_ci { 0x120880, 1, 0x1f, 0xfff}, 113062306a36Sopenharmony_ci { 0x120884, 1, 0x1f, 0x924}, 113162306a36Sopenharmony_ci { 0x120888, 1, 0x1f, 0xfff}, 113262306a36Sopenharmony_ci { 0x12088c, 1, 0x1f, 0x924}, 113362306a36Sopenharmony_ci { 0x120890, 1, 0x1f, 0xfff}, 113462306a36Sopenharmony_ci { 0x120894, 1, 0x1f, 0x924}, 113562306a36Sopenharmony_ci { 0x120898, 1, 0x1f, 0xfff}, 113662306a36Sopenharmony_ci { 0x12089c, 1, 0x1f, 0x924}, 113762306a36Sopenharmony_ci { 0x1208a0, 1, 0x1f, 0xfff}, 113862306a36Sopenharmony_ci { 0x1208a4, 1, 0x1f, 0x924}, 113962306a36Sopenharmony_ci { 0x1208a8, 1, 0x1f, 0xfff}, 114062306a36Sopenharmony_ci { 0x1208ac, 1, 0x1f, 0x924}, 114162306a36Sopenharmony_ci { 0x1208b0, 1, 0x1f, 0xfff}, 114262306a36Sopenharmony_ci { 0x1208b4, 1, 0x1f, 0x924}, 114362306a36Sopenharmony_ci { 0x1208b8, 1, 0x1f, 0xfff}, 114462306a36Sopenharmony_ci { 0x1208bc, 1, 0x1f, 0x924}, 114562306a36Sopenharmony_ci { 0x1208c0, 1, 0x1f, 0xfff}, 114662306a36Sopenharmony_ci { 0x1208c4, 1, 0x1f, 0x924}, 114762306a36Sopenharmony_ci { 0x1208c8, 1, 0x1f, 0xfff}, 114862306a36Sopenharmony_ci { 0x1208cc, 1, 0x1f, 0x924}, 114962306a36Sopenharmony_ci { 0x1208d0, 1, 0x1f, 0xfff}, 115062306a36Sopenharmony_ci { 0x1208d4, 1, 0x1f, 0x924}, 115162306a36Sopenharmony_ci { 0x1208d8, 1, 0x1f, 0xfff}, 115262306a36Sopenharmony_ci { 0x1208dc, 1, 0x1f, 0x924}, 115362306a36Sopenharmony_ci { 0x1208e0, 1, 0x1f, 0xfff}, 115462306a36Sopenharmony_ci { 0x1208e4, 1, 0x1f, 0x924}, 115562306a36Sopenharmony_ci { 0x1208e8, 1, 0x1f, 0xfff}, 115662306a36Sopenharmony_ci { 0x1208ec, 1, 0x1f, 0x924}, 115762306a36Sopenharmony_ci { 0x1208f0, 1, 0x1f, 0xfff}, 115862306a36Sopenharmony_ci { 0x1208f4, 1, 0x1f, 0x924}, 115962306a36Sopenharmony_ci { 0x1208f8, 1, 0x1f, 0xfff}, 116062306a36Sopenharmony_ci { 0x1208fc, 1, 0x1f, 0x924}, 116162306a36Sopenharmony_ci { 0x120900, 1, 0x1f, 0xfff}, 116262306a36Sopenharmony_ci { 0x120904, 1, 0x1f, 0x924}, 116362306a36Sopenharmony_ci { 0x120908, 1, 0x1f, 0xfff}, 116462306a36Sopenharmony_ci { 0x12090c, 1, 0x1f, 0x924}, 116562306a36Sopenharmony_ci { 0x120910, 7, 0x1c, 0x924}, 116662306a36Sopenharmony_ci { 0x120930, 9, 0x1c, 0x924}, 116762306a36Sopenharmony_ci { 0x12095c, 37, 0x18, 0x924}, 116862306a36Sopenharmony_ci { 0x120a00, 2, 0x7, 0x924}, 116962306a36Sopenharmony_ci { 0x120b00, 1, 0x18, 0x924}, 117062306a36Sopenharmony_ci { 0x122000, 2, 0x1f, 0x924}, 117162306a36Sopenharmony_ci { 0x122008, 2046, 0x1, 0x924}, 117262306a36Sopenharmony_ci { 0x128000, 6144, 0x1e, 0x924}, 117362306a36Sopenharmony_ci { 0x130000, 1, 0x1c, 0x1fff}, 117462306a36Sopenharmony_ci { 0x130004, 11, 0x1c, 0x924}, 117562306a36Sopenharmony_ci { 0x130030, 1, 0x1c, 0xfff}, 117662306a36Sopenharmony_ci { 0x130034, 6, 0x1c, 0x924}, 117762306a36Sopenharmony_ci { 0x13004c, 3, 0x1c, 0xfff}, 117862306a36Sopenharmony_ci { 0x130058, 3, 0x1c, 0x924}, 117962306a36Sopenharmony_ci { 0x130064, 2, 0x1c, 0xfff}, 118062306a36Sopenharmony_ci { 0x13006c, 8, 0x1c, 0x924}, 118162306a36Sopenharmony_ci { 0x13009c, 2, 0x1c, 0x1fff}, 118262306a36Sopenharmony_ci { 0x1300a8, 1, 0x1c, 0x1fff}, 118362306a36Sopenharmony_ci { 0x130100, 12, 0x1c, 0x924}, 118462306a36Sopenharmony_ci { 0x130130, 1, 0x1c, 0xfff}, 118562306a36Sopenharmony_ci { 0x130134, 14, 0x1c, 0x924}, 118662306a36Sopenharmony_ci { 0x13016c, 1, 0x1c, 0xfff}, 118762306a36Sopenharmony_ci { 0x130170, 1, 0x1c, 0x924}, 118862306a36Sopenharmony_ci { 0x130180, 1, 0x1c, 0x924}, 118962306a36Sopenharmony_ci { 0x130200, 1, 0x1c, 0x924}, 119062306a36Sopenharmony_ci { 0x130280, 1, 0x1c, 0x924}, 119162306a36Sopenharmony_ci { 0x130300, 1, 0x1c, 0xfff}, 119262306a36Sopenharmony_ci { 0x130304, 4, 0x1c, 0x924}, 119362306a36Sopenharmony_ci { 0x130380, 1, 0x1c, 0x924}, 119462306a36Sopenharmony_ci { 0x130400, 1, 0x1c, 0x924}, 119562306a36Sopenharmony_ci { 0x130480, 1, 0x1c, 0xfff}, 119662306a36Sopenharmony_ci { 0x130484, 4, 0x1c, 0x924}, 119762306a36Sopenharmony_ci { 0x130800, 72, 0x1c, 0x924}, 119862306a36Sopenharmony_ci { 0x131000, 136, 0x1c, 0x924}, 119962306a36Sopenharmony_ci { 0x132000, 148, 0x1c, 0x924}, 120062306a36Sopenharmony_ci { 0x134000, 544, 0x1c, 0x924}, 120162306a36Sopenharmony_ci { 0x140000, 1, 0x1f, 0x924}, 120262306a36Sopenharmony_ci { 0x140004, 9, 0xf, 0x924}, 120362306a36Sopenharmony_ci { 0x140028, 8, 0x1f, 0x924}, 120462306a36Sopenharmony_ci { 0x140048, 5, 0xf, 0x924}, 120562306a36Sopenharmony_ci { 0x14005c, 2, 0xf, 0xfff}, 120662306a36Sopenharmony_ci { 0x140064, 3, 0xf, 0x924}, 120762306a36Sopenharmony_ci { 0x140070, 1, 0x1f, 0x924}, 120862306a36Sopenharmony_ci { 0x140074, 10, 0xf, 0x924}, 120962306a36Sopenharmony_ci { 0x14009c, 1, 0x1f, 0x924}, 121062306a36Sopenharmony_ci { 0x1400a0, 5, 0xf, 0x924}, 121162306a36Sopenharmony_ci { 0x1400b4, 7, 0x1f, 0x924}, 121262306a36Sopenharmony_ci { 0x1400d0, 2, 0xf, 0xfff}, 121362306a36Sopenharmony_ci { 0x1400d8, 2, 0xf, 0x924}, 121462306a36Sopenharmony_ci { 0x1400e0, 1, 0xf, 0xfff}, 121562306a36Sopenharmony_ci { 0x1400e4, 5, 0xf, 0x924}, 121662306a36Sopenharmony_ci { 0x1400f8, 2, 0x1f, 0x924}, 121762306a36Sopenharmony_ci { 0x140100, 5, 0x3, 0x924}, 121862306a36Sopenharmony_ci { 0x140114, 5, 0xf, 0x924}, 121962306a36Sopenharmony_ci { 0x140128, 7, 0x1f, 0x924}, 122062306a36Sopenharmony_ci { 0x140144, 9, 0xf, 0x924}, 122162306a36Sopenharmony_ci { 0x140168, 8, 0x1f, 0x924}, 122262306a36Sopenharmony_ci { 0x140188, 3, 0xf, 0x924}, 122362306a36Sopenharmony_ci { 0x140194, 13, 0x1f, 0x924}, 122462306a36Sopenharmony_ci { 0x1401d8, 2, 0x1f, 0x1fff}, 122562306a36Sopenharmony_ci { 0x1401e4, 1, 0x1f, 0x1fff}, 122662306a36Sopenharmony_ci { 0x140200, 6, 0xf, 0xfff}, 122762306a36Sopenharmony_ci { 0x1402e0, 2, 0xc, 0x924}, 122862306a36Sopenharmony_ci { 0x1402e8, 2, 0x1c, 0x924}, 122962306a36Sopenharmony_ci { 0x1402f0, 9, 0xc, 0x924}, 123062306a36Sopenharmony_ci { 0x140314, 9, 0x10, 0x924}, 123162306a36Sopenharmony_ci { 0x140338, 7, 0x10, 0xfff}, 123262306a36Sopenharmony_ci { 0x140354, 7, 0x10, 0x924}, 123362306a36Sopenharmony_ci { 0x140370, 7, 0x10, 0xfff}, 123462306a36Sopenharmony_ci { 0x14038c, 14, 0x10, 0x924}, 123562306a36Sopenharmony_ci { 0x1404b0, 14, 0x10, 0x924}, 123662306a36Sopenharmony_ci { 0x15c000, 2, 0x1e, 0x924}, 123762306a36Sopenharmony_ci { 0x15c008, 5, 0x2, 0x924}, 123862306a36Sopenharmony_ci { 0x15c020, 8, 0x1c, 0x924}, 123962306a36Sopenharmony_ci { 0x15c040, 1, 0xc, 0x924}, 124062306a36Sopenharmony_ci { 0x15c044, 2, 0x1c, 0x924}, 124162306a36Sopenharmony_ci { 0x15c04c, 8, 0xc, 0x924}, 124262306a36Sopenharmony_ci { 0x15c06c, 8, 0x1c, 0x924}, 124362306a36Sopenharmony_ci { 0x15c090, 13, 0x1c, 0x924}, 124462306a36Sopenharmony_ci { 0x15c0c8, 24, 0x1c, 0x924}, 124562306a36Sopenharmony_ci { 0x15c128, 2, 0xc, 0x924}, 124662306a36Sopenharmony_ci { 0x15c130, 1, 0x1c, 0x924}, 124762306a36Sopenharmony_ci { 0x15c138, 6, 0x1c, 0x924}, 124862306a36Sopenharmony_ci { 0x15c150, 2, 0x18, 0x924}, 124962306a36Sopenharmony_ci { 0x15c158, 2, 0x8, 0x924}, 125062306a36Sopenharmony_ci { 0x15c160, 23, 0x10, 0x924}, 125162306a36Sopenharmony_ci { 0x15c1bc, 6, 0x10, 0xfff}, 125262306a36Sopenharmony_ci { 0x15c1d4, 23, 0x10, 0x924}, 125362306a36Sopenharmony_ci { 0x15c230, 7, 0x10, 0xfff}, 125462306a36Sopenharmony_ci { 0x15c24c, 90, 0x10, 0x924}, 125562306a36Sopenharmony_ci { 0x160004, 6, 0x18, 0x924}, 125662306a36Sopenharmony_ci { 0x16003c, 1, 0x10, 0x924}, 125762306a36Sopenharmony_ci { 0x160040, 6, 0x18, 0x924}, 125862306a36Sopenharmony_ci { 0x16005c, 6, 0x18, 0x924}, 125962306a36Sopenharmony_ci { 0x160074, 1, 0x10, 0x924}, 126062306a36Sopenharmony_ci { 0x160078, 2, 0x18, 0x924}, 126162306a36Sopenharmony_ci { 0x160300, 8, 0x18, 0x924}, 126262306a36Sopenharmony_ci { 0x160330, 6, 0x18, 0x924}, 126362306a36Sopenharmony_ci { 0x160404, 6, 0x18, 0x924}, 126462306a36Sopenharmony_ci { 0x16043c, 1, 0x10, 0x924}, 126562306a36Sopenharmony_ci { 0x160440, 6, 0x18, 0x924}, 126662306a36Sopenharmony_ci { 0x16045c, 6, 0x18, 0x924}, 126762306a36Sopenharmony_ci { 0x160474, 1, 0x10, 0x924}, 126862306a36Sopenharmony_ci { 0x160478, 2, 0x18, 0x924}, 126962306a36Sopenharmony_ci { 0x160700, 8, 0x18, 0x924}, 127062306a36Sopenharmony_ci { 0x160730, 6, 0x18, 0x924}, 127162306a36Sopenharmony_ci { 0x161000, 7, 0x1f, 0x924}, 127262306a36Sopenharmony_ci { 0x16102c, 2, 0x1f, 0x1fff}, 127362306a36Sopenharmony_ci { 0x161038, 1, 0x1f, 0x1fff}, 127462306a36Sopenharmony_ci { 0x16103c, 2, 0x1c, 0x924}, 127562306a36Sopenharmony_ci { 0x161800, 2, 0x1f, 0x924}, 127662306a36Sopenharmony_ci { 0x162000, 54, 0x18, 0x924}, 127762306a36Sopenharmony_ci { 0x162200, 60, 0x18, 0x924}, 127862306a36Sopenharmony_ci { 0x162400, 54, 0x18, 0x924}, 127962306a36Sopenharmony_ci { 0x162600, 60, 0x18, 0x924}, 128062306a36Sopenharmony_ci { 0x162800, 54, 0x18, 0x924}, 128162306a36Sopenharmony_ci { 0x162a00, 60, 0x18, 0x924}, 128262306a36Sopenharmony_ci { 0x162c00, 54, 0x18, 0x924}, 128362306a36Sopenharmony_ci { 0x162e00, 60, 0x18, 0x924}, 128462306a36Sopenharmony_ci { 0x163000, 1, 0x18, 0x924}, 128562306a36Sopenharmony_ci { 0x163008, 1, 0x18, 0x924}, 128662306a36Sopenharmony_ci { 0x163010, 1, 0x18, 0x924}, 128762306a36Sopenharmony_ci { 0x163018, 1, 0x18, 0x924}, 128862306a36Sopenharmony_ci { 0x163020, 5, 0x18, 0x924}, 128962306a36Sopenharmony_ci { 0x163038, 3, 0x18, 0x924}, 129062306a36Sopenharmony_ci { 0x163048, 3, 0x18, 0x924}, 129162306a36Sopenharmony_ci { 0x163058, 1, 0x18, 0x924}, 129262306a36Sopenharmony_ci { 0x163060, 1, 0x18, 0x924}, 129362306a36Sopenharmony_ci { 0x163068, 1, 0x18, 0x924}, 129462306a36Sopenharmony_ci { 0x163070, 3, 0x18, 0x924}, 129562306a36Sopenharmony_ci { 0x163080, 1, 0x18, 0x924}, 129662306a36Sopenharmony_ci { 0x163088, 3, 0x18, 0x924}, 129762306a36Sopenharmony_ci { 0x163098, 1, 0x18, 0x924}, 129862306a36Sopenharmony_ci { 0x1630a0, 1, 0x18, 0x924}, 129962306a36Sopenharmony_ci { 0x1630a8, 1, 0x18, 0x924}, 130062306a36Sopenharmony_ci { 0x1630b0, 2, 0x10, 0x924}, 130162306a36Sopenharmony_ci { 0x1630c0, 1, 0x18, 0x924}, 130262306a36Sopenharmony_ci { 0x1630c8, 1, 0x18, 0x924}, 130362306a36Sopenharmony_ci { 0x1630d0, 1, 0x18, 0x924}, 130462306a36Sopenharmony_ci { 0x1630d8, 1, 0x18, 0x924}, 130562306a36Sopenharmony_ci { 0x1630e0, 2, 0x18, 0x924}, 130662306a36Sopenharmony_ci { 0x163110, 1, 0x18, 0x924}, 130762306a36Sopenharmony_ci { 0x163120, 2, 0x18, 0x924}, 130862306a36Sopenharmony_ci { 0x163420, 4, 0x18, 0x924}, 130962306a36Sopenharmony_ci { 0x163438, 2, 0x18, 0x924}, 131062306a36Sopenharmony_ci { 0x163488, 2, 0x18, 0x924}, 131162306a36Sopenharmony_ci { 0x163520, 2, 0x18, 0x924}, 131262306a36Sopenharmony_ci { 0x163800, 1, 0x18, 0x924}, 131362306a36Sopenharmony_ci { 0x163808, 1, 0x18, 0x924}, 131462306a36Sopenharmony_ci { 0x163810, 1, 0x18, 0x924}, 131562306a36Sopenharmony_ci { 0x163818, 1, 0x18, 0x924}, 131662306a36Sopenharmony_ci { 0x163820, 5, 0x18, 0x924}, 131762306a36Sopenharmony_ci { 0x163838, 3, 0x18, 0x924}, 131862306a36Sopenharmony_ci { 0x163848, 3, 0x18, 0x924}, 131962306a36Sopenharmony_ci { 0x163858, 1, 0x18, 0x924}, 132062306a36Sopenharmony_ci { 0x163860, 1, 0x18, 0x924}, 132162306a36Sopenharmony_ci { 0x163868, 1, 0x18, 0x924}, 132262306a36Sopenharmony_ci { 0x163870, 3, 0x18, 0x924}, 132362306a36Sopenharmony_ci { 0x163880, 1, 0x18, 0x924}, 132462306a36Sopenharmony_ci { 0x163888, 3, 0x18, 0x924}, 132562306a36Sopenharmony_ci { 0x163898, 1, 0x18, 0x924}, 132662306a36Sopenharmony_ci { 0x1638a0, 1, 0x18, 0x924}, 132762306a36Sopenharmony_ci { 0x1638a8, 1, 0x18, 0x924}, 132862306a36Sopenharmony_ci { 0x1638b0, 2, 0x10, 0x924}, 132962306a36Sopenharmony_ci { 0x1638c0, 1, 0x18, 0x924}, 133062306a36Sopenharmony_ci { 0x1638c8, 1, 0x18, 0x924}, 133162306a36Sopenharmony_ci { 0x1638d0, 1, 0x18, 0x924}, 133262306a36Sopenharmony_ci { 0x1638d8, 1, 0x18, 0x924}, 133362306a36Sopenharmony_ci { 0x1638e0, 2, 0x18, 0x924}, 133462306a36Sopenharmony_ci { 0x163910, 1, 0x18, 0x924}, 133562306a36Sopenharmony_ci { 0x163920, 2, 0x18, 0x924}, 133662306a36Sopenharmony_ci { 0x163c20, 4, 0x18, 0x924}, 133762306a36Sopenharmony_ci { 0x163c38, 2, 0x18, 0x924}, 133862306a36Sopenharmony_ci { 0x163c88, 2, 0x18, 0x924}, 133962306a36Sopenharmony_ci { 0x163d20, 2, 0x18, 0x924}, 134062306a36Sopenharmony_ci { 0x164000, 5, 0x1f, 0x924}, 134162306a36Sopenharmony_ci { 0x164014, 2, 0x1f, 0xfff}, 134262306a36Sopenharmony_ci { 0x16401c, 53, 0x1f, 0x924}, 134362306a36Sopenharmony_ci { 0x164100, 2, 0x1f, 0x1fff}, 134462306a36Sopenharmony_ci { 0x16410c, 1, 0x1f, 0x1fff}, 134562306a36Sopenharmony_ci { 0x164110, 2, 0x1e, 0x924}, 134662306a36Sopenharmony_ci { 0x164118, 15, 0x1c, 0x924}, 134762306a36Sopenharmony_ci { 0x164200, 1, 0x1f, 0x924}, 134862306a36Sopenharmony_ci { 0x164208, 1, 0x1f, 0x924}, 134962306a36Sopenharmony_ci { 0x164210, 1, 0x1f, 0x924}, 135062306a36Sopenharmony_ci { 0x164218, 1, 0x1f, 0x924}, 135162306a36Sopenharmony_ci { 0x164220, 1, 0x1f, 0x924}, 135262306a36Sopenharmony_ci { 0x164228, 1, 0x1f, 0x924}, 135362306a36Sopenharmony_ci { 0x164230, 1, 0x1f, 0x924}, 135462306a36Sopenharmony_ci { 0x164238, 1, 0x1f, 0x924}, 135562306a36Sopenharmony_ci { 0x164240, 1, 0x1f, 0x924}, 135662306a36Sopenharmony_ci { 0x164248, 1, 0x1f, 0x924}, 135762306a36Sopenharmony_ci { 0x164250, 1, 0x1f, 0x924}, 135862306a36Sopenharmony_ci { 0x164258, 1, 0x1f, 0x924}, 135962306a36Sopenharmony_ci { 0x164260, 1, 0x1f, 0x924}, 136062306a36Sopenharmony_ci { 0x164270, 2, 0x1f, 0x924}, 136162306a36Sopenharmony_ci { 0x164280, 2, 0x1f, 0x924}, 136262306a36Sopenharmony_ci { 0x164800, 2, 0x1f, 0x924}, 136362306a36Sopenharmony_ci { 0x165000, 2, 0x1f, 0x924}, 136462306a36Sopenharmony_ci { 0x166000, 164, 0x1f, 0x924}, 136562306a36Sopenharmony_ci { 0x1662b0, 2, 0x1f, 0x1fff}, 136662306a36Sopenharmony_ci { 0x1662bc, 1, 0x1f, 0x1fff}, 136762306a36Sopenharmony_ci { 0x1662cc, 7, 0x1c, 0x924}, 136862306a36Sopenharmony_ci { 0x166400, 49, 0x1f, 0x924}, 136962306a36Sopenharmony_ci { 0x1664c8, 32, 0x1f, 0x924}, 137062306a36Sopenharmony_ci { 0x166548, 1, 0x1f, 0xfff}, 137162306a36Sopenharmony_ci { 0x16654c, 1, 0x1f, 0x924}, 137262306a36Sopenharmony_ci { 0x166550, 1, 0x1f, 0xfff}, 137362306a36Sopenharmony_ci { 0x166554, 1, 0x1f, 0x924}, 137462306a36Sopenharmony_ci { 0x166558, 1, 0x1f, 0xfff}, 137562306a36Sopenharmony_ci { 0x16655c, 1, 0x1f, 0x924}, 137662306a36Sopenharmony_ci { 0x166568, 2, 0x1f, 0x924}, 137762306a36Sopenharmony_ci { 0x166570, 5, 0x1c, 0x924}, 137862306a36Sopenharmony_ci { 0x166800, 1, 0x1f, 0x924}, 137962306a36Sopenharmony_ci { 0x168000, 1, 0x1f, 0xfff}, 138062306a36Sopenharmony_ci { 0x168004, 1, 0x1f, 0x924}, 138162306a36Sopenharmony_ci { 0x168008, 1, 0x1f, 0xfff}, 138262306a36Sopenharmony_ci { 0x16800c, 1, 0x1f, 0x924}, 138362306a36Sopenharmony_ci { 0x168010, 1, 0x1f, 0xfff}, 138462306a36Sopenharmony_ci { 0x168014, 1, 0x1f, 0x924}, 138562306a36Sopenharmony_ci { 0x168018, 1, 0x1f, 0xfff}, 138662306a36Sopenharmony_ci { 0x16801c, 3, 0x1f, 0x924}, 138762306a36Sopenharmony_ci { 0x168028, 2, 0x1f, 0xfff}, 138862306a36Sopenharmony_ci { 0x168030, 10, 0x1f, 0x924}, 138962306a36Sopenharmony_ci { 0x168058, 9, 0x1f, 0xfff}, 139062306a36Sopenharmony_ci { 0x16807c, 106, 0x1f, 0x924}, 139162306a36Sopenharmony_ci { 0x168224, 2, 0x3, 0x924}, 139262306a36Sopenharmony_ci { 0x16822c, 3, 0x1f, 0x924}, 139362306a36Sopenharmony_ci { 0x168238, 1, 0x1f, 0xfff}, 139462306a36Sopenharmony_ci { 0x16823c, 25, 0x1f, 0x924}, 139562306a36Sopenharmony_ci { 0x1682a0, 12, 0x3, 0x924}, 139662306a36Sopenharmony_ci { 0x1682d0, 7, 0x1f, 0xfff}, 139762306a36Sopenharmony_ci { 0x1682ec, 5, 0x1f, 0x924}, 139862306a36Sopenharmony_ci { 0x168300, 2, 0x3, 0xfff}, 139962306a36Sopenharmony_ci { 0x168308, 65, 0x1f, 0xfff}, 140062306a36Sopenharmony_ci { 0x16840c, 1, 0x1f, 0x924}, 140162306a36Sopenharmony_ci { 0x168410, 2, 0x1f, 0xfff}, 140262306a36Sopenharmony_ci { 0x168418, 2, 0x3, 0x924}, 140362306a36Sopenharmony_ci { 0x168420, 6, 0x1f, 0x924}, 140462306a36Sopenharmony_ci { 0x168448, 2, 0x1f, 0x1fff}, 140562306a36Sopenharmony_ci { 0x168454, 1, 0x1f, 0x1fff}, 140662306a36Sopenharmony_ci { 0x168800, 19, 0x1f, 0x924}, 140762306a36Sopenharmony_ci { 0x168900, 1, 0x1f, 0x924}, 140862306a36Sopenharmony_ci { 0x168a00, 128, 0x1f, 0xfff}, 140962306a36Sopenharmony_ci { 0x16a000, 1536, 0x1f, 0x924}, 141062306a36Sopenharmony_ci { 0x16c000, 1536, 0x1f, 0x924}, 141162306a36Sopenharmony_ci { 0x16e000, 16, 0x2, 0x924}, 141262306a36Sopenharmony_ci { 0x16e040, 8, 0x1c, 0x924}, 141362306a36Sopenharmony_ci { 0x16e100, 1, 0x2, 0x924}, 141462306a36Sopenharmony_ci { 0x16e200, 2, 0x2, 0xfff}, 141562306a36Sopenharmony_ci { 0x16e400, 1, 0x2, 0x924}, 141662306a36Sopenharmony_ci { 0x16e404, 2, 0x2, 0xfff}, 141762306a36Sopenharmony_ci { 0x16e40c, 94, 0x2, 0x924}, 141862306a36Sopenharmony_ci { 0x16e584, 64, 0x2, 0xfff}, 141962306a36Sopenharmony_ci { 0x16e684, 2, 0x1e, 0xfff}, 142062306a36Sopenharmony_ci { 0x16e68c, 4, 0x2, 0xfff}, 142162306a36Sopenharmony_ci { 0x16e69c, 8, 0x2, 0x924}, 142262306a36Sopenharmony_ci { 0x16e6bc, 4, 0x1e, 0x924}, 142362306a36Sopenharmony_ci { 0x16e6cc, 4, 0x2, 0x924}, 142462306a36Sopenharmony_ci { 0x16e6e0, 2, 0x1c, 0x924}, 142562306a36Sopenharmony_ci { 0x16e6e8, 5, 0xc, 0x924}, 142662306a36Sopenharmony_ci { 0x16e6fc, 4, 0x1c, 0xfff}, 142762306a36Sopenharmony_ci { 0x16e70c, 1, 0x1c, 0x924}, 142862306a36Sopenharmony_ci { 0x16e768, 17, 0x1c, 0x924}, 142962306a36Sopenharmony_ci { 0x16e7ac, 12, 0x10, 0xfff}, 143062306a36Sopenharmony_ci { 0x170000, 24, 0x1f, 0x924}, 143162306a36Sopenharmony_ci { 0x170060, 4, 0x3, 0x924}, 143262306a36Sopenharmony_ci { 0x170070, 13, 0x1f, 0x924}, 143362306a36Sopenharmony_ci { 0x1700a4, 1, 0x1f, 0xfff}, 143462306a36Sopenharmony_ci { 0x1700a8, 1, 0x1f, 0x924}, 143562306a36Sopenharmony_ci { 0x1700ac, 2, 0x1f, 0xfff}, 143662306a36Sopenharmony_ci { 0x1700b4, 3, 0x1f, 0x924}, 143762306a36Sopenharmony_ci { 0x1700c0, 1, 0x1f, 0xfff}, 143862306a36Sopenharmony_ci { 0x1700c4, 44, 0x1f, 0x924}, 143962306a36Sopenharmony_ci { 0x170184, 2, 0x1f, 0x1fff}, 144062306a36Sopenharmony_ci { 0x170190, 1, 0x1f, 0x1fff}, 144162306a36Sopenharmony_ci { 0x170194, 11, 0x1c, 0x924}, 144262306a36Sopenharmony_ci { 0x1701c4, 1, 0x1c, 0x924}, 144362306a36Sopenharmony_ci { 0x1701cc, 7, 0x1c, 0x924}, 144462306a36Sopenharmony_ci { 0x1701e8, 1, 0x18, 0x924}, 144562306a36Sopenharmony_ci { 0x1701ec, 1, 0x1c, 0x924}, 144662306a36Sopenharmony_ci { 0x1701f4, 1, 0x1c, 0x924}, 144762306a36Sopenharmony_ci { 0x170200, 4, 0x1f, 0x924}, 144862306a36Sopenharmony_ci { 0x170214, 1, 0x1f, 0x924}, 144962306a36Sopenharmony_ci { 0x170218, 77, 0x1c, 0x924}, 145062306a36Sopenharmony_ci { 0x170400, 64, 0x1c, 0x924}, 145162306a36Sopenharmony_ci { 0x178000, 1, 0x1f, 0x924}, 145262306a36Sopenharmony_ci { 0x180000, 61, 0x1f, 0x924}, 145362306a36Sopenharmony_ci { 0x180114, 2, 0x1f, 0x1fff}, 145462306a36Sopenharmony_ci { 0x180120, 3, 0x1f, 0x1fff}, 145562306a36Sopenharmony_ci { 0x180130, 1, 0x1f, 0x1fff}, 145662306a36Sopenharmony_ci { 0x18013c, 2, 0x1e, 0x924}, 145762306a36Sopenharmony_ci { 0x180200, 27, 0x1f, 0x924}, 145862306a36Sopenharmony_ci { 0x18026c, 1, 0x1f, 0xfff}, 145962306a36Sopenharmony_ci { 0x180270, 12, 0x1f, 0x924}, 146062306a36Sopenharmony_ci { 0x1802a0, 1, 0x1f, 0xfff}, 146162306a36Sopenharmony_ci { 0x1802a4, 17, 0x1f, 0x924}, 146262306a36Sopenharmony_ci { 0x180340, 4, 0x1f, 0x924}, 146362306a36Sopenharmony_ci { 0x180380, 1, 0x1c, 0x924}, 146462306a36Sopenharmony_ci { 0x180388, 1, 0x1c, 0x924}, 146562306a36Sopenharmony_ci { 0x180390, 1, 0x1c, 0x924}, 146662306a36Sopenharmony_ci { 0x180398, 1, 0x1c, 0x924}, 146762306a36Sopenharmony_ci { 0x1803a0, 5, 0x1c, 0x924}, 146862306a36Sopenharmony_ci { 0x1803b4, 2, 0x18, 0x924}, 146962306a36Sopenharmony_ci { 0x181000, 4, 0x1f, 0x93c}, 147062306a36Sopenharmony_ci { 0x181010, 1020, 0x1f, 0x38}, 147162306a36Sopenharmony_ci { 0x182000, 4, 0x18, 0x924}, 147262306a36Sopenharmony_ci { 0x1a0000, 1, 0x1f, 0x92c}, 147362306a36Sopenharmony_ci { 0x1a0004, 5631, 0x1f, 0x8}, 147462306a36Sopenharmony_ci { 0x1a5800, 2560, 0x1e, 0x8}, 147562306a36Sopenharmony_ci { 0x1a8000, 1, 0x1f, 0x92c}, 147662306a36Sopenharmony_ci { 0x1a8004, 8191, 0x1e, 0x8}, 147762306a36Sopenharmony_ci { 0x1b0000, 1, 0x1f, 0x92c}, 147862306a36Sopenharmony_ci { 0x1b0004, 15, 0x2, 0x8}, 147962306a36Sopenharmony_ci { 0x1b0040, 1, 0x1e, 0x92c}, 148062306a36Sopenharmony_ci { 0x1b0044, 239, 0x2, 0x8}, 148162306a36Sopenharmony_ci { 0x1b0400, 1, 0x1f, 0x92c}, 148262306a36Sopenharmony_ci { 0x1b0404, 255, 0x2, 0x8}, 148362306a36Sopenharmony_ci { 0x1b0800, 1, 0x1f, 0x924}, 148462306a36Sopenharmony_ci { 0x1b0840, 1, 0x1e, 0x924}, 148562306a36Sopenharmony_ci { 0x1b0c00, 1, 0x1f, 0x1fff}, 148662306a36Sopenharmony_ci { 0x1b1000, 1, 0x1f, 0x1fff}, 148762306a36Sopenharmony_ci { 0x1b1040, 1, 0x1e, 0x1fff}, 148862306a36Sopenharmony_ci { 0x1b1400, 1, 0x1f, 0x924}, 148962306a36Sopenharmony_ci { 0x1b1440, 1, 0x1e, 0x924}, 149062306a36Sopenharmony_ci { 0x1b1480, 1, 0x1e, 0x924}, 149162306a36Sopenharmony_ci { 0x1b14c0, 1, 0x1e, 0x924}, 149262306a36Sopenharmony_ci { 0x1b1800, 128, 0x1f, 0x10}, 149362306a36Sopenharmony_ci { 0x1b1c00, 128, 0x1f, 0x10}, 149462306a36Sopenharmony_ci { 0x1b2000, 1, 0x1f, 0xdb6}, 149562306a36Sopenharmony_ci { 0x1b2400, 1, 0x1e, 0x92c}, 149662306a36Sopenharmony_ci { 0x1b2404, 5631, 0x1c, 0x8}, 149762306a36Sopenharmony_ci { 0x1b8000, 1, 0x1f, 0xfff}, 149862306a36Sopenharmony_ci { 0x1b8040, 1, 0x1f, 0xfff}, 149962306a36Sopenharmony_ci { 0x1b8080, 1, 0x1f, 0xfff}, 150062306a36Sopenharmony_ci { 0x1b80c0, 1, 0x1f, 0xfff}, 150162306a36Sopenharmony_ci { 0x1b8100, 1, 0x1f, 0x924}, 150262306a36Sopenharmony_ci { 0x1b8140, 1, 0x1f, 0x924}, 150362306a36Sopenharmony_ci { 0x1b8180, 1, 0x1f, 0x924}, 150462306a36Sopenharmony_ci { 0x1b81c0, 1, 0x1f, 0x924}, 150562306a36Sopenharmony_ci { 0x1b8200, 1, 0x1f, 0x924}, 150662306a36Sopenharmony_ci { 0x1b8240, 1, 0x1f, 0x924}, 150762306a36Sopenharmony_ci { 0x1b8280, 1, 0x1f, 0x924}, 150862306a36Sopenharmony_ci { 0x1b82c0, 1, 0x1f, 0x924}, 150962306a36Sopenharmony_ci { 0x1b8300, 1, 0x1f, 0x924}, 151062306a36Sopenharmony_ci { 0x1b8340, 1, 0x1f, 0x924}, 151162306a36Sopenharmony_ci { 0x1b8380, 1, 0x1f, 0x924}, 151262306a36Sopenharmony_ci { 0x1b83c0, 1, 0x1f, 0x924}, 151362306a36Sopenharmony_ci { 0x1b8400, 1, 0x1f, 0x924}, 151462306a36Sopenharmony_ci { 0x1b8440, 1, 0x1f, 0x924}, 151562306a36Sopenharmony_ci { 0x1b8480, 1, 0x1f, 0x924}, 151662306a36Sopenharmony_ci { 0x1b84c0, 1, 0x1f, 0x924}, 151762306a36Sopenharmony_ci { 0x1b8500, 1, 0x1f, 0x924}, 151862306a36Sopenharmony_ci { 0x1b8540, 1, 0x1f, 0x924}, 151962306a36Sopenharmony_ci { 0x1b8580, 1, 0x1f, 0x924}, 152062306a36Sopenharmony_ci { 0x1b85c0, 19, 0x1c, 0x924}, 152162306a36Sopenharmony_ci { 0x1b8800, 1, 0x1f, 0x924}, 152262306a36Sopenharmony_ci { 0x1b8840, 1, 0x1f, 0x924}, 152362306a36Sopenharmony_ci { 0x1b8880, 1, 0x1f, 0x924}, 152462306a36Sopenharmony_ci { 0x1b88c0, 1, 0x1f, 0x924}, 152562306a36Sopenharmony_ci { 0x1b8900, 1, 0x1f, 0x924}, 152662306a36Sopenharmony_ci { 0x1b8940, 1, 0x1f, 0x924}, 152762306a36Sopenharmony_ci { 0x1b8980, 1, 0x1f, 0x924}, 152862306a36Sopenharmony_ci { 0x1b89c0, 1, 0x1f, 0x924}, 152962306a36Sopenharmony_ci { 0x1b8a00, 1, 0x1f, 0x934}, 153062306a36Sopenharmony_ci { 0x1b8a40, 1, 0x1f, 0x924}, 153162306a36Sopenharmony_ci { 0x1b8a80, 1, 0x1f, 0x492}, 153262306a36Sopenharmony_ci { 0x1b8ac0, 1, 0x1f, 0x924}, 153362306a36Sopenharmony_ci { 0x1b8b00, 1, 0x1f, 0x924}, 153462306a36Sopenharmony_ci { 0x1b8b40, 1, 0x1f, 0x924}, 153562306a36Sopenharmony_ci { 0x1b8b80, 1, 0x1f, 0x924}, 153662306a36Sopenharmony_ci { 0x1b8bc0, 1, 0x1f, 0x924}, 153762306a36Sopenharmony_ci { 0x1b8c00, 1, 0x1f, 0x924}, 153862306a36Sopenharmony_ci { 0x1b8c40, 1, 0x1f, 0x924}, 153962306a36Sopenharmony_ci { 0x1b8c80, 1, 0x1f, 0x924}, 154062306a36Sopenharmony_ci { 0x1b8cc0, 1, 0x1f, 0x924}, 154162306a36Sopenharmony_ci { 0x1b8cc4, 1, 0x1c, 0x924}, 154262306a36Sopenharmony_ci { 0x1b8d00, 1, 0x1f, 0x924}, 154362306a36Sopenharmony_ci { 0x1b8d40, 1, 0x1f, 0x924}, 154462306a36Sopenharmony_ci { 0x1b8d80, 1, 0x1f, 0x924}, 154562306a36Sopenharmony_ci { 0x1b8dc0, 1, 0x1f, 0x924}, 154662306a36Sopenharmony_ci { 0x1b8e00, 1, 0x1f, 0x924}, 154762306a36Sopenharmony_ci { 0x1b8e40, 1, 0x1f, 0x924}, 154862306a36Sopenharmony_ci { 0x1b8e80, 1, 0x1f, 0x924}, 154962306a36Sopenharmony_ci { 0x1b8e84, 1, 0x1c, 0x924}, 155062306a36Sopenharmony_ci { 0x1b8ec0, 1, 0x1e, 0x924}, 155162306a36Sopenharmony_ci { 0x1b8f00, 1, 0x1e, 0x924}, 155262306a36Sopenharmony_ci { 0x1b8f40, 1, 0x1e, 0x924}, 155362306a36Sopenharmony_ci { 0x1b8f80, 1, 0x1e, 0x924}, 155462306a36Sopenharmony_ci { 0x1b8fc0, 1, 0x1e, 0x924}, 155562306a36Sopenharmony_ci { 0x1b8fd4, 5, 0x1c, 0x924}, 155662306a36Sopenharmony_ci { 0x1b8fe8, 2, 0x18, 0x924}, 155762306a36Sopenharmony_ci { 0x1b9000, 1, 0x1c, 0x924}, 155862306a36Sopenharmony_ci { 0x1b9040, 3, 0x1c, 0x924}, 155962306a36Sopenharmony_ci { 0x1b905c, 1, 0x18, 0x924}, 156062306a36Sopenharmony_ci { 0x1b9064, 1, 0x10, 0x924}, 156162306a36Sopenharmony_ci { 0x1b9080, 10, 0x10, 0x924}, 156262306a36Sopenharmony_ci { 0x1c0000, 2, 0x1f, 0x924}, 156362306a36Sopenharmony_ci { 0x200000, 65, 0x1f, 0x924}, 156462306a36Sopenharmony_ci { 0x200124, 2, 0x1f, 0x1fff}, 156562306a36Sopenharmony_ci { 0x200130, 3, 0x1f, 0x1fff}, 156662306a36Sopenharmony_ci { 0x200140, 1, 0x1f, 0x1fff}, 156762306a36Sopenharmony_ci { 0x20014c, 2, 0x1e, 0x924}, 156862306a36Sopenharmony_ci { 0x200200, 27, 0x1f, 0x924}, 156962306a36Sopenharmony_ci { 0x20026c, 1, 0x1f, 0xfff}, 157062306a36Sopenharmony_ci { 0x200270, 12, 0x1f, 0x924}, 157162306a36Sopenharmony_ci { 0x2002a0, 1, 0x1f, 0xfff}, 157262306a36Sopenharmony_ci { 0x2002a4, 17, 0x1f, 0x924}, 157362306a36Sopenharmony_ci { 0x200340, 4, 0x1f, 0x924}, 157462306a36Sopenharmony_ci { 0x200380, 1, 0x1c, 0x924}, 157562306a36Sopenharmony_ci { 0x200388, 1, 0x1c, 0x924}, 157662306a36Sopenharmony_ci { 0x200390, 1, 0x1c, 0x924}, 157762306a36Sopenharmony_ci { 0x200398, 1, 0x1c, 0x924}, 157862306a36Sopenharmony_ci { 0x2003a0, 1, 0x1c, 0x924}, 157962306a36Sopenharmony_ci { 0x2003a8, 2, 0x1c, 0x924}, 158062306a36Sopenharmony_ci { 0x202000, 4, 0x1f, 0x1927}, 158162306a36Sopenharmony_ci { 0x202010, 2044, 0x1f, 0x1007}, 158262306a36Sopenharmony_ci { 0x204000, 4, 0x18, 0x924}, 158362306a36Sopenharmony_ci { 0x220000, 1, 0x1f, 0x925}, 158462306a36Sopenharmony_ci { 0x220004, 5631, 0x1f, 0x1}, 158562306a36Sopenharmony_ci { 0x225800, 2560, 0x1e, 0x1}, 158662306a36Sopenharmony_ci { 0x228000, 1, 0x1f, 0x925}, 158762306a36Sopenharmony_ci { 0x228004, 8191, 0x1e, 0x1}, 158862306a36Sopenharmony_ci { 0x230000, 1, 0x1f, 0x925}, 158962306a36Sopenharmony_ci { 0x230004, 15, 0x2, 0x1}, 159062306a36Sopenharmony_ci { 0x230040, 1, 0x1e, 0x925}, 159162306a36Sopenharmony_ci { 0x230044, 239, 0x2, 0x1}, 159262306a36Sopenharmony_ci { 0x230400, 1, 0x1f, 0x925}, 159362306a36Sopenharmony_ci { 0x230404, 255, 0x2, 0x1}, 159462306a36Sopenharmony_ci { 0x230800, 1, 0x1f, 0x924}, 159562306a36Sopenharmony_ci { 0x230840, 1, 0x1e, 0x924}, 159662306a36Sopenharmony_ci { 0x230c00, 1, 0x1f, 0x924}, 159762306a36Sopenharmony_ci { 0x231000, 1, 0x1f, 0x924}, 159862306a36Sopenharmony_ci { 0x231040, 1, 0x1e, 0x924}, 159962306a36Sopenharmony_ci { 0x231400, 1, 0x1f, 0x924}, 160062306a36Sopenharmony_ci { 0x231440, 1, 0x1e, 0x924}, 160162306a36Sopenharmony_ci { 0x231480, 1, 0x1e, 0x924}, 160262306a36Sopenharmony_ci { 0x2314c0, 1, 0x1e, 0x924}, 160362306a36Sopenharmony_ci { 0x231800, 128, 0x1f, 0x2}, 160462306a36Sopenharmony_ci { 0x231c00, 128, 0x1f, 0x2}, 160562306a36Sopenharmony_ci { 0x232000, 1, 0x1f, 0xdb6}, 160662306a36Sopenharmony_ci { 0x232400, 1, 0x1e, 0x925}, 160762306a36Sopenharmony_ci { 0x232404, 5631, 0x1c, 0x1}, 160862306a36Sopenharmony_ci { 0x238000, 1, 0x1f, 0xfff}, 160962306a36Sopenharmony_ci { 0x238040, 1, 0x1f, 0xfff}, 161062306a36Sopenharmony_ci { 0x238080, 1, 0x1f, 0xfff}, 161162306a36Sopenharmony_ci { 0x2380c0, 1, 0x1f, 0xfff}, 161262306a36Sopenharmony_ci { 0x238100, 1, 0x1f, 0x924}, 161362306a36Sopenharmony_ci { 0x238140, 1, 0x1f, 0x924}, 161462306a36Sopenharmony_ci { 0x238180, 1, 0x1f, 0x924}, 161562306a36Sopenharmony_ci { 0x2381c0, 1, 0x1f, 0x924}, 161662306a36Sopenharmony_ci { 0x238200, 1, 0x1f, 0x924}, 161762306a36Sopenharmony_ci { 0x238240, 1, 0x1f, 0x924}, 161862306a36Sopenharmony_ci { 0x238280, 1, 0x1f, 0x924}, 161962306a36Sopenharmony_ci { 0x2382c0, 1, 0x1f, 0x924}, 162062306a36Sopenharmony_ci { 0x238300, 1, 0x1f, 0x924}, 162162306a36Sopenharmony_ci { 0x238340, 1, 0x1f, 0x924}, 162262306a36Sopenharmony_ci { 0x238380, 1, 0x1f, 0x924}, 162362306a36Sopenharmony_ci { 0x2383c0, 1, 0x1f, 0x924}, 162462306a36Sopenharmony_ci { 0x238400, 1, 0x1f, 0x924}, 162562306a36Sopenharmony_ci { 0x238440, 1, 0x1f, 0x924}, 162662306a36Sopenharmony_ci { 0x238480, 1, 0x1f, 0x924}, 162762306a36Sopenharmony_ci { 0x2384c0, 1, 0x1f, 0x924}, 162862306a36Sopenharmony_ci { 0x238500, 1, 0x1f, 0x924}, 162962306a36Sopenharmony_ci { 0x238540, 1, 0x1f, 0x924}, 163062306a36Sopenharmony_ci { 0x238580, 1, 0x1f, 0x924}, 163162306a36Sopenharmony_ci { 0x2385c0, 19, 0x1c, 0x924}, 163262306a36Sopenharmony_ci { 0x238800, 1, 0x1f, 0x924}, 163362306a36Sopenharmony_ci { 0x238840, 1, 0x1f, 0x924}, 163462306a36Sopenharmony_ci { 0x238880, 1, 0x1f, 0x924}, 163562306a36Sopenharmony_ci { 0x2388c0, 1, 0x1f, 0x924}, 163662306a36Sopenharmony_ci { 0x238900, 1, 0x1f, 0x924}, 163762306a36Sopenharmony_ci { 0x238940, 1, 0x1f, 0x924}, 163862306a36Sopenharmony_ci { 0x238980, 1, 0x1f, 0x924}, 163962306a36Sopenharmony_ci { 0x2389c0, 1, 0x1f, 0x924}, 164062306a36Sopenharmony_ci { 0x238a00, 1, 0x1f, 0x926}, 164162306a36Sopenharmony_ci { 0x238a40, 1, 0x1f, 0x924}, 164262306a36Sopenharmony_ci { 0x238a80, 1, 0x1f, 0x492}, 164362306a36Sopenharmony_ci { 0x238ac0, 1, 0x1f, 0x924}, 164462306a36Sopenharmony_ci { 0x238b00, 1, 0x1f, 0x924}, 164562306a36Sopenharmony_ci { 0x238b40, 1, 0x1f, 0x924}, 164662306a36Sopenharmony_ci { 0x238b80, 1, 0x1f, 0x924}, 164762306a36Sopenharmony_ci { 0x238bc0, 1, 0x1f, 0x924}, 164862306a36Sopenharmony_ci { 0x238c00, 1, 0x1f, 0x924}, 164962306a36Sopenharmony_ci { 0x238c40, 1, 0x1f, 0x924}, 165062306a36Sopenharmony_ci { 0x238c80, 1, 0x1f, 0x924}, 165162306a36Sopenharmony_ci { 0x238cc0, 1, 0x1f, 0x924}, 165262306a36Sopenharmony_ci { 0x238cc4, 1, 0x1c, 0x924}, 165362306a36Sopenharmony_ci { 0x238d00, 1, 0x1f, 0x924}, 165462306a36Sopenharmony_ci { 0x238d40, 1, 0x1f, 0x924}, 165562306a36Sopenharmony_ci { 0x238d80, 1, 0x1f, 0x924}, 165662306a36Sopenharmony_ci { 0x238dc0, 1, 0x1f, 0x924}, 165762306a36Sopenharmony_ci { 0x238e00, 1, 0x1f, 0x924}, 165862306a36Sopenharmony_ci { 0x238e40, 1, 0x1f, 0x924}, 165962306a36Sopenharmony_ci { 0x238e80, 1, 0x1f, 0x924}, 166062306a36Sopenharmony_ci { 0x238e84, 1, 0x1c, 0x924}, 166162306a36Sopenharmony_ci { 0x238ec0, 1, 0x1e, 0x924}, 166262306a36Sopenharmony_ci { 0x238f00, 1, 0x1e, 0x924}, 166362306a36Sopenharmony_ci { 0x238f40, 1, 0x1e, 0x924}, 166462306a36Sopenharmony_ci { 0x238f80, 1, 0x1e, 0x924}, 166562306a36Sopenharmony_ci { 0x238fc0, 1, 0x1e, 0x924}, 166662306a36Sopenharmony_ci { 0x238fd4, 5, 0x1c, 0x924}, 166762306a36Sopenharmony_ci { 0x238fe8, 2, 0x18, 0x924}, 166862306a36Sopenharmony_ci { 0x239000, 1, 0x1c, 0x924}, 166962306a36Sopenharmony_ci { 0x239040, 3, 0x1c, 0x924}, 167062306a36Sopenharmony_ci { 0x23905c, 1, 0x18, 0x924}, 167162306a36Sopenharmony_ci { 0x239064, 1, 0x10, 0x924}, 167262306a36Sopenharmony_ci { 0x239080, 10, 0x10, 0x924}, 167362306a36Sopenharmony_ci { 0x240000, 2, 0x1f, 0x924}, 167462306a36Sopenharmony_ci { 0x280000, 65, 0x1f, 0x924}, 167562306a36Sopenharmony_ci { 0x280124, 2, 0x1f, 0x1fff}, 167662306a36Sopenharmony_ci { 0x280130, 3, 0x1f, 0x1fff}, 167762306a36Sopenharmony_ci { 0x280140, 1, 0x1f, 0x1fff}, 167862306a36Sopenharmony_ci { 0x28014c, 2, 0x1e, 0x924}, 167962306a36Sopenharmony_ci { 0x280200, 27, 0x1f, 0x924}, 168062306a36Sopenharmony_ci { 0x28026c, 1, 0x1f, 0xfff}, 168162306a36Sopenharmony_ci { 0x280270, 12, 0x1f, 0x924}, 168262306a36Sopenharmony_ci { 0x2802a0, 1, 0x1f, 0xfff}, 168362306a36Sopenharmony_ci { 0x2802a4, 17, 0x1f, 0x924}, 168462306a36Sopenharmony_ci { 0x280340, 4, 0x1f, 0x924}, 168562306a36Sopenharmony_ci { 0x280380, 1, 0x1c, 0x924}, 168662306a36Sopenharmony_ci { 0x280388, 1, 0x1c, 0x924}, 168762306a36Sopenharmony_ci { 0x280390, 1, 0x1c, 0x924}, 168862306a36Sopenharmony_ci { 0x280398, 1, 0x1c, 0x924}, 168962306a36Sopenharmony_ci { 0x2803a0, 1, 0x1c, 0x924}, 169062306a36Sopenharmony_ci { 0x2803a8, 2, 0x1c, 0x924}, 169162306a36Sopenharmony_ci { 0x282000, 4, 0x1f, 0x9e4}, 169262306a36Sopenharmony_ci { 0x282010, 2044, 0x1f, 0x1c0}, 169362306a36Sopenharmony_ci { 0x284000, 4, 0x18, 0x924}, 169462306a36Sopenharmony_ci { 0x2a0000, 1, 0x1f, 0x964}, 169562306a36Sopenharmony_ci { 0x2a0004, 5631, 0x1f, 0x40}, 169662306a36Sopenharmony_ci { 0x2a5800, 2560, 0x1e, 0x40}, 169762306a36Sopenharmony_ci { 0x2a8000, 1, 0x1f, 0x964}, 169862306a36Sopenharmony_ci { 0x2a8004, 8191, 0x1e, 0x40}, 169962306a36Sopenharmony_ci { 0x2b0000, 1, 0x1f, 0x964}, 170062306a36Sopenharmony_ci { 0x2b0004, 15, 0x2, 0x40}, 170162306a36Sopenharmony_ci { 0x2b0040, 1, 0x1e, 0x964}, 170262306a36Sopenharmony_ci { 0x2b0044, 239, 0x2, 0x40}, 170362306a36Sopenharmony_ci { 0x2b0400, 1, 0x1f, 0x964}, 170462306a36Sopenharmony_ci { 0x2b0404, 255, 0x2, 0x40}, 170562306a36Sopenharmony_ci { 0x2b0800, 1, 0x1f, 0x924}, 170662306a36Sopenharmony_ci { 0x2b0840, 1, 0x1e, 0x924}, 170762306a36Sopenharmony_ci { 0x2b0c00, 1, 0x1f, 0x924}, 170862306a36Sopenharmony_ci { 0x2b1000, 1, 0x1f, 0x924}, 170962306a36Sopenharmony_ci { 0x2b1040, 1, 0x1e, 0x924}, 171062306a36Sopenharmony_ci { 0x2b1400, 1, 0x1f, 0x924}, 171162306a36Sopenharmony_ci { 0x2b1440, 1, 0x1e, 0x924}, 171262306a36Sopenharmony_ci { 0x2b1480, 1, 0x1e, 0x924}, 171362306a36Sopenharmony_ci { 0x2b14c0, 1, 0x1e, 0x924}, 171462306a36Sopenharmony_ci { 0x2b1800, 128, 0x1f, 0x80}, 171562306a36Sopenharmony_ci { 0x2b1c00, 128, 0x1f, 0x80}, 171662306a36Sopenharmony_ci { 0x2b2000, 1, 0x1f, 0xdb6}, 171762306a36Sopenharmony_ci { 0x2b2400, 1, 0x1e, 0x964}, 171862306a36Sopenharmony_ci { 0x2b2404, 5631, 0x1c, 0x40}, 171962306a36Sopenharmony_ci { 0x2b8000, 1, 0x1f, 0xfff}, 172062306a36Sopenharmony_ci { 0x2b8040, 1, 0x1f, 0xfff}, 172162306a36Sopenharmony_ci { 0x2b8080, 1, 0x1f, 0xfff}, 172262306a36Sopenharmony_ci { 0x2b80c0, 1, 0x1f, 0x924}, 172362306a36Sopenharmony_ci { 0x2b8100, 1, 0x1f, 0x924}, 172462306a36Sopenharmony_ci { 0x2b8140, 1, 0x1f, 0x924}, 172562306a36Sopenharmony_ci { 0x2b8180, 1, 0x1f, 0x924}, 172662306a36Sopenharmony_ci { 0x2b81c0, 1, 0x1f, 0x924}, 172762306a36Sopenharmony_ci { 0x2b8200, 1, 0x1f, 0x924}, 172862306a36Sopenharmony_ci { 0x2b8240, 1, 0x1f, 0x924}, 172962306a36Sopenharmony_ci { 0x2b8280, 1, 0x1f, 0x924}, 173062306a36Sopenharmony_ci { 0x2b82c0, 1, 0x1f, 0x924}, 173162306a36Sopenharmony_ci { 0x2b8300, 1, 0x1f, 0x924}, 173262306a36Sopenharmony_ci { 0x2b8340, 1, 0x1f, 0x924}, 173362306a36Sopenharmony_ci { 0x2b8380, 1, 0x1f, 0x924}, 173462306a36Sopenharmony_ci { 0x2b83c0, 1, 0x1f, 0x924}, 173562306a36Sopenharmony_ci { 0x2b8400, 1, 0x1f, 0x924}, 173662306a36Sopenharmony_ci { 0x2b8440, 1, 0x1f, 0x924}, 173762306a36Sopenharmony_ci { 0x2b8480, 1, 0x1f, 0x924}, 173862306a36Sopenharmony_ci { 0x2b84c0, 1, 0x1f, 0x924}, 173962306a36Sopenharmony_ci { 0x2b8500, 1, 0x1f, 0x924}, 174062306a36Sopenharmony_ci { 0x2b8540, 1, 0x1f, 0x924}, 174162306a36Sopenharmony_ci { 0x2b8580, 1, 0x1f, 0x924}, 174262306a36Sopenharmony_ci { 0x2b85c0, 19, 0x1c, 0x924}, 174362306a36Sopenharmony_ci { 0x2b8800, 1, 0x1f, 0x924}, 174462306a36Sopenharmony_ci { 0x2b8840, 1, 0x1f, 0x924}, 174562306a36Sopenharmony_ci { 0x2b8880, 1, 0x1f, 0x924}, 174662306a36Sopenharmony_ci { 0x2b88c0, 1, 0x1f, 0x924}, 174762306a36Sopenharmony_ci { 0x2b8900, 1, 0x1f, 0x924}, 174862306a36Sopenharmony_ci { 0x2b8940, 1, 0x1f, 0x924}, 174962306a36Sopenharmony_ci { 0x2b8980, 1, 0x1f, 0x924}, 175062306a36Sopenharmony_ci { 0x2b89c0, 1, 0x1f, 0x924}, 175162306a36Sopenharmony_ci { 0x2b8a00, 1, 0x1f, 0x9a4}, 175262306a36Sopenharmony_ci { 0x2b8a40, 1, 0x1f, 0x924}, 175362306a36Sopenharmony_ci { 0x2b8a80, 1, 0x1f, 0x492}, 175462306a36Sopenharmony_ci { 0x2b8ac0, 1, 0x1f, 0x924}, 175562306a36Sopenharmony_ci { 0x2b8b00, 1, 0x1f, 0x924}, 175662306a36Sopenharmony_ci { 0x2b8b40, 1, 0x1f, 0x924}, 175762306a36Sopenharmony_ci { 0x2b8b80, 1, 0x1f, 0x924}, 175862306a36Sopenharmony_ci { 0x2b8bc0, 1, 0x1f, 0x924}, 175962306a36Sopenharmony_ci { 0x2b8c00, 1, 0x1f, 0x924}, 176062306a36Sopenharmony_ci { 0x2b8c40, 1, 0x1f, 0x924}, 176162306a36Sopenharmony_ci { 0x2b8c80, 1, 0x1f, 0x924}, 176262306a36Sopenharmony_ci { 0x2b8cc0, 1, 0x1f, 0x924}, 176362306a36Sopenharmony_ci { 0x2b8cc4, 1, 0x1c, 0x924}, 176462306a36Sopenharmony_ci { 0x2b8d00, 1, 0x1f, 0x924}, 176562306a36Sopenharmony_ci { 0x2b8d40, 1, 0x1f, 0x924}, 176662306a36Sopenharmony_ci { 0x2b8d80, 1, 0x1f, 0x924}, 176762306a36Sopenharmony_ci { 0x2b8dc0, 1, 0x1f, 0x924}, 176862306a36Sopenharmony_ci { 0x2b8e00, 1, 0x1f, 0x924}, 176962306a36Sopenharmony_ci { 0x2b8e40, 1, 0x1f, 0x924}, 177062306a36Sopenharmony_ci { 0x2b8e80, 1, 0x1f, 0x924}, 177162306a36Sopenharmony_ci { 0x2b8e84, 1, 0x1c, 0x924}, 177262306a36Sopenharmony_ci { 0x2b8ec0, 1, 0x1e, 0x924}, 177362306a36Sopenharmony_ci { 0x2b8f00, 1, 0x1e, 0x924}, 177462306a36Sopenharmony_ci { 0x2b8f40, 1, 0x1e, 0x924}, 177562306a36Sopenharmony_ci { 0x2b8f80, 1, 0x1e, 0x924}, 177662306a36Sopenharmony_ci { 0x2b8fc0, 1, 0x1e, 0x924}, 177762306a36Sopenharmony_ci { 0x2b8fd4, 5, 0x1c, 0x924}, 177862306a36Sopenharmony_ci { 0x2b8fe8, 2, 0x18, 0x924}, 177962306a36Sopenharmony_ci { 0x2b9000, 1, 0x1c, 0x924}, 178062306a36Sopenharmony_ci { 0x2b9040, 3, 0x1c, 0x924}, 178162306a36Sopenharmony_ci { 0x2b905c, 1, 0x18, 0x924}, 178262306a36Sopenharmony_ci { 0x2b9064, 1, 0x10, 0x924}, 178362306a36Sopenharmony_ci { 0x2b9080, 10, 0x10, 0x924}, 178462306a36Sopenharmony_ci { 0x2c0000, 2, 0x1f, 0x1fff}, 178562306a36Sopenharmony_ci { 0x300000, 65, 0x1f, 0x924}, 178662306a36Sopenharmony_ci { 0x300124, 2, 0x1f, 0x1fff}, 178762306a36Sopenharmony_ci { 0x300130, 3, 0x1f, 0x1fff}, 178862306a36Sopenharmony_ci { 0x300140, 1, 0x1f, 0x1fff}, 178962306a36Sopenharmony_ci { 0x30014c, 2, 0x1e, 0x924}, 179062306a36Sopenharmony_ci { 0x300200, 27, 0x1f, 0x924}, 179162306a36Sopenharmony_ci { 0x30026c, 1, 0x1f, 0xfff}, 179262306a36Sopenharmony_ci { 0x300270, 12, 0x1f, 0x924}, 179362306a36Sopenharmony_ci { 0x3002a0, 1, 0x1f, 0xfff}, 179462306a36Sopenharmony_ci { 0x3002a4, 17, 0x1f, 0x924}, 179562306a36Sopenharmony_ci { 0x300340, 4, 0x1f, 0x924}, 179662306a36Sopenharmony_ci { 0x300380, 1, 0x1c, 0x924}, 179762306a36Sopenharmony_ci { 0x300388, 1, 0x1c, 0x924}, 179862306a36Sopenharmony_ci { 0x300390, 1, 0x1c, 0x924}, 179962306a36Sopenharmony_ci { 0x300398, 1, 0x1c, 0x924}, 180062306a36Sopenharmony_ci { 0x3003a0, 1, 0x1c, 0x924}, 180162306a36Sopenharmony_ci { 0x3003a8, 2, 0x1c, 0x924}, 180262306a36Sopenharmony_ci { 0x302000, 4, 0x1f, 0xf24}, 180362306a36Sopenharmony_ci { 0x302010, 2044, 0x1f, 0xe00}, 180462306a36Sopenharmony_ci { 0x304000, 4, 0x18, 0x924}, 180562306a36Sopenharmony_ci { 0x320000, 1, 0x1f, 0xb24}, 180662306a36Sopenharmony_ci { 0x320004, 5631, 0x1f, 0x200}, 180762306a36Sopenharmony_ci { 0x325800, 2560, 0x1e, 0x200}, 180862306a36Sopenharmony_ci { 0x328000, 1, 0x1f, 0xb24}, 180962306a36Sopenharmony_ci { 0x328004, 8191, 0x1e, 0x200}, 181062306a36Sopenharmony_ci { 0x330000, 1, 0x1f, 0xb24}, 181162306a36Sopenharmony_ci { 0x330004, 15, 0x2, 0x200}, 181262306a36Sopenharmony_ci { 0x330040, 1, 0x1e, 0xb24}, 181362306a36Sopenharmony_ci { 0x330044, 239, 0x2, 0x200}, 181462306a36Sopenharmony_ci { 0x330400, 1, 0x1f, 0xb24}, 181562306a36Sopenharmony_ci { 0x330404, 255, 0x2, 0x200}, 181662306a36Sopenharmony_ci { 0x330800, 1, 0x1f, 0x924}, 181762306a36Sopenharmony_ci { 0x330840, 1, 0x1e, 0x924}, 181862306a36Sopenharmony_ci { 0x330c00, 1, 0x1f, 0x924}, 181962306a36Sopenharmony_ci { 0x331000, 1, 0x1f, 0x924}, 182062306a36Sopenharmony_ci { 0x331040, 1, 0x1e, 0x924}, 182162306a36Sopenharmony_ci { 0x331400, 1, 0x1f, 0x924}, 182262306a36Sopenharmony_ci { 0x331440, 1, 0x1e, 0x924}, 182362306a36Sopenharmony_ci { 0x331480, 1, 0x1e, 0x924}, 182462306a36Sopenharmony_ci { 0x3314c0, 1, 0x1e, 0x924}, 182562306a36Sopenharmony_ci { 0x331800, 128, 0x1f, 0x400}, 182662306a36Sopenharmony_ci { 0x331c00, 128, 0x1f, 0x400}, 182762306a36Sopenharmony_ci { 0x332000, 1, 0x1f, 0xdb6}, 182862306a36Sopenharmony_ci { 0x332400, 1, 0x1e, 0xb24}, 182962306a36Sopenharmony_ci { 0x332404, 5631, 0x1c, 0x200}, 183062306a36Sopenharmony_ci { 0x338000, 1, 0x1f, 0xfff}, 183162306a36Sopenharmony_ci { 0x338040, 1, 0x1f, 0xfff}, 183262306a36Sopenharmony_ci { 0x338080, 1, 0x1f, 0xfff}, 183362306a36Sopenharmony_ci { 0x3380c0, 1, 0x1f, 0xfff}, 183462306a36Sopenharmony_ci { 0x338100, 1, 0x1f, 0x924}, 183562306a36Sopenharmony_ci { 0x338140, 1, 0x1f, 0x924}, 183662306a36Sopenharmony_ci { 0x338180, 1, 0x1f, 0x924}, 183762306a36Sopenharmony_ci { 0x3381c0, 1, 0x1f, 0x924}, 183862306a36Sopenharmony_ci { 0x338200, 1, 0x1f, 0x924}, 183962306a36Sopenharmony_ci { 0x338240, 1, 0x1f, 0x924}, 184062306a36Sopenharmony_ci { 0x338280, 1, 0x1f, 0x924}, 184162306a36Sopenharmony_ci { 0x3382c0, 1, 0x1f, 0x924}, 184262306a36Sopenharmony_ci { 0x338300, 1, 0x1f, 0x924}, 184362306a36Sopenharmony_ci { 0x338340, 1, 0x1f, 0x924}, 184462306a36Sopenharmony_ci { 0x338380, 1, 0x1f, 0x924}, 184562306a36Sopenharmony_ci { 0x3383c0, 1, 0x1f, 0x924}, 184662306a36Sopenharmony_ci { 0x338400, 1, 0x1f, 0x924}, 184762306a36Sopenharmony_ci { 0x338440, 1, 0x1f, 0x924}, 184862306a36Sopenharmony_ci { 0x338480, 1, 0x1f, 0x924}, 184962306a36Sopenharmony_ci { 0x3384c0, 1, 0x1f, 0x924}, 185062306a36Sopenharmony_ci { 0x338500, 1, 0x1f, 0x924}, 185162306a36Sopenharmony_ci { 0x338540, 1, 0x1f, 0x924}, 185262306a36Sopenharmony_ci { 0x338580, 1, 0x1f, 0x924}, 185362306a36Sopenharmony_ci { 0x3385c0, 19, 0x1c, 0x924}, 185462306a36Sopenharmony_ci { 0x338800, 1, 0x1f, 0x924}, 185562306a36Sopenharmony_ci { 0x338840, 1, 0x1f, 0x924}, 185662306a36Sopenharmony_ci { 0x338880, 1, 0x1f, 0x924}, 185762306a36Sopenharmony_ci { 0x3388c0, 1, 0x1f, 0x924}, 185862306a36Sopenharmony_ci { 0x338900, 1, 0x1f, 0x924}, 185962306a36Sopenharmony_ci { 0x338940, 1, 0x1f, 0x924}, 186062306a36Sopenharmony_ci { 0x338980, 1, 0x1f, 0x924}, 186162306a36Sopenharmony_ci { 0x3389c0, 1, 0x1f, 0x924}, 186262306a36Sopenharmony_ci { 0x338a00, 1, 0x1f, 0xd24}, 186362306a36Sopenharmony_ci { 0x338a40, 1, 0x1f, 0x924}, 186462306a36Sopenharmony_ci { 0x338a80, 1, 0x1f, 0x492}, 186562306a36Sopenharmony_ci { 0x338ac0, 1, 0x1f, 0x924}, 186662306a36Sopenharmony_ci { 0x338b00, 1, 0x1f, 0x924}, 186762306a36Sopenharmony_ci { 0x338b40, 1, 0x1f, 0x924}, 186862306a36Sopenharmony_ci { 0x338b80, 1, 0x1f, 0x924}, 186962306a36Sopenharmony_ci { 0x338bc0, 1, 0x1f, 0x924}, 187062306a36Sopenharmony_ci { 0x338c00, 1, 0x1f, 0x924}, 187162306a36Sopenharmony_ci { 0x338c40, 1, 0x1f, 0x924}, 187262306a36Sopenharmony_ci { 0x338c80, 1, 0x1f, 0x924}, 187362306a36Sopenharmony_ci { 0x338cc0, 1, 0x1f, 0x924}, 187462306a36Sopenharmony_ci { 0x338cc4, 1, 0x1c, 0x924}, 187562306a36Sopenharmony_ci { 0x338d00, 1, 0x1f, 0x924}, 187662306a36Sopenharmony_ci { 0x338d40, 1, 0x1f, 0x924}, 187762306a36Sopenharmony_ci { 0x338d80, 1, 0x1f, 0x924}, 187862306a36Sopenharmony_ci { 0x338dc0, 1, 0x1f, 0x924}, 187962306a36Sopenharmony_ci { 0x338e00, 1, 0x1f, 0x924}, 188062306a36Sopenharmony_ci { 0x338e40, 1, 0x1f, 0x924}, 188162306a36Sopenharmony_ci { 0x338e80, 1, 0x1f, 0x924}, 188262306a36Sopenharmony_ci { 0x338e84, 1, 0x1c, 0x924}, 188362306a36Sopenharmony_ci { 0x338ec0, 1, 0x1e, 0x924}, 188462306a36Sopenharmony_ci { 0x338f00, 1, 0x1e, 0x924}, 188562306a36Sopenharmony_ci { 0x338f40, 1, 0x1e, 0x924}, 188662306a36Sopenharmony_ci { 0x338f80, 1, 0x1e, 0x924}, 188762306a36Sopenharmony_ci { 0x338fc0, 1, 0x1e, 0x924}, 188862306a36Sopenharmony_ci { 0x338fd4, 5, 0x1c, 0x924}, 188962306a36Sopenharmony_ci { 0x338fe8, 2, 0x18, 0x924}, 189062306a36Sopenharmony_ci { 0x339000, 1, 0x1c, 0x924}, 189162306a36Sopenharmony_ci { 0x339040, 3, 0x1c, 0x924}, 189262306a36Sopenharmony_ci { 0x33905c, 1, 0x18, 0x924}, 189362306a36Sopenharmony_ci { 0x339064, 1, 0x10, 0x924}, 189462306a36Sopenharmony_ci { 0x339080, 10, 0x10, 0x924}, 189562306a36Sopenharmony_ci { 0x340000, 2, 0x1f, 0x924}, 189662306a36Sopenharmony_ci { 0x3a0000, 40960, 0x1c, 0x1000} 189762306a36Sopenharmony_ci}; 189862306a36Sopenharmony_ci 189962306a36Sopenharmony_ci#define REGS_COUNT ARRAY_SIZE(reg_addrs) 190062306a36Sopenharmony_ci 190162306a36Sopenharmony_cistatic const struct reg_addr idle_reg_addrs[] = { 190262306a36Sopenharmony_ci { 0x2104, 1, 0x1f, 0xfff}, 190362306a36Sopenharmony_ci { 0x2110, 2, 0x1f, 0xfff}, 190462306a36Sopenharmony_ci { 0x211c, 8, 0x1f, 0xfff}, 190562306a36Sopenharmony_ci { 0x2814, 1, 0x1f, 0xfff}, 190662306a36Sopenharmony_ci { 0x281c, 2, 0x1f, 0xfff}, 190762306a36Sopenharmony_ci { 0x2854, 1, 0x1f, 0xfff}, 190862306a36Sopenharmony_ci { 0x285c, 1, 0x1f, 0xfff}, 190962306a36Sopenharmony_ci { 0x3040, 1, 0x1f, 0xfff}, 191062306a36Sopenharmony_ci { 0x9010, 7, 0x1c, 0xfff}, 191162306a36Sopenharmony_ci { 0x9030, 1, 0x1c, 0xfff}, 191262306a36Sopenharmony_ci { 0x9068, 16, 0x1c, 0xfff}, 191362306a36Sopenharmony_ci { 0x9230, 2, 0x1c, 0xfff}, 191462306a36Sopenharmony_ci { 0x9244, 1, 0x1c, 0xfff}, 191562306a36Sopenharmony_ci { 0x9298, 1, 0x1c, 0xfff}, 191662306a36Sopenharmony_ci { 0x92a8, 1, 0x1c, 0x1fff}, 191762306a36Sopenharmony_ci { 0xa38c, 1, 0x1f, 0x1fff}, 191862306a36Sopenharmony_ci { 0xa3c4, 1, 0x1e, 0xfff}, 191962306a36Sopenharmony_ci { 0xa404, 1, 0x1f, 0xfff}, 192062306a36Sopenharmony_ci { 0xa408, 2, 0x1f, 0x1fff}, 192162306a36Sopenharmony_ci { 0xa42c, 12, 0x1f, 0xfff}, 192262306a36Sopenharmony_ci { 0xa580, 1, 0x1f, 0x1fff}, 192362306a36Sopenharmony_ci { 0xa590, 1, 0x1f, 0x1fff}, 192462306a36Sopenharmony_ci { 0xa600, 5, 0x1e, 0xfff}, 192562306a36Sopenharmony_ci { 0xa618, 1, 0x1e, 0xfff}, 192662306a36Sopenharmony_ci { 0xa714, 1, 0x1c, 0xfff}, 192762306a36Sopenharmony_ci { 0xa720, 1, 0x1c, 0xfff}, 192862306a36Sopenharmony_ci { 0xa750, 1, 0x1c, 0xfff}, 192962306a36Sopenharmony_ci { 0xc09c, 1, 0x3, 0xfff}, 193062306a36Sopenharmony_ci { 0x103b0, 1, 0x1f, 0xfff}, 193162306a36Sopenharmony_ci { 0x103c0, 1, 0x1f, 0xfff}, 193262306a36Sopenharmony_ci { 0x103d0, 1, 0x3, 0x1fff}, 193362306a36Sopenharmony_ci { 0x10418, 1, 0x1f, 0xfff}, 193462306a36Sopenharmony_ci { 0x10420, 1, 0x1f, 0xfff}, 193562306a36Sopenharmony_ci { 0x10428, 1, 0x1f, 0xfff}, 193662306a36Sopenharmony_ci { 0x10460, 1, 0x1f, 0xfff}, 193762306a36Sopenharmony_ci { 0x10474, 1, 0x1f, 0xfff}, 193862306a36Sopenharmony_ci { 0x104e0, 1, 0x1f, 0xfff}, 193962306a36Sopenharmony_ci { 0x104ec, 1, 0x1f, 0xfff}, 194062306a36Sopenharmony_ci { 0x104f8, 1, 0x1f, 0xfff}, 194162306a36Sopenharmony_ci { 0x10508, 1, 0x1f, 0xfff}, 194262306a36Sopenharmony_ci { 0x10530, 1, 0x1f, 0xfff}, 194362306a36Sopenharmony_ci { 0x10538, 1, 0x1f, 0xfff}, 194462306a36Sopenharmony_ci { 0x10548, 1, 0x1f, 0xfff}, 194562306a36Sopenharmony_ci { 0x10558, 1, 0x1f, 0xfff}, 194662306a36Sopenharmony_ci { 0x182a8, 1, 0x1c, 0xfff}, 194762306a36Sopenharmony_ci { 0x182b8, 1, 0x1c, 0xfff}, 194862306a36Sopenharmony_ci { 0x18308, 1, 0x1c, 0xfff}, 194962306a36Sopenharmony_ci { 0x18318, 1, 0x1c, 0xfff}, 195062306a36Sopenharmony_ci { 0x18338, 1, 0x1c, 0xfff}, 195162306a36Sopenharmony_ci { 0x18348, 1, 0x1c, 0xfff}, 195262306a36Sopenharmony_ci { 0x183bc, 1, 0x1c, 0x1fff}, 195362306a36Sopenharmony_ci { 0x183cc, 1, 0x1c, 0x1fff}, 195462306a36Sopenharmony_ci { 0x18570, 1, 0x18, 0xfff}, 195562306a36Sopenharmony_ci { 0x18578, 1, 0x18, 0xfff}, 195662306a36Sopenharmony_ci { 0x1858c, 1, 0x18, 0xfff}, 195762306a36Sopenharmony_ci { 0x18594, 1, 0x18, 0xfff}, 195862306a36Sopenharmony_ci { 0x1862c, 4, 0x10, 0xfff}, 195962306a36Sopenharmony_ci { 0x2021c, 11, 0x1f, 0xfff}, 196062306a36Sopenharmony_ci { 0x202a8, 1, 0x1f, 0xfff}, 196162306a36Sopenharmony_ci { 0x202b8, 1, 0x1f, 0x1fff}, 196262306a36Sopenharmony_ci { 0x20404, 1, 0x1f, 0xfff}, 196362306a36Sopenharmony_ci { 0x2040c, 2, 0x1f, 0xfff}, 196462306a36Sopenharmony_ci { 0x2041c, 2, 0x1f, 0xfff}, 196562306a36Sopenharmony_ci { 0x40154, 14, 0x1f, 0xfff}, 196662306a36Sopenharmony_ci { 0x40198, 1, 0x1f, 0x1fff}, 196762306a36Sopenharmony_ci { 0x404ac, 1, 0x1f, 0xfff}, 196862306a36Sopenharmony_ci { 0x404bc, 1, 0x1f, 0x1fff}, 196962306a36Sopenharmony_ci { 0x42290, 1, 0x1f, 0xfff}, 197062306a36Sopenharmony_ci { 0x422a0, 1, 0x1f, 0xfff}, 197162306a36Sopenharmony_ci { 0x422b0, 1, 0x1f, 0x1fff}, 197262306a36Sopenharmony_ci { 0x42548, 1, 0x1f, 0xfff}, 197362306a36Sopenharmony_ci { 0x42550, 1, 0x1f, 0xfff}, 197462306a36Sopenharmony_ci { 0x42558, 1, 0x1f, 0xfff}, 197562306a36Sopenharmony_ci { 0x50160, 8, 0x1f, 0xfff}, 197662306a36Sopenharmony_ci { 0x501d0, 1, 0x1f, 0xfff}, 197762306a36Sopenharmony_ci { 0x501e0, 1, 0x1f, 0x1fff}, 197862306a36Sopenharmony_ci { 0x50204, 1, 0x1f, 0xfff}, 197962306a36Sopenharmony_ci { 0x5020c, 2, 0x1f, 0xfff}, 198062306a36Sopenharmony_ci { 0x5021c, 1, 0x1f, 0xfff}, 198162306a36Sopenharmony_ci { 0x60090, 1, 0x1f, 0xfff}, 198262306a36Sopenharmony_ci { 0x6011c, 1, 0x1f, 0xfff}, 198362306a36Sopenharmony_ci { 0x6012c, 1, 0x1f, 0x1fff}, 198462306a36Sopenharmony_ci { 0xc101c, 1, 0x1f, 0xfff}, 198562306a36Sopenharmony_ci { 0xc102c, 1, 0x1f, 0x1fff}, 198662306a36Sopenharmony_ci { 0xc2290, 1, 0x1f, 0xfff}, 198762306a36Sopenharmony_ci { 0xc22a0, 1, 0x1f, 0xfff}, 198862306a36Sopenharmony_ci { 0xc22b0, 1, 0x1f, 0x1fff}, 198962306a36Sopenharmony_ci { 0xc2548, 1, 0x1f, 0xfff}, 199062306a36Sopenharmony_ci { 0xc2550, 1, 0x1f, 0xfff}, 199162306a36Sopenharmony_ci { 0xc2558, 1, 0x1f, 0xfff}, 199262306a36Sopenharmony_ci { 0xc4294, 1, 0x1f, 0xfff}, 199362306a36Sopenharmony_ci { 0xc42a4, 1, 0x1f, 0xfff}, 199462306a36Sopenharmony_ci { 0xc42b4, 1, 0x1f, 0x1fff}, 199562306a36Sopenharmony_ci { 0xc4550, 1, 0x1f, 0xfff}, 199662306a36Sopenharmony_ci { 0xc4558, 1, 0x1f, 0xfff}, 199762306a36Sopenharmony_ci { 0xc4560, 1, 0x1f, 0xfff}, 199862306a36Sopenharmony_ci { 0xd016c, 8, 0x1f, 0xfff}, 199962306a36Sopenharmony_ci { 0xd01d8, 1, 0x1f, 0xfff}, 200062306a36Sopenharmony_ci { 0xd01e8, 1, 0x1f, 0x1fff}, 200162306a36Sopenharmony_ci { 0xd0204, 1, 0x1f, 0xfff}, 200262306a36Sopenharmony_ci { 0xd020c, 3, 0x1f, 0xfff}, 200362306a36Sopenharmony_ci { 0xe0154, 8, 0x1f, 0xfff}, 200462306a36Sopenharmony_ci { 0xe01c8, 1, 0x1f, 0xfff}, 200562306a36Sopenharmony_ci { 0xe01d8, 1, 0x1f, 0x1fff}, 200662306a36Sopenharmony_ci { 0xe0204, 1, 0x1f, 0xfff}, 200762306a36Sopenharmony_ci { 0xe020c, 2, 0x1f, 0xfff}, 200862306a36Sopenharmony_ci { 0xe021c, 2, 0x1f, 0xfff}, 200962306a36Sopenharmony_ci { 0x101014, 1, 0x1f, 0xfff}, 201062306a36Sopenharmony_ci { 0x101030, 1, 0x1f, 0xfff}, 201162306a36Sopenharmony_ci { 0x101040, 1, 0x1f, 0x1fff}, 201262306a36Sopenharmony_ci { 0x102058, 1, 0x1f, 0x1fff}, 201362306a36Sopenharmony_ci { 0x102080, 16, 0x1f, 0xfff}, 201462306a36Sopenharmony_ci { 0x103004, 2, 0x1f, 0xfff}, 201562306a36Sopenharmony_ci { 0x103068, 1, 0x1f, 0xfff}, 201662306a36Sopenharmony_ci { 0x103078, 1, 0x1f, 0xfff}, 201762306a36Sopenharmony_ci { 0x103088, 1, 0x1f, 0x1fff}, 201862306a36Sopenharmony_ci { 0x10309c, 2, 0x1e, 0xfff}, 201962306a36Sopenharmony_ci { 0x1030b8, 2, 0x1c, 0xfff}, 202062306a36Sopenharmony_ci { 0x1030cc, 1, 0x1c, 0xfff}, 202162306a36Sopenharmony_ci { 0x1030e0, 1, 0x1c, 0xfff}, 202262306a36Sopenharmony_ci { 0x104004, 1, 0x1f, 0xfff}, 202362306a36Sopenharmony_ci { 0x104018, 1, 0x1f, 0xfff}, 202462306a36Sopenharmony_ci { 0x104020, 1, 0x1f, 0xfff}, 202562306a36Sopenharmony_ci { 0x10403c, 1, 0x1f, 0xfff}, 202662306a36Sopenharmony_ci { 0x1040fc, 1, 0x1f, 0xfff}, 202762306a36Sopenharmony_ci { 0x10410c, 1, 0x1f, 0x1fff}, 202862306a36Sopenharmony_ci { 0x104400, 1, 0x1f, 0x1fff}, 202962306a36Sopenharmony_ci { 0x104404, 63, 0x1f, 0xfff}, 203062306a36Sopenharmony_ci { 0x104800, 1, 0x1f, 0x1fff}, 203162306a36Sopenharmony_ci { 0x104804, 63, 0x1f, 0xfff}, 203262306a36Sopenharmony_ci { 0x105000, 4, 0x1f, 0x1fff}, 203362306a36Sopenharmony_ci { 0x105010, 252, 0x1f, 0xfff}, 203462306a36Sopenharmony_ci { 0x108094, 1, 0x3, 0xfff}, 203562306a36Sopenharmony_ci { 0x1201b0, 2, 0x1f, 0xfff}, 203662306a36Sopenharmony_ci { 0x12032c, 1, 0x1f, 0xfff}, 203762306a36Sopenharmony_ci { 0x12036c, 3, 0x1f, 0xfff}, 203862306a36Sopenharmony_ci { 0x120408, 2, 0x1f, 0xfff}, 203962306a36Sopenharmony_ci { 0x120414, 15, 0x1f, 0xfff}, 204062306a36Sopenharmony_ci { 0x120478, 2, 0x1f, 0xfff}, 204162306a36Sopenharmony_ci { 0x12052c, 1, 0x1f, 0xfff}, 204262306a36Sopenharmony_ci { 0x120564, 3, 0x1f, 0xfff}, 204362306a36Sopenharmony_ci { 0x12057c, 1, 0x1f, 0x1fff}, 204462306a36Sopenharmony_ci { 0x12058c, 1, 0x1f, 0x1fff}, 204562306a36Sopenharmony_ci { 0x120608, 1, 0x1e, 0xfff}, 204662306a36Sopenharmony_ci { 0x120748, 1, 0x1c, 0xfff}, 204762306a36Sopenharmony_ci { 0x120778, 2, 0x1c, 0xfff}, 204862306a36Sopenharmony_ci { 0x120808, 3, 0x1f, 0xfff}, 204962306a36Sopenharmony_ci { 0x120818, 1, 0x1f, 0xfff}, 205062306a36Sopenharmony_ci { 0x120820, 1, 0x1f, 0xfff}, 205162306a36Sopenharmony_ci { 0x120828, 1, 0x1f, 0xfff}, 205262306a36Sopenharmony_ci { 0x120830, 1, 0x1f, 0xfff}, 205362306a36Sopenharmony_ci { 0x120838, 1, 0x1f, 0xfff}, 205462306a36Sopenharmony_ci { 0x120840, 1, 0x1f, 0xfff}, 205562306a36Sopenharmony_ci { 0x120848, 1, 0x1f, 0xfff}, 205662306a36Sopenharmony_ci { 0x120850, 1, 0x1f, 0xfff}, 205762306a36Sopenharmony_ci { 0x120858, 1, 0x1f, 0xfff}, 205862306a36Sopenharmony_ci { 0x120860, 1, 0x1f, 0xfff}, 205962306a36Sopenharmony_ci { 0x120868, 1, 0x1f, 0xfff}, 206062306a36Sopenharmony_ci { 0x120870, 1, 0x1f, 0xfff}, 206162306a36Sopenharmony_ci { 0x120878, 1, 0x1f, 0xfff}, 206262306a36Sopenharmony_ci { 0x120880, 1, 0x1f, 0xfff}, 206362306a36Sopenharmony_ci { 0x120888, 1, 0x1f, 0xfff}, 206462306a36Sopenharmony_ci { 0x120890, 1, 0x1f, 0xfff}, 206562306a36Sopenharmony_ci { 0x120898, 1, 0x1f, 0xfff}, 206662306a36Sopenharmony_ci { 0x1208a0, 1, 0x1f, 0xfff}, 206762306a36Sopenharmony_ci { 0x1208a8, 1, 0x1f, 0xfff}, 206862306a36Sopenharmony_ci { 0x1208b0, 1, 0x1f, 0xfff}, 206962306a36Sopenharmony_ci { 0x1208b8, 1, 0x1f, 0xfff}, 207062306a36Sopenharmony_ci { 0x1208c0, 1, 0x1f, 0xfff}, 207162306a36Sopenharmony_ci { 0x1208c8, 1, 0x1f, 0xfff}, 207262306a36Sopenharmony_ci { 0x1208d0, 1, 0x1f, 0xfff}, 207362306a36Sopenharmony_ci { 0x1208d8, 1, 0x1f, 0xfff}, 207462306a36Sopenharmony_ci { 0x1208e0, 1, 0x1f, 0xfff}, 207562306a36Sopenharmony_ci { 0x1208e8, 1, 0x1f, 0xfff}, 207662306a36Sopenharmony_ci { 0x1208f0, 1, 0x1f, 0xfff}, 207762306a36Sopenharmony_ci { 0x1208f8, 1, 0x1f, 0xfff}, 207862306a36Sopenharmony_ci { 0x120900, 1, 0x1f, 0xfff}, 207962306a36Sopenharmony_ci { 0x120908, 1, 0x1f, 0xfff}, 208062306a36Sopenharmony_ci { 0x130030, 1, 0x1c, 0xfff}, 208162306a36Sopenharmony_ci { 0x13004c, 3, 0x1c, 0xfff}, 208262306a36Sopenharmony_ci { 0x130064, 2, 0x1c, 0xfff}, 208362306a36Sopenharmony_ci { 0x13009c, 1, 0x1c, 0x1fff}, 208462306a36Sopenharmony_ci { 0x130130, 1, 0x1c, 0xfff}, 208562306a36Sopenharmony_ci { 0x13016c, 1, 0x1c, 0xfff}, 208662306a36Sopenharmony_ci { 0x130300, 1, 0x1c, 0xfff}, 208762306a36Sopenharmony_ci { 0x130480, 1, 0x1c, 0xfff}, 208862306a36Sopenharmony_ci { 0x14005c, 2, 0xf, 0xfff}, 208962306a36Sopenharmony_ci { 0x1400d0, 2, 0xf, 0xfff}, 209062306a36Sopenharmony_ci { 0x1400e0, 1, 0xf, 0xfff}, 209162306a36Sopenharmony_ci { 0x1401c8, 1, 0xf, 0xfff}, 209262306a36Sopenharmony_ci { 0x140200, 6, 0xf, 0xfff}, 209362306a36Sopenharmony_ci { 0x140338, 7, 0x10, 0xfff}, 209462306a36Sopenharmony_ci { 0x140370, 7, 0x10, 0xfff}, 209562306a36Sopenharmony_ci { 0x15c1bc, 6, 0x10, 0xfff}, 209662306a36Sopenharmony_ci { 0x15c230, 7, 0x10, 0xfff}, 209762306a36Sopenharmony_ci { 0x16101c, 1, 0x1f, 0xfff}, 209862306a36Sopenharmony_ci { 0x16102c, 1, 0x1f, 0x1fff}, 209962306a36Sopenharmony_ci { 0x164014, 2, 0x1f, 0xfff}, 210062306a36Sopenharmony_ci { 0x1640f0, 1, 0x1f, 0xfff}, 210162306a36Sopenharmony_ci { 0x166290, 1, 0x1f, 0xfff}, 210262306a36Sopenharmony_ci { 0x1662a0, 1, 0x1f, 0xfff}, 210362306a36Sopenharmony_ci { 0x1662b0, 1, 0x1f, 0x1fff}, 210462306a36Sopenharmony_ci { 0x166548, 1, 0x1f, 0xfff}, 210562306a36Sopenharmony_ci { 0x166550, 1, 0x1f, 0xfff}, 210662306a36Sopenharmony_ci { 0x166558, 1, 0x1f, 0xfff}, 210762306a36Sopenharmony_ci { 0x168000, 1, 0x1f, 0xfff}, 210862306a36Sopenharmony_ci { 0x168008, 1, 0x1f, 0xfff}, 210962306a36Sopenharmony_ci { 0x168010, 1, 0x1f, 0xfff}, 211062306a36Sopenharmony_ci { 0x168018, 1, 0x1f, 0xfff}, 211162306a36Sopenharmony_ci { 0x168028, 2, 0x1f, 0xfff}, 211262306a36Sopenharmony_ci { 0x168058, 9, 0x1f, 0xfff}, 211362306a36Sopenharmony_ci { 0x168238, 1, 0x1f, 0xfff}, 211462306a36Sopenharmony_ci { 0x1682d0, 7, 0x1f, 0xfff}, 211562306a36Sopenharmony_ci { 0x168300, 2, 0x3, 0xfff}, 211662306a36Sopenharmony_ci { 0x168308, 65, 0x1f, 0xfff}, 211762306a36Sopenharmony_ci { 0x168410, 2, 0x1f, 0xfff}, 211862306a36Sopenharmony_ci { 0x168438, 1, 0x1f, 0xfff}, 211962306a36Sopenharmony_ci { 0x168448, 1, 0x1f, 0x1fff}, 212062306a36Sopenharmony_ci { 0x168a00, 128, 0x1f, 0xfff}, 212162306a36Sopenharmony_ci { 0x16e200, 128, 0x2, 0xfff}, 212262306a36Sopenharmony_ci { 0x16e404, 2, 0x2, 0xfff}, 212362306a36Sopenharmony_ci { 0x16e584, 64, 0x2, 0xfff}, 212462306a36Sopenharmony_ci { 0x16e684, 2, 0x1e, 0xfff}, 212562306a36Sopenharmony_ci { 0x16e68c, 4, 0x2, 0xfff}, 212662306a36Sopenharmony_ci { 0x16e6fc, 4, 0x1c, 0xfff}, 212762306a36Sopenharmony_ci { 0x16e7ac, 12, 0x10, 0xfff}, 212862306a36Sopenharmony_ci { 0x1700a4, 1, 0x1f, 0xfff}, 212962306a36Sopenharmony_ci { 0x1700ac, 2, 0x1f, 0xfff}, 213062306a36Sopenharmony_ci { 0x1700c0, 1, 0x1f, 0xfff}, 213162306a36Sopenharmony_ci { 0x170174, 1, 0x1f, 0xfff}, 213262306a36Sopenharmony_ci { 0x170184, 1, 0x1f, 0x1fff}, 213362306a36Sopenharmony_ci { 0x1800f4, 1, 0x1f, 0xfff}, 213462306a36Sopenharmony_ci { 0x180104, 1, 0x1f, 0xfff}, 213562306a36Sopenharmony_ci { 0x180114, 1, 0x1f, 0x1fff}, 213662306a36Sopenharmony_ci { 0x180124, 1, 0x1f, 0x1fff}, 213762306a36Sopenharmony_ci { 0x18026c, 1, 0x1f, 0xfff}, 213862306a36Sopenharmony_ci { 0x1802a0, 1, 0x1f, 0xfff}, 213962306a36Sopenharmony_ci { 0x1b8000, 1, 0x1f, 0xfff}, 214062306a36Sopenharmony_ci { 0x1b8040, 1, 0x1f, 0xfff}, 214162306a36Sopenharmony_ci { 0x1b8080, 1, 0x1f, 0xfff}, 214262306a36Sopenharmony_ci { 0x1b80c0, 1, 0x1f, 0xfff}, 214362306a36Sopenharmony_ci { 0x200104, 1, 0x1f, 0xfff}, 214462306a36Sopenharmony_ci { 0x200114, 1, 0x1f, 0xfff}, 214562306a36Sopenharmony_ci { 0x200124, 1, 0x1f, 0x1fff}, 214662306a36Sopenharmony_ci { 0x200134, 1, 0x1f, 0x1fff}, 214762306a36Sopenharmony_ci { 0x20026c, 1, 0x1f, 0xfff}, 214862306a36Sopenharmony_ci { 0x2002a0, 1, 0x1f, 0xfff}, 214962306a36Sopenharmony_ci { 0x238000, 1, 0x1f, 0xfff}, 215062306a36Sopenharmony_ci { 0x238040, 1, 0x1f, 0xfff}, 215162306a36Sopenharmony_ci { 0x238080, 1, 0x1f, 0xfff}, 215262306a36Sopenharmony_ci { 0x2380c0, 1, 0x1f, 0xfff}, 215362306a36Sopenharmony_ci { 0x280104, 1, 0x1f, 0xfff}, 215462306a36Sopenharmony_ci { 0x280114, 1, 0x1f, 0xfff}, 215562306a36Sopenharmony_ci { 0x280124, 1, 0x1f, 0x1fff}, 215662306a36Sopenharmony_ci { 0x280134, 1, 0x1f, 0x1fff}, 215762306a36Sopenharmony_ci { 0x28026c, 1, 0x1f, 0xfff}, 215862306a36Sopenharmony_ci { 0x2802a0, 1, 0x1f, 0xfff}, 215962306a36Sopenharmony_ci { 0x2b8000, 1, 0x1f, 0xfff}, 216062306a36Sopenharmony_ci { 0x2b8040, 1, 0x1f, 0xfff}, 216162306a36Sopenharmony_ci { 0x2b8080, 1, 0x1f, 0xfff}, 216262306a36Sopenharmony_ci { 0x300104, 1, 0x1f, 0xfff}, 216362306a36Sopenharmony_ci { 0x300114, 1, 0x1f, 0xfff}, 216462306a36Sopenharmony_ci { 0x300124, 1, 0x1f, 0x1fff}, 216562306a36Sopenharmony_ci { 0x300134, 1, 0x1f, 0x1fff}, 216662306a36Sopenharmony_ci { 0x30026c, 1, 0x1f, 0xfff}, 216762306a36Sopenharmony_ci { 0x3002a0, 1, 0x1f, 0xfff}, 216862306a36Sopenharmony_ci { 0x338000, 1, 0x1f, 0xfff}, 216962306a36Sopenharmony_ci { 0x338040, 1, 0x1f, 0xfff}, 217062306a36Sopenharmony_ci { 0x338080, 1, 0x1f, 0xfff}, 217162306a36Sopenharmony_ci { 0x3380c0, 1, 0x1f, 0xfff} 217262306a36Sopenharmony_ci}; 217362306a36Sopenharmony_ci 217462306a36Sopenharmony_ci#define IDLE_REGS_COUNT ARRAY_SIZE(idle_reg_addrs) 217562306a36Sopenharmony_ci 217662306a36Sopenharmony_cistatic const u32 read_reg_e1[] = { 217762306a36Sopenharmony_ci 0x1b1000}; 217862306a36Sopenharmony_ci 217962306a36Sopenharmony_cistatic const struct wreg_addr wreg_addr_e1 = { 218062306a36Sopenharmony_ci 0x1b0c00, 192, 1, read_reg_e1, 0x1f, 0x1fff}; 218162306a36Sopenharmony_ci 218262306a36Sopenharmony_cistatic const u32 read_reg_e1h[] = { 218362306a36Sopenharmony_ci 0x1b1040, 0x1b1000}; 218462306a36Sopenharmony_ci 218562306a36Sopenharmony_cistatic const struct wreg_addr wreg_addr_e1h = { 218662306a36Sopenharmony_ci 0x1b0c00, 256, 2, read_reg_e1h, 0x1f, 0x1fff}; 218762306a36Sopenharmony_ci 218862306a36Sopenharmony_cistatic const u32 read_reg_e2[] = { 218962306a36Sopenharmony_ci 0x1b1040, 0x1b1000}; 219062306a36Sopenharmony_ci 219162306a36Sopenharmony_cistatic const struct wreg_addr wreg_addr_e2 = { 219262306a36Sopenharmony_ci 0x1b0c00, 128, 2, read_reg_e2, 0x1f, 0x1fff}; 219362306a36Sopenharmony_ci 219462306a36Sopenharmony_cistatic const u32 read_reg_e3[] = { 219562306a36Sopenharmony_ci 0x1b1040, 0x1b1000}; 219662306a36Sopenharmony_ci 219762306a36Sopenharmony_cistatic const struct wreg_addr wreg_addr_e3 = { 219862306a36Sopenharmony_ci 0x1b0c00, 128, 2, read_reg_e3, 0x1f, 0x1fff}; 219962306a36Sopenharmony_ci 220062306a36Sopenharmony_cistatic const u32 read_reg_e3b0[] = { 220162306a36Sopenharmony_ci 0x1b1040, 0x1b1000}; 220262306a36Sopenharmony_ci 220362306a36Sopenharmony_cistatic const struct wreg_addr wreg_addr_e3b0 = { 220462306a36Sopenharmony_ci 0x1b0c00, 128, 2, read_reg_e3b0, 0x1f, 0x1fff}; 220562306a36Sopenharmony_ci 220662306a36Sopenharmony_cistatic const unsigned int dump_num_registers[NUM_CHIPS][NUM_PRESETS] = { 220762306a36Sopenharmony_ci {19758, 17543, 26951, 18705, 17287, 26695, 19812, 31367, 40775, 19788, 220862306a36Sopenharmony_ci 25223, 34631, 19074}, 220962306a36Sopenharmony_ci {31750, 18273, 32253, 30697, 18017, 31997, 31804, 32097, 46077, 31780, 221062306a36Sopenharmony_ci 25953, 39933, 35895}, 221162306a36Sopenharmony_ci {36527, 17928, 33697, 35474, 18700, 34466, 36581, 31752, 47521, 36557, 221262306a36Sopenharmony_ci 25608, 41377, 43903}, 221362306a36Sopenharmony_ci {45239, 17936, 34387, 44186, 18708, 35156, 45293, 31760, 48211, 45269, 221462306a36Sopenharmony_ci 25616, 42067, 43903}, 221562306a36Sopenharmony_ci {45302, 17999, 34802, 44249, 18771, 35571, 45356, 31823, 48626, 45332, 221662306a36Sopenharmony_ci 25679, 42482, 43903} 221762306a36Sopenharmony_ci}; 221862306a36Sopenharmony_ci#endif 2219