diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-08 00:12:44 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-08 00:12:44 -0400 |
| commit | 5abe37954e9a315c35c9490f78d55f307c3c636b (patch) | |
| tree | fa2034b03b270c48ac516a8fe308654443b4a7e2 | |
| parent | e5fef2a9732580c5bd30c0097f5e9091a3d58ce5 (diff) | |
| parent | db90f41916cf04c020062f8d8b0385942248283e (diff) | |
Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
Pull ext4 updates from Ted Ts'o:
"Add as a feature case-insensitive directories (the casefold feature)
using Unicode 12.1.
Also, the usual largish number of cleanups and bug fixes"
* tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4: (25 commits)
ext4: export /sys/fs/ext4/feature/casefold if Unicode support is present
ext4: fix ext4_show_options for file systems w/o journal
unicode: refactor the rule for regenerating utf8data.h
docs: ext4.rst: document case-insensitive directories
ext4: Support case-insensitive file name lookups
ext4: include charset encoding information in the superblock
MAINTAINERS: add Unicode subsystem entry
unicode: update unicode database unicode version 12.1.0
unicode: introduce test module for normalized utf8 implementation
unicode: implement higher level API for string handling
unicode: reduce the size of utf8data[]
unicode: introduce code for UTF-8 normalization
unicode: introduce UTF-8 character database
ext4: actually request zeroing of inode table after grow
ext4: cond_resched in work-heavy group loops
ext4: fix use-after-free race with debug_want_extra_isize
ext4: avoid drop reference to iloc.bh twice
ext4: ignore e_value_offs for xattrs with value-in-ea-inode
ext4: protect journal inode's blocks using block_validity
ext4: use BUG() instead of BUG_ON(1)
...
35 files changed, 9591 insertions, 59 deletions
diff --git a/Documentation/admin-guide/ext4.rst b/Documentation/admin-guide/ext4.rst index e506d3dae510..059ddcbe769d 100644 --- a/Documentation/admin-guide/ext4.rst +++ b/Documentation/admin-guide/ext4.rst | |||
| @@ -91,10 +91,48 @@ Currently Available | |||
| 91 | * large block (up to pagesize) support | 91 | * large block (up to pagesize) support |
| 92 | * efficient new ordered mode in JBD2 and ext4 (avoid using buffer head to force | 92 | * efficient new ordered mode in JBD2 and ext4 (avoid using buffer head to force |
| 93 | the ordering) | 93 | the ordering) |
| 94 | * Case-insensitive file name lookups | ||
| 94 | 95 | ||
| 95 | [1] Filesystems with a block size of 1k may see a limit imposed by the | 96 | [1] Filesystems with a block size of 1k may see a limit imposed by the |
| 96 | directory hash tree having a maximum depth of two. | 97 | directory hash tree having a maximum depth of two. |
| 97 | 98 | ||
| 99 | case-insensitive file name lookups | ||
| 100 | ====================================================== | ||
| 101 | |||
| 102 | The case-insensitive file name lookup feature is supported on a | ||
| 103 | per-directory basis, allowing the user to mix case-insensitive and | ||
| 104 | case-sensitive directories in the same filesystem. It is enabled by | ||
| 105 | flipping the +F inode attribute of an empty directory. The | ||
| 106 | case-insensitive string match operation is only defined when we know how | ||
| 107 | text in encoded in a byte sequence. For that reason, in order to enable | ||
| 108 | case-insensitive directories, the filesystem must have the | ||
| 109 | casefold feature, which stores the filesystem-wide encoding | ||
| 110 | model used. By default, the charset adopted is the latest version of | ||
| 111 | Unicode (12.1.0, by the time of this writing), encoded in the UTF-8 | ||
| 112 | form. The comparison algorithm is implemented by normalizing the | ||
| 113 | strings to the Canonical decomposition form, as defined by Unicode, | ||
| 114 | followed by a byte per byte comparison. | ||
| 115 | |||
| 116 | The case-awareness is name-preserving on the disk, meaning that the file | ||
| 117 | name provided by userspace is a byte-per-byte match to what is actually | ||
| 118 | written in the disk. The Unicode normalization format used by the | ||
| 119 | kernel is thus an internal representation, and not exposed to the | ||
| 120 | userspace nor to the disk, with the important exception of disk hashes, | ||
| 121 | used on large case-insensitive directories with DX feature. On DX | ||
| 122 | directories, the hash must be calculated using the casefolded version of | ||
| 123 | the filename, meaning that the normalization format used actually has an | ||
| 124 | impact on where the directory entry is stored. | ||
| 125 | |||
| 126 | When we change from viewing filenames as opaque byte sequences to seeing | ||
| 127 | them as encoded strings we need to address what happens when a program | ||
| 128 | tries to create a file with an invalid name. The Unicode subsystem | ||
| 129 | within the kernel leaves the decision of what to do in this case to the | ||
| 130 | filesystem, which select its preferred behavior by enabling/disabling | ||
| 131 | the strict mode. When Ext4 encounters one of those strings and the | ||
| 132 | filesystem did not require strict mode, it falls back to considering the | ||
| 133 | entire string as an opaque byte sequence, which still allows the user to | ||
| 134 | operate on that file, but the case-insensitive lookups won't work. | ||
| 135 | |||
| 98 | Options | 136 | Options |
| 99 | ======= | 137 | ======= |
| 100 | 138 | ||
diff --git a/Documentation/dontdiff b/Documentation/dontdiff index ef25a066d952..93693775639f 100644 --- a/Documentation/dontdiff +++ b/Documentation/dontdiff | |||
| @@ -176,6 +176,7 @@ mkprep | |||
| 176 | mkregtable | 176 | mkregtable |
| 177 | mktables | 177 | mktables |
| 178 | mktree | 178 | mktree |
| 179 | mkutf8data | ||
| 179 | modpost | 180 | modpost |
| 180 | modules.builtin | 181 | modules.builtin |
| 181 | modules.order | 182 | modules.order |
| @@ -254,6 +255,7 @@ vsyscall_32.lds | |||
| 254 | wanxlfw.inc | 255 | wanxlfw.inc |
| 255 | uImage | 256 | uImage |
| 256 | unifdef | 257 | unifdef |
| 258 | utf8data.h | ||
| 257 | wakeup.bin | 259 | wakeup.bin |
| 258 | wakeup.elf | 260 | wakeup.elf |
| 259 | wakeup.lds | 261 | wakeup.lds |
diff --git a/MAINTAINERS b/MAINTAINERS index 20dc1a125e24..235fa2042eb1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -15984,6 +15984,12 @@ F: drivers/uwb/ | |||
| 15984 | F: include/linux/uwb.h | 15984 | F: include/linux/uwb.h |
| 15985 | F: include/linux/uwb/ | 15985 | F: include/linux/uwb/ |
| 15986 | 15986 | ||
| 15987 | UNICODE SUBSYSTEM: | ||
| 15988 | M: Gabriel Krisman Bertazi <krisman@collabora.com> | ||
| 15989 | L: linux-fsdevel@vger.kernel.org | ||
| 15990 | S: Supported | ||
| 15991 | F: fs/unicode/ | ||
| 15992 | |||
| 15987 | UNICORE32 ARCHITECTURE: | 15993 | UNICORE32 ARCHITECTURE: |
| 15988 | M: Guan Xuetao <gxt@pku.edu.cn> | 15994 | M: Guan Xuetao <gxt@pku.edu.cn> |
| 15989 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | 15995 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
diff --git a/fs/Kconfig b/fs/Kconfig index 3e6d3101f3ff..cbbffc8b9ef5 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
| @@ -317,5 +317,6 @@ endif # NETWORK_FILESYSTEMS | |||
| 317 | 317 | ||
| 318 | source "fs/nls/Kconfig" | 318 | source "fs/nls/Kconfig" |
| 319 | source "fs/dlm/Kconfig" | 319 | source "fs/dlm/Kconfig" |
| 320 | source "fs/unicode/Kconfig" | ||
| 320 | 321 | ||
| 321 | endmenu | 322 | endmenu |
diff --git a/fs/Makefile b/fs/Makefile index 5a51bc2489ba..c9aea23aba56 100644 --- a/fs/Makefile +++ b/fs/Makefile | |||
| @@ -92,6 +92,7 @@ obj-$(CONFIG_EXPORTFS) += exportfs/ | |||
| 92 | obj-$(CONFIG_NFSD) += nfsd/ | 92 | obj-$(CONFIG_NFSD) += nfsd/ |
| 93 | obj-$(CONFIG_LOCKD) += lockd/ | 93 | obj-$(CONFIG_LOCKD) += lockd/ |
| 94 | obj-$(CONFIG_NLS) += nls/ | 94 | obj-$(CONFIG_NLS) += nls/ |
| 95 | obj-$(CONFIG_UNICODE) += unicode/ | ||
| 95 | obj-$(CONFIG_SYSV_FS) += sysv/ | 96 | obj-$(CONFIG_SYSV_FS) += sysv/ |
| 96 | obj-$(CONFIG_CIFS) += cifs/ | 97 | obj-$(CONFIG_CIFS) += cifs/ |
| 97 | obj-$(CONFIG_HPFS_FS) += hpfs/ | 98 | obj-$(CONFIG_HPFS_FS) += hpfs/ |
diff --git a/fs/ext4/block_validity.c b/fs/ext4/block_validity.c index 913061c0de1b..968f163b5feb 100644 --- a/fs/ext4/block_validity.c +++ b/fs/ext4/block_validity.c | |||
| @@ -137,6 +137,48 @@ static void debug_print_tree(struct ext4_sb_info *sbi) | |||
| 137 | printk(KERN_CONT "\n"); | 137 | printk(KERN_CONT "\n"); |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | static int ext4_protect_reserved_inode(struct super_block *sb, u32 ino) | ||
| 141 | { | ||
| 142 | struct inode *inode; | ||
| 143 | struct ext4_sb_info *sbi = EXT4_SB(sb); | ||
| 144 | struct ext4_map_blocks map; | ||
| 145 | u32 i = 0, err = 0, num, n; | ||
| 146 | |||
| 147 | if ((ino < EXT4_ROOT_INO) || | ||
| 148 | (ino > le32_to_cpu(sbi->s_es->s_inodes_count))) | ||
| 149 | return -EINVAL; | ||
| 150 | inode = ext4_iget(sb, ino, EXT4_IGET_SPECIAL); | ||
| 151 | if (IS_ERR(inode)) | ||
| 152 | return PTR_ERR(inode); | ||
| 153 | num = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits; | ||
| 154 | while (i < num) { | ||
| 155 | map.m_lblk = i; | ||
| 156 | map.m_len = num - i; | ||
| 157 | n = ext4_map_blocks(NULL, inode, &map, 0); | ||
| 158 | if (n < 0) { | ||
| 159 | err = n; | ||
| 160 | break; | ||
| 161 | } | ||
| 162 | if (n == 0) { | ||
| 163 | i++; | ||
| 164 | } else { | ||
| 165 | if (!ext4_data_block_valid(sbi, map.m_pblk, n)) { | ||
| 166 | ext4_error(sb, "blocks %llu-%llu from inode %u " | ||
| 167 | "overlap system zone", map.m_pblk, | ||
| 168 | map.m_pblk + map.m_len - 1, ino); | ||
| 169 | err = -EFSCORRUPTED; | ||
| 170 | break; | ||
| 171 | } | ||
| 172 | err = add_system_zone(sbi, map.m_pblk, n); | ||
| 173 | if (err < 0) | ||
| 174 | break; | ||
| 175 | i += n; | ||
| 176 | } | ||
| 177 | } | ||
| 178 | iput(inode); | ||
| 179 | return err; | ||
| 180 | } | ||
| 181 | |||
| 140 | int ext4_setup_system_zone(struct super_block *sb) | 182 | int ext4_setup_system_zone(struct super_block *sb) |
| 141 | { | 183 | { |
| 142 | ext4_group_t ngroups = ext4_get_groups_count(sb); | 184 | ext4_group_t ngroups = ext4_get_groups_count(sb); |
| @@ -155,6 +197,7 @@ int ext4_setup_system_zone(struct super_block *sb) | |||
| 155 | return 0; | 197 | return 0; |
| 156 | 198 | ||
| 157 | for (i=0; i < ngroups; i++) { | 199 | for (i=0; i < ngroups; i++) { |
| 200 | cond_resched(); | ||
| 158 | if (ext4_bg_has_super(sb, i) && | 201 | if (ext4_bg_has_super(sb, i) && |
| 159 | ((i < 5) || ((i % flex_size) == 0))) | 202 | ((i < 5) || ((i % flex_size) == 0))) |
| 160 | add_system_zone(sbi, ext4_group_first_block_no(sb, i), | 203 | add_system_zone(sbi, ext4_group_first_block_no(sb, i), |
| @@ -171,6 +214,12 @@ int ext4_setup_system_zone(struct super_block *sb) | |||
| 171 | if (ret) | 214 | if (ret) |
| 172 | return ret; | 215 | return ret; |
| 173 | } | 216 | } |
| 217 | if (ext4_has_feature_journal(sb) && sbi->s_es->s_journal_inum) { | ||
| 218 | ret = ext4_protect_reserved_inode(sb, | ||
| 219 | le32_to_cpu(sbi->s_es->s_journal_inum)); | ||
| 220 | if (ret) | ||
| 221 | return ret; | ||
| 222 | } | ||
| 174 | 223 | ||
| 175 | if (test_opt(sb, DEBUG)) | 224 | if (test_opt(sb, DEBUG)) |
| 176 | debug_print_tree(sbi); | 225 | debug_print_tree(sbi); |
diff --git a/fs/ext4/dir.c b/fs/ext4/dir.c index 0ccd51f72048..884a6e776809 100644 --- a/fs/ext4/dir.c +++ b/fs/ext4/dir.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/buffer_head.h> | 26 | #include <linux/buffer_head.h> |
| 27 | #include <linux/slab.h> | 27 | #include <linux/slab.h> |
| 28 | #include <linux/iversion.h> | 28 | #include <linux/iversion.h> |
| 29 | #include <linux/unicode.h> | ||
| 29 | #include "ext4.h" | 30 | #include "ext4.h" |
| 30 | #include "xattr.h" | 31 | #include "xattr.h" |
| 31 | 32 | ||
| @@ -660,3 +661,50 @@ const struct file_operations ext4_dir_operations = { | |||
| 660 | .open = ext4_dir_open, | 661 | .open = ext4_dir_open, |
| 661 | .release = ext4_release_dir, | 662 | .release = ext4_release_dir, |
| 662 | }; | 663 | }; |
| 664 | |||
| 665 | #ifdef CONFIG_UNICODE | ||
| 666 | static int ext4_d_compare(const struct dentry *dentry, unsigned int len, | ||
| 667 | const char *str, const struct qstr *name) | ||
| 668 | { | ||
| 669 | struct qstr qstr = {.name = str, .len = len }; | ||
| 670 | |||
| 671 | if (!IS_CASEFOLDED(dentry->d_parent->d_inode)) { | ||
| 672 | if (len != name->len) | ||
| 673 | return -1; | ||
| 674 | return !memcmp(str, name, len); | ||
| 675 | } | ||
| 676 | |||
| 677 | return ext4_ci_compare(dentry->d_parent->d_inode, name, &qstr); | ||
| 678 | } | ||
| 679 | |||
| 680 | static int ext4_d_hash(const struct dentry *dentry, struct qstr *str) | ||
| 681 | { | ||
| 682 | const struct ext4_sb_info *sbi = EXT4_SB(dentry->d_sb); | ||
| 683 | const struct unicode_map *um = sbi->s_encoding; | ||
| 684 | unsigned char *norm; | ||
| 685 | int len, ret = 0; | ||
| 686 | |||
| 687 | if (!IS_CASEFOLDED(dentry->d_inode)) | ||
| 688 | return 0; | ||
| 689 | |||
| 690 | norm = kmalloc(PATH_MAX, GFP_ATOMIC); | ||
| 691 | if (!norm) | ||
| 692 | return -ENOMEM; | ||
| 693 | |||
| 694 | len = utf8_casefold(um, str, norm, PATH_MAX); | ||
| 695 | if (len < 0) { | ||
| 696 | if (ext4_has_strict_mode(sbi)) | ||
| 697 | ret = -EINVAL; | ||
| 698 | goto out; | ||
| 699 | } | ||
| 700 | str->hash = full_name_hash(dentry, norm, len); | ||
| 701 | out: | ||
| 702 | kfree(norm); | ||
| 703 | return ret; | ||
| 704 | } | ||
| 705 | |||
| 706 | const struct dentry_operations ext4_dentry_ops = { | ||
| 707 | .d_hash = ext4_d_hash, | ||
| 708 | .d_compare = ext4_d_compare, | ||
| 709 | }; | ||
| 710 | #endif | ||
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 0833b5fc0668..ef755e5f6f2f 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
| @@ -399,10 +399,11 @@ struct flex_groups { | |||
| 399 | #define EXT4_EOFBLOCKS_FL 0x00400000 /* Blocks allocated beyond EOF */ | 399 | #define EXT4_EOFBLOCKS_FL 0x00400000 /* Blocks allocated beyond EOF */ |
| 400 | #define EXT4_INLINE_DATA_FL 0x10000000 /* Inode has inline data. */ | 400 | #define EXT4_INLINE_DATA_FL 0x10000000 /* Inode has inline data. */ |
| 401 | #define EXT4_PROJINHERIT_FL 0x20000000 /* Create with parents projid */ | 401 | #define EXT4_PROJINHERIT_FL 0x20000000 /* Create with parents projid */ |
| 402 | #define EXT4_CASEFOLD_FL 0x40000000 /* Casefolded file */ | ||
| 402 | #define EXT4_RESERVED_FL 0x80000000 /* reserved for ext4 lib */ | 403 | #define EXT4_RESERVED_FL 0x80000000 /* reserved for ext4 lib */ |
| 403 | 404 | ||
| 404 | #define EXT4_FL_USER_VISIBLE 0x304BDFFF /* User visible flags */ | 405 | #define EXT4_FL_USER_VISIBLE 0x704BDFFF /* User visible flags */ |
| 405 | #define EXT4_FL_USER_MODIFIABLE 0x204BC0FF /* User modifiable flags */ | 406 | #define EXT4_FL_USER_MODIFIABLE 0x604BC0FF /* User modifiable flags */ |
| 406 | 407 | ||
| 407 | /* Flags we can manipulate with through EXT4_IOC_FSSETXATTR */ | 408 | /* Flags we can manipulate with through EXT4_IOC_FSSETXATTR */ |
| 408 | #define EXT4_FL_XFLAG_VISIBLE (EXT4_SYNC_FL | \ | 409 | #define EXT4_FL_XFLAG_VISIBLE (EXT4_SYNC_FL | \ |
| @@ -417,10 +418,10 @@ struct flex_groups { | |||
| 417 | EXT4_SYNC_FL | EXT4_NODUMP_FL | EXT4_NOATIME_FL |\ | 418 | EXT4_SYNC_FL | EXT4_NODUMP_FL | EXT4_NOATIME_FL |\ |
| 418 | EXT4_NOCOMPR_FL | EXT4_JOURNAL_DATA_FL |\ | 419 | EXT4_NOCOMPR_FL | EXT4_JOURNAL_DATA_FL |\ |
| 419 | EXT4_NOTAIL_FL | EXT4_DIRSYNC_FL |\ | 420 | EXT4_NOTAIL_FL | EXT4_DIRSYNC_FL |\ |
| 420 | EXT4_PROJINHERIT_FL) | 421 | EXT4_PROJINHERIT_FL | EXT4_CASEFOLD_FL) |
| 421 | 422 | ||
| 422 | /* Flags that are appropriate for regular files (all but dir-specific ones). */ | 423 | /* Flags that are appropriate for regular files (all but dir-specific ones). */ |
| 423 | #define EXT4_REG_FLMASK (~(EXT4_DIRSYNC_FL | EXT4_TOPDIR_FL)) | 424 | #define EXT4_REG_FLMASK (~(EXT4_DIRSYNC_FL | EXT4_TOPDIR_FL | EXT4_CASEFOLD_FL)) |
| 424 | 425 | ||
| 425 | /* Flags that are appropriate for non-directories/regular files. */ | 426 | /* Flags that are appropriate for non-directories/regular files. */ |
| 426 | #define EXT4_OTHER_FLMASK (EXT4_NODUMP_FL | EXT4_NOATIME_FL) | 427 | #define EXT4_OTHER_FLMASK (EXT4_NODUMP_FL | EXT4_NOATIME_FL) |
| @@ -1313,7 +1314,9 @@ struct ext4_super_block { | |||
| 1313 | __u8 s_first_error_time_hi; | 1314 | __u8 s_first_error_time_hi; |
| 1314 | __u8 s_last_error_time_hi; | 1315 | __u8 s_last_error_time_hi; |
| 1315 | __u8 s_pad[2]; | 1316 | __u8 s_pad[2]; |
| 1316 | __le32 s_reserved[96]; /* Padding to the end of the block */ | 1317 | __le16 s_encoding; /* Filename charset encoding */ |
| 1318 | __le16 s_encoding_flags; /* Filename charset encoding flags */ | ||
| 1319 | __le32 s_reserved[95]; /* Padding to the end of the block */ | ||
| 1317 | __le32 s_checksum; /* crc32c(superblock) */ | 1320 | __le32 s_checksum; /* crc32c(superblock) */ |
| 1318 | }; | 1321 | }; |
| 1319 | 1322 | ||
| @@ -1338,6 +1341,16 @@ struct ext4_super_block { | |||
| 1338 | /* Number of quota types we support */ | 1341 | /* Number of quota types we support */ |
| 1339 | #define EXT4_MAXQUOTAS 3 | 1342 | #define EXT4_MAXQUOTAS 3 |
| 1340 | 1343 | ||
| 1344 | #define EXT4_ENC_UTF8_12_1 1 | ||
| 1345 | |||
| 1346 | /* | ||
| 1347 | * Flags for ext4_sb_info.s_encoding_flags. | ||
| 1348 | */ | ||
| 1349 | #define EXT4_ENC_STRICT_MODE_FL (1 << 0) | ||
| 1350 | |||
| 1351 | #define ext4_has_strict_mode(sbi) \ | ||
| 1352 | (sbi->s_encoding_flags & EXT4_ENC_STRICT_MODE_FL) | ||
| 1353 | |||
| 1341 | /* | 1354 | /* |
| 1342 | * fourth extended-fs super-block data in memory | 1355 | * fourth extended-fs super-block data in memory |
| 1343 | */ | 1356 | */ |
| @@ -1387,6 +1400,10 @@ struct ext4_sb_info { | |||
| 1387 | struct kobject s_kobj; | 1400 | struct kobject s_kobj; |
| 1388 | struct completion s_kobj_unregister; | 1401 | struct completion s_kobj_unregister; |
| 1389 | struct super_block *s_sb; | 1402 | struct super_block *s_sb; |
| 1403 | #ifdef CONFIG_UNICODE | ||
| 1404 | struct unicode_map *s_encoding; | ||
| 1405 | __u16 s_encoding_flags; | ||
| 1406 | #endif | ||
| 1390 | 1407 | ||
| 1391 | /* Journaling */ | 1408 | /* Journaling */ |
| 1392 | struct journal_s *s_journal; | 1409 | struct journal_s *s_journal; |
| @@ -1592,9 +1609,6 @@ static inline void ext4_clear_state_flags(struct ext4_inode_info *ei) | |||
| 1592 | #define EXT4_SB(sb) (sb) | 1609 | #define EXT4_SB(sb) (sb) |
| 1593 | #endif | 1610 | #endif |
| 1594 | 1611 | ||
| 1595 | /* | ||
| 1596 | * Returns true if the inode is inode is encrypted | ||
| 1597 | */ | ||
| 1598 | #define NEXT_ORPHAN(inode) EXT4_I(inode)->i_dtime | 1612 | #define NEXT_ORPHAN(inode) EXT4_I(inode)->i_dtime |
| 1599 | 1613 | ||
| 1600 | /* | 1614 | /* |
| @@ -1663,6 +1677,7 @@ static inline void ext4_clear_state_flags(struct ext4_inode_info *ei) | |||
| 1663 | #define EXT4_FEATURE_INCOMPAT_LARGEDIR 0x4000 /* >2GB or 3-lvl htree */ | 1677 | #define EXT4_FEATURE_INCOMPAT_LARGEDIR 0x4000 /* >2GB or 3-lvl htree */ |
| 1664 | #define EXT4_FEATURE_INCOMPAT_INLINE_DATA 0x8000 /* data in inode */ | 1678 | #define EXT4_FEATURE_INCOMPAT_INLINE_DATA 0x8000 /* data in inode */ |
| 1665 | #define EXT4_FEATURE_INCOMPAT_ENCRYPT 0x10000 | 1679 | #define EXT4_FEATURE_INCOMPAT_ENCRYPT 0x10000 |
| 1680 | #define EXT4_FEATURE_INCOMPAT_CASEFOLD 0x20000 | ||
| 1666 | 1681 | ||
| 1667 | extern void ext4_update_dynamic_rev(struct super_block *sb); | 1682 | extern void ext4_update_dynamic_rev(struct super_block *sb); |
| 1668 | 1683 | ||
| @@ -1756,6 +1771,7 @@ EXT4_FEATURE_INCOMPAT_FUNCS(csum_seed, CSUM_SEED) | |||
| 1756 | EXT4_FEATURE_INCOMPAT_FUNCS(largedir, LARGEDIR) | 1771 | EXT4_FEATURE_INCOMPAT_FUNCS(largedir, LARGEDIR) |
| 1757 | EXT4_FEATURE_INCOMPAT_FUNCS(inline_data, INLINE_DATA) | 1772 | EXT4_FEATURE_INCOMPAT_FUNCS(inline_data, INLINE_DATA) |
| 1758 | EXT4_FEATURE_INCOMPAT_FUNCS(encrypt, ENCRYPT) | 1773 | EXT4_FEATURE_INCOMPAT_FUNCS(encrypt, ENCRYPT) |
| 1774 | EXT4_FEATURE_INCOMPAT_FUNCS(casefold, CASEFOLD) | ||
| 1759 | 1775 | ||
| 1760 | #define EXT2_FEATURE_COMPAT_SUPP EXT4_FEATURE_COMPAT_EXT_ATTR | 1776 | #define EXT2_FEATURE_COMPAT_SUPP EXT4_FEATURE_COMPAT_EXT_ATTR |
| 1761 | #define EXT2_FEATURE_INCOMPAT_SUPP (EXT4_FEATURE_INCOMPAT_FILETYPE| \ | 1777 | #define EXT2_FEATURE_INCOMPAT_SUPP (EXT4_FEATURE_INCOMPAT_FILETYPE| \ |
| @@ -1783,6 +1799,7 @@ EXT4_FEATURE_INCOMPAT_FUNCS(encrypt, ENCRYPT) | |||
| 1783 | EXT4_FEATURE_INCOMPAT_MMP | \ | 1799 | EXT4_FEATURE_INCOMPAT_MMP | \ |
| 1784 | EXT4_FEATURE_INCOMPAT_INLINE_DATA | \ | 1800 | EXT4_FEATURE_INCOMPAT_INLINE_DATA | \ |
| 1785 | EXT4_FEATURE_INCOMPAT_ENCRYPT | \ | 1801 | EXT4_FEATURE_INCOMPAT_ENCRYPT | \ |
| 1802 | EXT4_FEATURE_INCOMPAT_CASEFOLD | \ | ||
| 1786 | EXT4_FEATURE_INCOMPAT_CSUM_SEED | \ | 1803 | EXT4_FEATURE_INCOMPAT_CSUM_SEED | \ |
| 1787 | EXT4_FEATURE_INCOMPAT_LARGEDIR) | 1804 | EXT4_FEATURE_INCOMPAT_LARGEDIR) |
| 1788 | #define EXT4_FEATURE_RO_COMPAT_SUPP (EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER| \ | 1805 | #define EXT4_FEATURE_RO_COMPAT_SUPP (EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER| \ |
| @@ -2376,8 +2393,8 @@ extern int ext4_check_all_de(struct inode *dir, struct buffer_head *bh, | |||
| 2376 | extern int ext4_sync_file(struct file *, loff_t, loff_t, int); | 2393 | extern int ext4_sync_file(struct file *, loff_t, loff_t, int); |
| 2377 | 2394 | ||
| 2378 | /* hash.c */ | 2395 | /* hash.c */ |
| 2379 | extern int ext4fs_dirhash(const char *name, int len, struct | 2396 | extern int ext4fs_dirhash(const struct inode *dir, const char *name, int len, |
| 2380 | dx_hash_info *hinfo); | 2397 | struct dx_hash_info *hinfo); |
| 2381 | 2398 | ||
| 2382 | /* ialloc.c */ | 2399 | /* ialloc.c */ |
| 2383 | extern struct inode *__ext4_new_inode(handle_t *, struct inode *, umode_t, | 2400 | extern struct inode *__ext4_new_inode(handle_t *, struct inode *, umode_t, |
| @@ -2973,6 +2990,10 @@ static inline void ext4_unlock_group(struct super_block *sb, | |||
| 2973 | /* dir.c */ | 2990 | /* dir.c */ |
| 2974 | extern const struct file_operations ext4_dir_operations; | 2991 | extern const struct file_operations ext4_dir_operations; |
| 2975 | 2992 | ||
| 2993 | #ifdef CONFIG_UNICODE | ||
| 2994 | extern const struct dentry_operations ext4_dentry_ops; | ||
| 2995 | #endif | ||
| 2996 | |||
| 2976 | /* file.c */ | 2997 | /* file.c */ |
| 2977 | extern const struct inode_operations ext4_file_inode_operations; | 2998 | extern const struct inode_operations ext4_file_inode_operations; |
| 2978 | extern const struct file_operations ext4_file_operations; | 2999 | extern const struct file_operations ext4_file_operations; |
| @@ -3065,6 +3086,10 @@ extern void initialize_dirent_tail(struct ext4_dir_entry_tail *t, | |||
| 3065 | extern int ext4_handle_dirty_dirent_node(handle_t *handle, | 3086 | extern int ext4_handle_dirty_dirent_node(handle_t *handle, |
| 3066 | struct inode *inode, | 3087 | struct inode *inode, |
| 3067 | struct buffer_head *bh); | 3088 | struct buffer_head *bh); |
| 3089 | extern int ext4_ci_compare(const struct inode *parent, | ||
| 3090 | const struct qstr *name, | ||
| 3091 | const struct qstr *entry); | ||
| 3092 | |||
| 3068 | #define S_SHIFT 12 | 3093 | #define S_SHIFT 12 |
| 3069 | static const unsigned char ext4_type_by_mode[(S_IFMT >> S_SHIFT) + 1] = { | 3094 | static const unsigned char ext4_type_by_mode[(S_IFMT >> S_SHIFT) + 1] = { |
| 3070 | [S_IFREG >> S_SHIFT] = EXT4_FT_REG_FILE, | 3095 | [S_IFREG >> S_SHIFT] = EXT4_FT_REG_FILE, |
diff --git a/fs/ext4/extents_status.c b/fs/ext4/extents_status.c index 2b439afafe13..023a3eb3afa3 100644 --- a/fs/ext4/extents_status.c +++ b/fs/ext4/extents_status.c | |||
| @@ -711,7 +711,7 @@ static void ext4_es_insert_extent_ind_check(struct inode *inode, | |||
| 711 | * We don't need to check unwritten extent because | 711 | * We don't need to check unwritten extent because |
| 712 | * indirect-based file doesn't have it. | 712 | * indirect-based file doesn't have it. |
| 713 | */ | 713 | */ |
| 714 | BUG_ON(1); | 714 | BUG(); |
| 715 | } | 715 | } |
| 716 | } else if (retval == 0) { | 716 | } else if (retval == 0) { |
| 717 | if (ext4_es_is_written(es)) { | 717 | if (ext4_es_is_written(es)) { |
| @@ -780,7 +780,7 @@ static int __es_insert_extent(struct inode *inode, struct extent_status *newes) | |||
| 780 | } | 780 | } |
| 781 | p = &(*p)->rb_right; | 781 | p = &(*p)->rb_right; |
| 782 | } else { | 782 | } else { |
| 783 | BUG_ON(1); | 783 | BUG(); |
| 784 | return -EINVAL; | 784 | return -EINVAL; |
| 785 | } | 785 | } |
| 786 | } | 786 | } |
diff --git a/fs/ext4/hash.c b/fs/ext4/hash.c index 46b24da33a28..d358bfcb6b3f 100644 --- a/fs/ext4/hash.c +++ b/fs/ext4/hash.c | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #include <linux/fs.h> | 8 | #include <linux/fs.h> |
| 9 | #include <linux/unicode.h> | ||
| 9 | #include <linux/compiler.h> | 10 | #include <linux/compiler.h> |
| 10 | #include <linux/bitops.h> | 11 | #include <linux/bitops.h> |
| 11 | #include "ext4.h" | 12 | #include "ext4.h" |
| @@ -196,7 +197,8 @@ static void str2hashbuf_unsigned(const char *msg, int len, __u32 *buf, int num) | |||
| 196 | * represented, and whether or not the returned hash is 32 bits or 64 | 197 | * represented, and whether or not the returned hash is 32 bits or 64 |
| 197 | * bits. 32 bit hashes will return 0 for the minor hash. | 198 | * bits. 32 bit hashes will return 0 for the minor hash. |
| 198 | */ | 199 | */ |
| 199 | int ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo) | 200 | static int __ext4fs_dirhash(const char *name, int len, |
| 201 | struct dx_hash_info *hinfo) | ||
| 200 | { | 202 | { |
| 201 | __u32 hash; | 203 | __u32 hash; |
| 202 | __u32 minor_hash = 0; | 204 | __u32 minor_hash = 0; |
| @@ -268,3 +270,33 @@ int ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo) | |||
| 268 | hinfo->minor_hash = minor_hash; | 270 | hinfo->minor_hash = minor_hash; |
| 269 | return 0; | 271 | return 0; |
| 270 | } | 272 | } |
| 273 | |||
| 274 | int ext4fs_dirhash(const struct inode *dir, const char *name, int len, | ||
| 275 | struct dx_hash_info *hinfo) | ||
| 276 | { | ||
| 277 | #ifdef CONFIG_UNICODE | ||
| 278 | const struct unicode_map *um = EXT4_SB(dir->i_sb)->s_encoding; | ||
| 279 | int r, dlen; | ||
| 280 | unsigned char *buff; | ||
| 281 | struct qstr qstr = {.name = name, .len = len }; | ||
| 282 | |||
| 283 | if (len && IS_CASEFOLDED(dir)) { | ||
| 284 | buff = kzalloc(sizeof(char) * PATH_MAX, GFP_KERNEL); | ||
| 285 | if (!buff) | ||
| 286 | return -ENOMEM; | ||
| 287 | |||
| 288 | dlen = utf8_casefold(um, &qstr, buff, PATH_MAX); | ||
| 289 | if (dlen < 0) { | ||
| 290 | kfree(buff); | ||
| 291 | goto opaque_seq; | ||
| 292 | } | ||
| 293 | |||
| 294 | r = __ext4fs_dirhash(buff, dlen, hinfo); | ||
| 295 | |||
| 296 | kfree(buff); | ||
| 297 | return r; | ||
| 298 | } | ||
| 299 | opaque_seq: | ||
| 300 | #endif | ||
| 301 | return __ext4fs_dirhash(name, len, hinfo); | ||
| 302 | } | ||
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index f3e17a8c84b4..764ff4c56233 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c | |||
| @@ -455,7 +455,7 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent, | |||
| 455 | if (qstr) { | 455 | if (qstr) { |
| 456 | hinfo.hash_version = DX_HASH_HALF_MD4; | 456 | hinfo.hash_version = DX_HASH_HALF_MD4; |
| 457 | hinfo.seed = sbi->s_hash_seed; | 457 | hinfo.seed = sbi->s_hash_seed; |
| 458 | ext4fs_dirhash(qstr->name, qstr->len, &hinfo); | 458 | ext4fs_dirhash(parent, qstr->name, qstr->len, &hinfo); |
| 459 | grp = hinfo.hash; | 459 | grp = hinfo.hash; |
| 460 | } else | 460 | } else |
| 461 | grp = prandom_u32(); | 461 | grp = prandom_u32(); |
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 56f6e1782d5f..f73bc3925282 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c | |||
| @@ -1407,7 +1407,7 @@ int htree_inlinedir_to_tree(struct file *dir_file, | |||
| 1407 | } | 1407 | } |
| 1408 | } | 1408 | } |
| 1409 | 1409 | ||
| 1410 | ext4fs_dirhash(de->name, de->name_len, hinfo); | 1410 | ext4fs_dirhash(dir, de->name, de->name_len, hinfo); |
| 1411 | if ((hinfo->hash < start_hash) || | 1411 | if ((hinfo->hash < start_hash) || |
| 1412 | ((hinfo->hash == start_hash) && | 1412 | ((hinfo->hash == start_hash) && |
| 1413 | (hinfo->minor_hash < start_minor_hash))) | 1413 | (hinfo->minor_hash < start_minor_hash))) |
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index b32a57bc5d5d..82298c63ea6d 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
| @@ -399,6 +399,10 @@ static int __check_block_validity(struct inode *inode, const char *func, | |||
| 399 | unsigned int line, | 399 | unsigned int line, |
| 400 | struct ext4_map_blocks *map) | 400 | struct ext4_map_blocks *map) |
| 401 | { | 401 | { |
| 402 | if (ext4_has_feature_journal(inode->i_sb) && | ||
| 403 | (inode->i_ino == | ||
| 404 | le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum))) | ||
| 405 | return 0; | ||
| 402 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, | 406 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, |
| 403 | map->m_len)) { | 407 | map->m_len)) { |
| 404 | ext4_error_inode(inode, func, line, map->m_pblk, | 408 | ext4_error_inode(inode, func, line, map->m_pblk, |
| @@ -541,7 +545,7 @@ int ext4_map_blocks(handle_t *handle, struct inode *inode, | |||
| 541 | map->m_len = retval; | 545 | map->m_len = retval; |
| 542 | retval = 0; | 546 | retval = 0; |
| 543 | } else { | 547 | } else { |
| 544 | BUG_ON(1); | 548 | BUG(); |
| 545 | } | 549 | } |
| 546 | #ifdef ES_AGGRESSIVE_TEST | 550 | #ifdef ES_AGGRESSIVE_TEST |
| 547 | ext4_map_blocks_es_recheck(handle, inode, map, | 551 | ext4_map_blocks_es_recheck(handle, inode, map, |
| @@ -1876,7 +1880,7 @@ static int ext4_da_map_blocks(struct inode *inode, sector_t iblock, | |||
| 1876 | else if (ext4_es_is_unwritten(&es)) | 1880 | else if (ext4_es_is_unwritten(&es)) |
| 1877 | map->m_flags |= EXT4_MAP_UNWRITTEN; | 1881 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
| 1878 | else | 1882 | else |
| 1879 | BUG_ON(1); | 1883 | BUG(); |
| 1880 | 1884 | ||
| 1881 | #ifdef ES_AGGRESSIVE_TEST | 1885 | #ifdef ES_AGGRESSIVE_TEST |
| 1882 | ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); | 1886 | ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0); |
| @@ -4738,9 +4742,11 @@ void ext4_set_inode_flags(struct inode *inode) | |||
| 4738 | new_fl |= S_DAX; | 4742 | new_fl |= S_DAX; |
| 4739 | if (flags & EXT4_ENCRYPT_FL) | 4743 | if (flags & EXT4_ENCRYPT_FL) |
| 4740 | new_fl |= S_ENCRYPTED; | 4744 | new_fl |= S_ENCRYPTED; |
| 4745 | if (flags & EXT4_CASEFOLD_FL) | ||
| 4746 | new_fl |= S_CASEFOLD; | ||
| 4741 | inode_set_flags(inode, new_fl, | 4747 | inode_set_flags(inode, new_fl, |
| 4742 | S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX| | 4748 | S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX| |
| 4743 | S_ENCRYPTED); | 4749 | S_ENCRYPTED|S_CASEFOLD); |
| 4744 | } | 4750 | } |
| 4745 | 4751 | ||
| 4746 | static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, | 4752 | static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, |
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index bab3da4f1e0d..7e85ecf0b849 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c | |||
| @@ -278,6 +278,7 @@ static int ext4_ioctl_setflags(struct inode *inode, | |||
| 278 | struct ext4_iloc iloc; | 278 | struct ext4_iloc iloc; |
| 279 | unsigned int oldflags, mask, i; | 279 | unsigned int oldflags, mask, i; |
| 280 | unsigned int jflag; | 280 | unsigned int jflag; |
| 281 | struct super_block *sb = inode->i_sb; | ||
| 281 | 282 | ||
| 282 | /* Is it quota file? Do not allow user to mess with it */ | 283 | /* Is it quota file? Do not allow user to mess with it */ |
| 283 | if (ext4_is_quota_file(inode)) | 284 | if (ext4_is_quota_file(inode)) |
| @@ -322,6 +323,23 @@ static int ext4_ioctl_setflags(struct inode *inode, | |||
| 322 | goto flags_out; | 323 | goto flags_out; |
| 323 | } | 324 | } |
| 324 | 325 | ||
| 326 | if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) { | ||
| 327 | if (!ext4_has_feature_casefold(sb)) { | ||
| 328 | err = -EOPNOTSUPP; | ||
| 329 | goto flags_out; | ||
| 330 | } | ||
| 331 | |||
| 332 | if (!S_ISDIR(inode->i_mode)) { | ||
| 333 | err = -ENOTDIR; | ||
| 334 | goto flags_out; | ||
| 335 | } | ||
| 336 | |||
| 337 | if (!ext4_empty_dir(inode)) { | ||
| 338 | err = -ENOTEMPTY; | ||
| 339 | goto flags_out; | ||
| 340 | } | ||
| 341 | } | ||
| 342 | |||
| 325 | handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); | 343 | handle = ext4_journal_start(inode, EXT4_HT_INODE, 1); |
| 326 | if (IS_ERR(handle)) { | 344 | if (IS_ERR(handle)) { |
| 327 | err = PTR_ERR(handle); | 345 | err = PTR_ERR(handle); |
| @@ -978,7 +996,7 @@ mext_out: | |||
| 978 | if (err == 0) | 996 | if (err == 0) |
| 979 | err = err2; | 997 | err = err2; |
| 980 | mnt_drop_write_file(filp); | 998 | mnt_drop_write_file(filp); |
| 981 | if (!err && (o_group > EXT4_SB(sb)->s_groups_count) && | 999 | if (!err && (o_group < EXT4_SB(sb)->s_groups_count) && |
| 982 | ext4_has_group_desc_csum(sb) && | 1000 | ext4_has_group_desc_csum(sb) && |
| 983 | test_opt(sb, INIT_INODE_TABLE)) | 1001 | test_opt(sb, INIT_INODE_TABLE)) |
| 984 | err = ext4_register_li_request(sb, o_group); | 1002 | err = ext4_register_li_request(sb, o_group); |
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 6fb76d408093..99ba720dbb7a 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
| @@ -1539,7 +1539,7 @@ static int mb_find_extent(struct ext4_buddy *e4b, int block, | |||
| 1539 | ex->fe_len += 1 << order; | 1539 | ex->fe_len += 1 << order; |
| 1540 | } | 1540 | } |
| 1541 | 1541 | ||
| 1542 | if (ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3))) { | 1542 | if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) { |
| 1543 | /* Should never happen! (but apparently sometimes does?!?) */ | 1543 | /* Should never happen! (but apparently sometimes does?!?) */ |
| 1544 | WARN_ON(1); | 1544 | WARN_ON(1); |
| 1545 | ext4_error(e4b->bd_sb, "corruption or bug in mb_find_extent " | 1545 | ext4_error(e4b->bd_sb, "corruption or bug in mb_find_extent " |
| @@ -2490,6 +2490,7 @@ static int ext4_mb_init_backend(struct super_block *sb) | |||
| 2490 | sbi->s_buddy_cache->i_ino = EXT4_BAD_INO; | 2490 | sbi->s_buddy_cache->i_ino = EXT4_BAD_INO; |
| 2491 | EXT4_I(sbi->s_buddy_cache)->i_disksize = 0; | 2491 | EXT4_I(sbi->s_buddy_cache)->i_disksize = 0; |
| 2492 | for (i = 0; i < ngroups; i++) { | 2492 | for (i = 0; i < ngroups; i++) { |
| 2493 | cond_resched(); | ||
| 2493 | desc = ext4_get_group_desc(sb, i, NULL); | 2494 | desc = ext4_get_group_desc(sb, i, NULL); |
| 2494 | if (desc == NULL) { | 2495 | if (desc == NULL) { |
| 2495 | ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i); | 2496 | ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i); |
| @@ -2705,6 +2706,7 @@ int ext4_mb_release(struct super_block *sb) | |||
| 2705 | 2706 | ||
| 2706 | if (sbi->s_group_info) { | 2707 | if (sbi->s_group_info) { |
| 2707 | for (i = 0; i < ngroups; i++) { | 2708 | for (i = 0; i < ngroups; i++) { |
| 2709 | cond_resched(); | ||
| 2708 | grinfo = ext4_get_group_info(sb, i); | 2710 | grinfo = ext4_get_group_info(sb, i); |
| 2709 | #ifdef DOUBLE_CHECK | 2711 | #ifdef DOUBLE_CHECK |
| 2710 | kfree(grinfo->bb_bitmap); | 2712 | kfree(grinfo->bb_bitmap); |
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 980166a8122a..e917830eae84 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | #include <linux/buffer_head.h> | 35 | #include <linux/buffer_head.h> |
| 36 | #include <linux/bio.h> | 36 | #include <linux/bio.h> |
| 37 | #include <linux/iversion.h> | 37 | #include <linux/iversion.h> |
| 38 | #include <linux/unicode.h> | ||
| 38 | #include "ext4.h" | 39 | #include "ext4.h" |
| 39 | #include "ext4_jbd2.h" | 40 | #include "ext4_jbd2.h" |
| 40 | 41 | ||
| @@ -629,7 +630,7 @@ static struct stats dx_show_leaf(struct inode *dir, | |||
| 629 | } | 630 | } |
| 630 | if (!fscrypt_has_encryption_key(dir)) { | 631 | if (!fscrypt_has_encryption_key(dir)) { |
| 631 | /* Directory is not encrypted */ | 632 | /* Directory is not encrypted */ |
| 632 | ext4fs_dirhash(de->name, | 633 | ext4fs_dirhash(dir, de->name, |
| 633 | de->name_len, &h); | 634 | de->name_len, &h); |
| 634 | printk("%*.s:(U)%x.%u ", len, | 635 | printk("%*.s:(U)%x.%u ", len, |
| 635 | name, h.hash, | 636 | name, h.hash, |
| @@ -662,8 +663,8 @@ static struct stats dx_show_leaf(struct inode *dir, | |||
| 662 | name = fname_crypto_str.name; | 663 | name = fname_crypto_str.name; |
| 663 | len = fname_crypto_str.len; | 664 | len = fname_crypto_str.len; |
| 664 | } | 665 | } |
| 665 | ext4fs_dirhash(de->name, de->name_len, | 666 | ext4fs_dirhash(dir, de->name, |
| 666 | &h); | 667 | de->name_len, &h); |
| 667 | printk("%*.s:(E)%x.%u ", len, name, | 668 | printk("%*.s:(E)%x.%u ", len, name, |
| 668 | h.hash, (unsigned) ((char *) de | 669 | h.hash, (unsigned) ((char *) de |
| 669 | - base)); | 670 | - base)); |
| @@ -673,7 +674,7 @@ static struct stats dx_show_leaf(struct inode *dir, | |||
| 673 | #else | 674 | #else |
| 674 | int len = de->name_len; | 675 | int len = de->name_len; |
| 675 | char *name = de->name; | 676 | char *name = de->name; |
| 676 | ext4fs_dirhash(de->name, de->name_len, &h); | 677 | ext4fs_dirhash(dir, de->name, de->name_len, &h); |
| 677 | printk("%*.s:%x.%u ", len, name, h.hash, | 678 | printk("%*.s:%x.%u ", len, name, h.hash, |
| 678 | (unsigned) ((char *) de - base)); | 679 | (unsigned) ((char *) de - base)); |
| 679 | #endif | 680 | #endif |
| @@ -762,7 +763,7 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, | |||
| 762 | hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned; | 763 | hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned; |
| 763 | hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed; | 764 | hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed; |
| 764 | if (fname && fname_name(fname)) | 765 | if (fname && fname_name(fname)) |
| 765 | ext4fs_dirhash(fname_name(fname), fname_len(fname), hinfo); | 766 | ext4fs_dirhash(dir, fname_name(fname), fname_len(fname), hinfo); |
| 766 | hash = hinfo->hash; | 767 | hash = hinfo->hash; |
| 767 | 768 | ||
| 768 | if (root->info.unused_flags & 1) { | 769 | if (root->info.unused_flags & 1) { |
| @@ -1008,7 +1009,7 @@ static int htree_dirblock_to_tree(struct file *dir_file, | |||
| 1008 | /* silently ignore the rest of the block */ | 1009 | /* silently ignore the rest of the block */ |
| 1009 | break; | 1010 | break; |
| 1010 | } | 1011 | } |
| 1011 | ext4fs_dirhash(de->name, de->name_len, hinfo); | 1012 | ext4fs_dirhash(dir, de->name, de->name_len, hinfo); |
| 1012 | if ((hinfo->hash < start_hash) || | 1013 | if ((hinfo->hash < start_hash) || |
| 1013 | ((hinfo->hash == start_hash) && | 1014 | ((hinfo->hash == start_hash) && |
| 1014 | (hinfo->minor_hash < start_minor_hash))) | 1015 | (hinfo->minor_hash < start_minor_hash))) |
| @@ -1197,7 +1198,7 @@ static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, | |||
| 1197 | 1198 | ||
| 1198 | while ((char *) de < base + blocksize) { | 1199 | while ((char *) de < base + blocksize) { |
| 1199 | if (de->name_len && de->inode) { | 1200 | if (de->name_len && de->inode) { |
| 1200 | ext4fs_dirhash(de->name, de->name_len, &h); | 1201 | ext4fs_dirhash(dir, de->name, de->name_len, &h); |
| 1201 | map_tail--; | 1202 | map_tail--; |
| 1202 | map_tail->hash = h.hash; | 1203 | map_tail->hash = h.hash; |
| 1203 | map_tail->offs = ((char *) de - base)>>2; | 1204 | map_tail->offs = ((char *) de - base)>>2; |
| @@ -1252,15 +1253,52 @@ static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block) | |||
| 1252 | dx_set_count(entries, count + 1); | 1253 | dx_set_count(entries, count + 1); |
| 1253 | } | 1254 | } |
| 1254 | 1255 | ||
| 1256 | #ifdef CONFIG_UNICODE | ||
| 1257 | /* | ||
| 1258 | * Test whether a case-insensitive directory entry matches the filename | ||
| 1259 | * being searched for. | ||
| 1260 | * | ||
| 1261 | * Returns: 0 if the directory entry matches, more than 0 if it | ||
| 1262 | * doesn't match or less than zero on error. | ||
| 1263 | */ | ||
| 1264 | int ext4_ci_compare(const struct inode *parent, const struct qstr *name, | ||
| 1265 | const struct qstr *entry) | ||
| 1266 | { | ||
| 1267 | const struct ext4_sb_info *sbi = EXT4_SB(parent->i_sb); | ||
| 1268 | const struct unicode_map *um = sbi->s_encoding; | ||
| 1269 | int ret; | ||
| 1270 | |||
| 1271 | ret = utf8_strncasecmp(um, name, entry); | ||
| 1272 | if (ret < 0) { | ||
| 1273 | /* Handle invalid character sequence as either an error | ||
| 1274 | * or as an opaque byte sequence. | ||
| 1275 | */ | ||
| 1276 | if (ext4_has_strict_mode(sbi)) | ||
| 1277 | return -EINVAL; | ||
| 1278 | |||
| 1279 | if (name->len != entry->len) | ||
| 1280 | return 1; | ||
| 1281 | |||
| 1282 | return !!memcmp(name->name, entry->name, name->len); | ||
| 1283 | } | ||
| 1284 | |||
| 1285 | return ret; | ||
| 1286 | } | ||
| 1287 | #endif | ||
| 1288 | |||
| 1255 | /* | 1289 | /* |
| 1256 | * Test whether a directory entry matches the filename being searched for. | 1290 | * Test whether a directory entry matches the filename being searched for. |
| 1257 | * | 1291 | * |
| 1258 | * Return: %true if the directory entry matches, otherwise %false. | 1292 | * Return: %true if the directory entry matches, otherwise %false. |
| 1259 | */ | 1293 | */ |
| 1260 | static inline bool ext4_match(const struct ext4_filename *fname, | 1294 | static inline bool ext4_match(const struct inode *parent, |
| 1295 | const struct ext4_filename *fname, | ||
| 1261 | const struct ext4_dir_entry_2 *de) | 1296 | const struct ext4_dir_entry_2 *de) |
| 1262 | { | 1297 | { |
| 1263 | struct fscrypt_name f; | 1298 | struct fscrypt_name f; |
| 1299 | #ifdef CONFIG_UNICODE | ||
| 1300 | const struct qstr entry = {.name = de->name, .len = de->name_len}; | ||
| 1301 | #endif | ||
| 1264 | 1302 | ||
| 1265 | if (!de->inode) | 1303 | if (!de->inode) |
| 1266 | return false; | 1304 | return false; |
| @@ -1270,6 +1308,12 @@ static inline bool ext4_match(const struct ext4_filename *fname, | |||
| 1270 | #ifdef CONFIG_FS_ENCRYPTION | 1308 | #ifdef CONFIG_FS_ENCRYPTION |
| 1271 | f.crypto_buf = fname->crypto_buf; | 1309 | f.crypto_buf = fname->crypto_buf; |
| 1272 | #endif | 1310 | #endif |
| 1311 | |||
| 1312 | #ifdef CONFIG_UNICODE | ||
| 1313 | if (EXT4_SB(parent->i_sb)->s_encoding && IS_CASEFOLDED(parent)) | ||
| 1314 | return (ext4_ci_compare(parent, fname->usr_fname, &entry) == 0); | ||
| 1315 | #endif | ||
| 1316 | |||
| 1273 | return fscrypt_match_name(&f, de->name, de->name_len); | 1317 | return fscrypt_match_name(&f, de->name, de->name_len); |
| 1274 | } | 1318 | } |
| 1275 | 1319 | ||
| @@ -1290,7 +1334,7 @@ int ext4_search_dir(struct buffer_head *bh, char *search_buf, int buf_size, | |||
| 1290 | /* this code is executed quadratically often */ | 1334 | /* this code is executed quadratically often */ |
| 1291 | /* do minimal checking `by hand' */ | 1335 | /* do minimal checking `by hand' */ |
| 1292 | if ((char *) de + de->name_len <= dlimit && | 1336 | if ((char *) de + de->name_len <= dlimit && |
| 1293 | ext4_match(fname, de)) { | 1337 | ext4_match(dir, fname, de)) { |
| 1294 | /* found a match - just to be sure, do | 1338 | /* found a match - just to be sure, do |
| 1295 | * a full check */ | 1339 | * a full check */ |
| 1296 | if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data, | 1340 | if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data, |
| @@ -1588,6 +1632,17 @@ static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsi | |||
| 1588 | return ERR_PTR(-EPERM); | 1632 | return ERR_PTR(-EPERM); |
| 1589 | } | 1633 | } |
| 1590 | } | 1634 | } |
| 1635 | |||
| 1636 | #ifdef CONFIG_UNICODE | ||
| 1637 | if (!inode && IS_CASEFOLDED(dir)) { | ||
| 1638 | /* Eventually we want to call d_add_ci(dentry, NULL) | ||
| 1639 | * for negative dentries in the encoding case as | ||
| 1640 | * well. For now, prevent the negative dentry | ||
| 1641 | * from being cached. | ||
| 1642 | */ | ||
| 1643 | return NULL; | ||
| 1644 | } | ||
| 1645 | #endif | ||
| 1591 | return d_splice_alias(inode, dentry); | 1646 | return d_splice_alias(inode, dentry); |
| 1592 | } | 1647 | } |
| 1593 | 1648 | ||
| @@ -1798,7 +1853,7 @@ int ext4_find_dest_de(struct inode *dir, struct inode *inode, | |||
| 1798 | if (ext4_check_dir_entry(dir, NULL, de, bh, | 1853 | if (ext4_check_dir_entry(dir, NULL, de, bh, |
| 1799 | buf, buf_size, offset)) | 1854 | buf, buf_size, offset)) |
| 1800 | return -EFSCORRUPTED; | 1855 | return -EFSCORRUPTED; |
| 1801 | if (ext4_match(fname, de)) | 1856 | if (ext4_match(dir, fname, de)) |
| 1802 | return -EEXIST; | 1857 | return -EEXIST; |
| 1803 | nlen = EXT4_DIR_REC_LEN(de->name_len); | 1858 | nlen = EXT4_DIR_REC_LEN(de->name_len); |
| 1804 | rlen = ext4_rec_len_from_disk(de->rec_len, buf_size); | 1859 | rlen = ext4_rec_len_from_disk(de->rec_len, buf_size); |
| @@ -1983,7 +2038,7 @@ static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname, | |||
| 1983 | if (fname->hinfo.hash_version <= DX_HASH_TEA) | 2038 | if (fname->hinfo.hash_version <= DX_HASH_TEA) |
| 1984 | fname->hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned; | 2039 | fname->hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned; |
| 1985 | fname->hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed; | 2040 | fname->hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed; |
| 1986 | ext4fs_dirhash(fname_name(fname), fname_len(fname), &fname->hinfo); | 2041 | ext4fs_dirhash(dir, fname_name(fname), fname_len(fname), &fname->hinfo); |
| 1987 | 2042 | ||
| 1988 | memset(frames, 0, sizeof(frames)); | 2043 | memset(frames, 0, sizeof(frames)); |
| 1989 | frame = frames; | 2044 | frame = frames; |
| @@ -2036,6 +2091,7 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry, | |||
| 2036 | struct ext4_dir_entry_2 *de; | 2091 | struct ext4_dir_entry_2 *de; |
| 2037 | struct ext4_dir_entry_tail *t; | 2092 | struct ext4_dir_entry_tail *t; |
| 2038 | struct super_block *sb; | 2093 | struct super_block *sb; |
| 2094 | struct ext4_sb_info *sbi; | ||
| 2039 | struct ext4_filename fname; | 2095 | struct ext4_filename fname; |
| 2040 | int retval; | 2096 | int retval; |
| 2041 | int dx_fallback=0; | 2097 | int dx_fallback=0; |
| @@ -2047,10 +2103,17 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry, | |||
| 2047 | csum_size = sizeof(struct ext4_dir_entry_tail); | 2103 | csum_size = sizeof(struct ext4_dir_entry_tail); |
| 2048 | 2104 | ||
| 2049 | sb = dir->i_sb; | 2105 | sb = dir->i_sb; |
| 2106 | sbi = EXT4_SB(sb); | ||
| 2050 | blocksize = sb->s_blocksize; | 2107 | blocksize = sb->s_blocksize; |
| 2051 | if (!dentry->d_name.len) | 2108 | if (!dentry->d_name.len) |
| 2052 | return -EINVAL; | 2109 | return -EINVAL; |
| 2053 | 2110 | ||
| 2111 | #ifdef CONFIG_UNICODE | ||
| 2112 | if (ext4_has_strict_mode(sbi) && IS_CASEFOLDED(dir) && | ||
| 2113 | utf8_validate(sbi->s_encoding, &dentry->d_name)) | ||
| 2114 | return -EINVAL; | ||
| 2115 | #endif | ||
| 2116 | |||
| 2054 | retval = ext4_fname_setup_filename(dir, &dentry->d_name, 0, &fname); | 2117 | retval = ext4_fname_setup_filename(dir, &dentry->d_name, 0, &fname); |
| 2055 | if (retval) | 2118 | if (retval) |
| 2056 | return retval; | 2119 | return retval; |
| @@ -2975,6 +3038,17 @@ static int ext4_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 2975 | ext4_update_dx_flag(dir); | 3038 | ext4_update_dx_flag(dir); |
| 2976 | ext4_mark_inode_dirty(handle, dir); | 3039 | ext4_mark_inode_dirty(handle, dir); |
| 2977 | 3040 | ||
| 3041 | #ifdef CONFIG_UNICODE | ||
| 3042 | /* VFS negative dentries are incompatible with Encoding and | ||
| 3043 | * Case-insensitiveness. Eventually we'll want avoid | ||
| 3044 | * invalidating the dentries here, alongside with returning the | ||
| 3045 | * negative dentries at ext4_lookup(), when it is better | ||
| 3046 | * supported by the VFS for the CI case. | ||
| 3047 | */ | ||
| 3048 | if (IS_CASEFOLDED(dir)) | ||
| 3049 | d_invalidate(dentry); | ||
| 3050 | #endif | ||
| 3051 | |||
| 2978 | end_rmdir: | 3052 | end_rmdir: |
| 2979 | brelse(bh); | 3053 | brelse(bh); |
| 2980 | if (handle) | 3054 | if (handle) |
| @@ -3044,6 +3118,17 @@ static int ext4_unlink(struct inode *dir, struct dentry *dentry) | |||
| 3044 | inode->i_ctime = current_time(inode); | 3118 | inode->i_ctime = current_time(inode); |
| 3045 | ext4_mark_inode_dirty(handle, inode); | 3119 | ext4_mark_inode_dirty(handle, inode); |
| 3046 | 3120 | ||
| 3121 | #ifdef CONFIG_UNICODE | ||
| 3122 | /* VFS negative dentries are incompatible with Encoding and | ||
| 3123 | * Case-insensitiveness. Eventually we'll want avoid | ||
| 3124 | * invalidating the dentries here, alongside with returning the | ||
| 3125 | * negative dentries at ext4_lookup(), when it is better | ||
| 3126 | * supported by the VFS for the CI case. | ||
| 3127 | */ | ||
| 3128 | if (IS_CASEFOLDED(dir)) | ||
| 3129 | d_invalidate(dentry); | ||
| 3130 | #endif | ||
| 3131 | |||
| 3047 | end_unlink: | 3132 | end_unlink: |
| 3048 | brelse(bh); | 3133 | brelse(bh); |
| 3049 | if (handle) | 3134 | if (handle) |
diff --git a/fs/ext4/readpage.c b/fs/ext4/readpage.c index 3629a74b7f94..2a39c7cb1441 100644 --- a/fs/ext4/readpage.c +++ b/fs/ext4/readpage.c | |||
| @@ -126,9 +126,10 @@ int ext4_mpage_readpages(struct address_space *mapping, | |||
| 126 | int fully_mapped = 1; | 126 | int fully_mapped = 1; |
| 127 | unsigned first_hole = blocks_per_page; | 127 | unsigned first_hole = blocks_per_page; |
| 128 | 128 | ||
| 129 | prefetchw(&page->flags); | ||
| 130 | if (pages) { | 129 | if (pages) { |
| 131 | page = lru_to_page(pages); | 130 | page = lru_to_page(pages); |
| 131 | |||
| 132 | prefetchw(&page->flags); | ||
| 132 | list_del(&page->lru); | 133 | list_del(&page->lru); |
| 133 | if (add_to_page_cache_lru(page, mapping, page->index, | 134 | if (add_to_page_cache_lru(page, mapping, page->index, |
| 134 | readahead_gfp_mask(mapping))) | 135 | readahead_gfp_mask(mapping))) |
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 38faf661e237..c0e9aef376a7 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c | |||
| @@ -874,6 +874,7 @@ static int add_new_gdb(handle_t *handle, struct inode *inode, | |||
| 874 | err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh); | 874 | err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh); |
| 875 | if (unlikely(err)) { | 875 | if (unlikely(err)) { |
| 876 | ext4_std_error(sb, err); | 876 | ext4_std_error(sb, err); |
| 877 | iloc.bh = NULL; | ||
| 877 | goto errout; | 878 | goto errout; |
| 878 | } | 879 | } |
| 879 | brelse(dind); | 880 | brelse(dind); |
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 0e63069b9d5b..3681cb737e9d 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -42,6 +42,7 @@ | |||
| 42 | #include <linux/cleancache.h> | 42 | #include <linux/cleancache.h> |
| 43 | #include <linux/uaccess.h> | 43 | #include <linux/uaccess.h> |
| 44 | #include <linux/iversion.h> | 44 | #include <linux/iversion.h> |
| 45 | #include <linux/unicode.h> | ||
| 45 | 46 | ||
| 46 | #include <linux/kthread.h> | 47 | #include <linux/kthread.h> |
| 47 | #include <linux/freezer.h> | 48 | #include <linux/freezer.h> |
| @@ -1054,6 +1055,9 @@ static void ext4_put_super(struct super_block *sb) | |||
| 1054 | crypto_free_shash(sbi->s_chksum_driver); | 1055 | crypto_free_shash(sbi->s_chksum_driver); |
| 1055 | kfree(sbi->s_blockgroup_lock); | 1056 | kfree(sbi->s_blockgroup_lock); |
| 1056 | fs_put_dax(sbi->s_daxdev); | 1057 | fs_put_dax(sbi->s_daxdev); |
| 1058 | #ifdef CONFIG_UNICODE | ||
| 1059 | utf8_unload(sbi->s_encoding); | ||
| 1060 | #endif | ||
| 1057 | kfree(sbi); | 1061 | kfree(sbi); |
| 1058 | } | 1062 | } |
| 1059 | 1063 | ||
| @@ -1749,6 +1753,36 @@ static const struct mount_opts { | |||
| 1749 | {Opt_err, 0, 0} | 1753 | {Opt_err, 0, 0} |
| 1750 | }; | 1754 | }; |
| 1751 | 1755 | ||
| 1756 | #ifdef CONFIG_UNICODE | ||
| 1757 | static const struct ext4_sb_encodings { | ||
| 1758 | __u16 magic; | ||
| 1759 | char *name; | ||
| 1760 | char *version; | ||
| 1761 | } ext4_sb_encoding_map[] = { | ||
| 1762 | {EXT4_ENC_UTF8_12_1, "utf8", "12.1.0"}, | ||
| 1763 | }; | ||
| 1764 | |||
| 1765 | static int ext4_sb_read_encoding(const struct ext4_super_block *es, | ||
| 1766 | const struct ext4_sb_encodings **encoding, | ||
| 1767 | __u16 *flags) | ||
| 1768 | { | ||
| 1769 | __u16 magic = le16_to_cpu(es->s_encoding); | ||
| 1770 | int i; | ||
| 1771 | |||
| 1772 | for (i = 0; i < ARRAY_SIZE(ext4_sb_encoding_map); i++) | ||
| 1773 | if (magic == ext4_sb_encoding_map[i].magic) | ||
| 1774 | break; | ||
| 1775 | |||
| 1776 | if (i >= ARRAY_SIZE(ext4_sb_encoding_map)) | ||
| 1777 | return -EINVAL; | ||
| 1778 | |||
| 1779 | *encoding = &ext4_sb_encoding_map[i]; | ||
| 1780 | *flags = le16_to_cpu(es->s_encoding_flags); | ||
| 1781 | |||
| 1782 | return 0; | ||
| 1783 | } | ||
| 1784 | #endif | ||
| 1785 | |||
| 1752 | static int handle_mount_opt(struct super_block *sb, char *opt, int token, | 1786 | static int handle_mount_opt(struct super_block *sb, char *opt, int token, |
| 1753 | substring_t *args, unsigned long *journal_devnum, | 1787 | substring_t *args, unsigned long *journal_devnum, |
| 1754 | unsigned int *journal_ioprio, int is_remount) | 1788 | unsigned int *journal_ioprio, int is_remount) |
| @@ -2875,6 +2909,15 @@ static int ext4_feature_set_ok(struct super_block *sb, int readonly) | |||
| 2875 | return 0; | 2909 | return 0; |
| 2876 | } | 2910 | } |
| 2877 | 2911 | ||
| 2912 | #ifndef CONFIG_UNICODE | ||
| 2913 | if (ext4_has_feature_casefold(sb)) { | ||
| 2914 | ext4_msg(sb, KERN_ERR, | ||
| 2915 | "Filesystem with casefold feature cannot be " | ||
| 2916 | "mounted without CONFIG_UNICODE"); | ||
| 2917 | return 0; | ||
| 2918 | } | ||
| 2919 | #endif | ||
| 2920 | |||
| 2878 | if (readonly) | 2921 | if (readonly) |
| 2879 | return 1; | 2922 | return 1; |
| 2880 | 2923 | ||
| @@ -3496,6 +3539,37 @@ int ext4_calculate_overhead(struct super_block *sb) | |||
| 3496 | return 0; | 3539 | return 0; |
| 3497 | } | 3540 | } |
| 3498 | 3541 | ||
| 3542 | static void ext4_clamp_want_extra_isize(struct super_block *sb) | ||
| 3543 | { | ||
| 3544 | struct ext4_sb_info *sbi = EXT4_SB(sb); | ||
| 3545 | struct ext4_super_block *es = sbi->s_es; | ||
| 3546 | |||
| 3547 | /* determine the minimum size of new large inodes, if present */ | ||
| 3548 | if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE && | ||
| 3549 | sbi->s_want_extra_isize == 0) { | ||
| 3550 | sbi->s_want_extra_isize = sizeof(struct ext4_inode) - | ||
| 3551 | EXT4_GOOD_OLD_INODE_SIZE; | ||
| 3552 | if (ext4_has_feature_extra_isize(sb)) { | ||
| 3553 | if (sbi->s_want_extra_isize < | ||
| 3554 | le16_to_cpu(es->s_want_extra_isize)) | ||
| 3555 | sbi->s_want_extra_isize = | ||
| 3556 | le16_to_cpu(es->s_want_extra_isize); | ||
| 3557 | if (sbi->s_want_extra_isize < | ||
| 3558 | le16_to_cpu(es->s_min_extra_isize)) | ||
| 3559 | sbi->s_want_extra_isize = | ||
| 3560 | le16_to_cpu(es->s_min_extra_isize); | ||
| 3561 | } | ||
| 3562 | } | ||
| 3563 | /* Check if enough inode space is available */ | ||
| 3564 | if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize > | ||
| 3565 | sbi->s_inode_size) { | ||
| 3566 | sbi->s_want_extra_isize = sizeof(struct ext4_inode) - | ||
| 3567 | EXT4_GOOD_OLD_INODE_SIZE; | ||
| 3568 | ext4_msg(sb, KERN_INFO, | ||
| 3569 | "required extra inode space not available"); | ||
| 3570 | } | ||
| 3571 | } | ||
| 3572 | |||
| 3499 | static void ext4_set_resv_clusters(struct super_block *sb) | 3573 | static void ext4_set_resv_clusters(struct super_block *sb) |
| 3500 | { | 3574 | { |
| 3501 | ext4_fsblk_t resv_clusters; | 3575 | ext4_fsblk_t resv_clusters; |
| @@ -3722,6 +3796,43 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
| 3722 | &journal_ioprio, 0)) | 3796 | &journal_ioprio, 0)) |
| 3723 | goto failed_mount; | 3797 | goto failed_mount; |
| 3724 | 3798 | ||
| 3799 | #ifdef CONFIG_UNICODE | ||
| 3800 | if (ext4_has_feature_casefold(sb) && !sbi->s_encoding) { | ||
| 3801 | const struct ext4_sb_encodings *encoding_info; | ||
| 3802 | struct unicode_map *encoding; | ||
| 3803 | __u16 encoding_flags; | ||
| 3804 | |||
| 3805 | if (ext4_has_feature_encrypt(sb)) { | ||
| 3806 | ext4_msg(sb, KERN_ERR, | ||
| 3807 | "Can't mount with encoding and encryption"); | ||
| 3808 | goto failed_mount; | ||
| 3809 | } | ||
| 3810 | |||
| 3811 | if (ext4_sb_read_encoding(es, &encoding_info, | ||
| 3812 | &encoding_flags)) { | ||
| 3813 | ext4_msg(sb, KERN_ERR, | ||
| 3814 | "Encoding requested by superblock is unknown"); | ||
| 3815 | goto failed_mount; | ||
| 3816 | } | ||
| 3817 | |||
| 3818 | encoding = utf8_load(encoding_info->version); | ||
| 3819 | if (IS_ERR(encoding)) { | ||
| 3820 | ext4_msg(sb, KERN_ERR, | ||
| 3821 | "can't mount with superblock charset: %s-%s " | ||
| 3822 | "not supported by the kernel. flags: 0x%x.", | ||
| 3823 | encoding_info->name, encoding_info->version, | ||
| 3824 | encoding_flags); | ||
| 3825 | goto failed_mount; | ||
| 3826 | } | ||
| 3827 | ext4_msg(sb, KERN_INFO,"Using encoding defined by superblock: " | ||
| 3828 | "%s-%s with flags 0x%hx", encoding_info->name, | ||
| 3829 | encoding_info->version?:"\b", encoding_flags); | ||
| 3830 | |||
| 3831 | sbi->s_encoding = encoding; | ||
| 3832 | sbi->s_encoding_flags = encoding_flags; | ||
| 3833 | } | ||
| 3834 | #endif | ||
| 3835 | |||
| 3725 | if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) { | 3836 | if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) { |
| 3726 | printk_once(KERN_WARNING "EXT4-fs: Warning: mounting " | 3837 | printk_once(KERN_WARNING "EXT4-fs: Warning: mounting " |
| 3727 | "with data=journal disables delayed " | 3838 | "with data=journal disables delayed " |
| @@ -4219,7 +4330,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
| 4219 | "data=, fs mounted w/o journal"); | 4330 | "data=, fs mounted w/o journal"); |
| 4220 | goto failed_mount_wq; | 4331 | goto failed_mount_wq; |
| 4221 | } | 4332 | } |
| 4222 | sbi->s_def_mount_opt &= EXT4_MOUNT_JOURNAL_CHECKSUM; | 4333 | sbi->s_def_mount_opt &= ~EXT4_MOUNT_JOURNAL_CHECKSUM; |
| 4223 | clear_opt(sb, JOURNAL_CHECKSUM); | 4334 | clear_opt(sb, JOURNAL_CHECKSUM); |
| 4224 | clear_opt(sb, DATA_FLAGS); | 4335 | clear_opt(sb, DATA_FLAGS); |
| 4225 | sbi->s_journal = NULL; | 4336 | sbi->s_journal = NULL; |
| @@ -4354,6 +4465,12 @@ no_journal: | |||
| 4354 | iput(root); | 4465 | iput(root); |
| 4355 | goto failed_mount4; | 4466 | goto failed_mount4; |
| 4356 | } | 4467 | } |
| 4468 | |||
| 4469 | #ifdef CONFIG_UNICODE | ||
| 4470 | if (sbi->s_encoding) | ||
| 4471 | sb->s_d_op = &ext4_dentry_ops; | ||
| 4472 | #endif | ||
| 4473 | |||
| 4357 | sb->s_root = d_make_root(root); | 4474 | sb->s_root = d_make_root(root); |
| 4358 | if (!sb->s_root) { | 4475 | if (!sb->s_root) { |
| 4359 | ext4_msg(sb, KERN_ERR, "get root dentry failed"); | 4476 | ext4_msg(sb, KERN_ERR, "get root dentry failed"); |
| @@ -4368,30 +4485,7 @@ no_journal: | |||
| 4368 | } else if (ret) | 4485 | } else if (ret) |
| 4369 | goto failed_mount4a; | 4486 | goto failed_mount4a; |
| 4370 | 4487 | ||
| 4371 | /* determine the minimum size of new large inodes, if present */ | 4488 | ext4_clamp_want_extra_isize(sb); |
| 4372 | if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE && | ||
| 4373 | sbi->s_want_extra_isize == 0) { | ||
| 4374 | sbi->s_want_extra_isize = sizeof(struct ext4_inode) - | ||
| 4375 | EXT4_GOOD_OLD_INODE_SIZE; | ||
| 4376 | if (ext4_has_feature_extra_isize(sb)) { | ||
| 4377 | if (sbi->s_want_extra_isize < | ||
| 4378 | le16_to_cpu(es->s_want_extra_isize)) | ||
| 4379 | sbi->s_want_extra_isize = | ||
| 4380 | le16_to_cpu(es->s_want_extra_isize); | ||
| 4381 | if (sbi->s_want_extra_isize < | ||
| 4382 | le16_to_cpu(es->s_min_extra_isize)) | ||
| 4383 | sbi->s_want_extra_isize = | ||
| 4384 | le16_to_cpu(es->s_min_extra_isize); | ||
| 4385 | } | ||
| 4386 | } | ||
| 4387 | /* Check if enough inode space is available */ | ||
| 4388 | if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize > | ||
| 4389 | sbi->s_inode_size) { | ||
| 4390 | sbi->s_want_extra_isize = sizeof(struct ext4_inode) - | ||
| 4391 | EXT4_GOOD_OLD_INODE_SIZE; | ||
| 4392 | ext4_msg(sb, KERN_INFO, "required extra inode space not" | ||
| 4393 | "available"); | ||
| 4394 | } | ||
| 4395 | 4489 | ||
| 4396 | ext4_set_resv_clusters(sb); | 4490 | ext4_set_resv_clusters(sb); |
| 4397 | 4491 | ||
| @@ -4559,6 +4653,11 @@ failed_mount2: | |||
| 4559 | failed_mount: | 4653 | failed_mount: |
| 4560 | if (sbi->s_chksum_driver) | 4654 | if (sbi->s_chksum_driver) |
| 4561 | crypto_free_shash(sbi->s_chksum_driver); | 4655 | crypto_free_shash(sbi->s_chksum_driver); |
| 4656 | |||
| 4657 | #ifdef CONFIG_UNICODE | ||
| 4658 | utf8_unload(sbi->s_encoding); | ||
| 4659 | #endif | ||
| 4660 | |||
| 4562 | #ifdef CONFIG_QUOTA | 4661 | #ifdef CONFIG_QUOTA |
| 4563 | for (i = 0; i < EXT4_MAXQUOTAS; i++) | 4662 | for (i = 0; i < EXT4_MAXQUOTAS; i++) |
| 4564 | kfree(sbi->s_qf_names[i]); | 4663 | kfree(sbi->s_qf_names[i]); |
| @@ -5175,6 +5274,8 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data) | |||
| 5175 | goto restore_opts; | 5274 | goto restore_opts; |
| 5176 | } | 5275 | } |
| 5177 | 5276 | ||
| 5277 | ext4_clamp_want_extra_isize(sb); | ||
| 5278 | |||
| 5178 | if ((old_opts.s_mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) ^ | 5279 | if ((old_opts.s_mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) ^ |
| 5179 | test_opt(sb, JOURNAL_CHECKSUM)) { | 5280 | test_opt(sb, JOURNAL_CHECKSUM)) { |
| 5180 | ext4_msg(sb, KERN_ERR, "changing journal_checksum " | 5281 | ext4_msg(sb, KERN_ERR, "changing journal_checksum " |
diff --git a/fs/ext4/sysfs.c b/fs/ext4/sysfs.c index 616c075da062..04b4f53f0659 100644 --- a/fs/ext4/sysfs.c +++ b/fs/ext4/sysfs.c | |||
| @@ -238,6 +238,9 @@ EXT4_ATTR_FEATURE(meta_bg_resize); | |||
| 238 | #ifdef CONFIG_FS_ENCRYPTION | 238 | #ifdef CONFIG_FS_ENCRYPTION |
| 239 | EXT4_ATTR_FEATURE(encryption); | 239 | EXT4_ATTR_FEATURE(encryption); |
| 240 | #endif | 240 | #endif |
| 241 | #ifdef CONFIG_UNICODE | ||
| 242 | EXT4_ATTR_FEATURE(casefold); | ||
| 243 | #endif | ||
| 241 | EXT4_ATTR_FEATURE(metadata_csum_seed); | 244 | EXT4_ATTR_FEATURE(metadata_csum_seed); |
| 242 | 245 | ||
| 243 | static struct attribute *ext4_feat_attrs[] = { | 246 | static struct attribute *ext4_feat_attrs[] = { |
| @@ -247,6 +250,9 @@ static struct attribute *ext4_feat_attrs[] = { | |||
| 247 | #ifdef CONFIG_FS_ENCRYPTION | 250 | #ifdef CONFIG_FS_ENCRYPTION |
| 248 | ATTR_LIST(encryption), | 251 | ATTR_LIST(encryption), |
| 249 | #endif | 252 | #endif |
| 253 | #ifdef CONFIG_UNICODE | ||
| 254 | ATTR_LIST(casefold), | ||
| 255 | #endif | ||
| 250 | ATTR_LIST(metadata_csum_seed), | 256 | ATTR_LIST(metadata_csum_seed), |
| 251 | NULL, | 257 | NULL, |
| 252 | }; | 258 | }; |
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index dc82e7757f67..491f9ee4040e 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c | |||
| @@ -1696,7 +1696,7 @@ static int ext4_xattr_set_entry(struct ext4_xattr_info *i, | |||
| 1696 | 1696 | ||
| 1697 | /* No failures allowed past this point. */ | 1697 | /* No failures allowed past this point. */ |
| 1698 | 1698 | ||
| 1699 | if (!s->not_found && here->e_value_size && here->e_value_offs) { | 1699 | if (!s->not_found && here->e_value_size && !here->e_value_inum) { |
| 1700 | /* Remove the old value. */ | 1700 | /* Remove the old value. */ |
| 1701 | void *first_val = s->base + min_offs; | 1701 | void *first_val = s->base + min_offs; |
| 1702 | size_t offs = le16_to_cpu(here->e_value_offs); | 1702 | size_t offs = le16_to_cpu(here->e_value_offs); |
diff --git a/fs/jbd2/checkpoint.c b/fs/jbd2/checkpoint.c index 02e0b79753e7..a1909066bde6 100644 --- a/fs/jbd2/checkpoint.c +++ b/fs/jbd2/checkpoint.c | |||
| @@ -132,7 +132,6 @@ void __jbd2_log_wait_for_space(journal_t *journal) | |||
| 132 | return; | 132 | return; |
| 133 | } | 133 | } |
| 134 | spin_lock(&journal->j_list_lock); | 134 | spin_lock(&journal->j_list_lock); |
| 135 | nblocks = jbd2_space_needed(journal); | ||
| 136 | space_left = jbd2_log_space_left(journal); | 135 | space_left = jbd2_log_space_left(journal); |
| 137 | if (space_left < nblocks) { | 136 | if (space_left < nblocks) { |
| 138 | int chkpt = journal->j_checkpoint_transactions != NULL; | 137 | int chkpt = journal->j_checkpoint_transactions != NULL; |
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 382c030cc78b..37e16d969925 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c | |||
| @@ -1350,6 +1350,10 @@ static int jbd2_write_superblock(journal_t *journal, int write_flags) | |||
| 1350 | journal_superblock_t *sb = journal->j_superblock; | 1350 | journal_superblock_t *sb = journal->j_superblock; |
| 1351 | int ret; | 1351 | int ret; |
| 1352 | 1352 | ||
| 1353 | /* Buffer got discarded which means block device got invalidated */ | ||
| 1354 | if (!buffer_mapped(bh)) | ||
| 1355 | return -EIO; | ||
| 1356 | |||
| 1353 | trace_jbd2_write_superblock(journal, write_flags); | 1357 | trace_jbd2_write_superblock(journal, write_flags); |
| 1354 | if (!(journal->j_flags & JBD2_BARRIER)) | 1358 | if (!(journal->j_flags & JBD2_BARRIER)) |
| 1355 | write_flags &= ~(REQ_FUA | REQ_PREFLUSH); | 1359 | write_flags &= ~(REQ_FUA | REQ_PREFLUSH); |
diff --git a/fs/unicode/.gitignore b/fs/unicode/.gitignore new file mode 100644 index 000000000000..0381e2221480 --- /dev/null +++ b/fs/unicode/.gitignore | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | mkutf8data | ||
| 2 | utf8data.h | ||
diff --git a/fs/unicode/Kconfig b/fs/unicode/Kconfig new file mode 100644 index 000000000000..b560a879edf7 --- /dev/null +++ b/fs/unicode/Kconfig | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # | ||
| 2 | # UTF-8 normalization | ||
| 3 | # | ||
| 4 | config UNICODE | ||
| 5 | bool "UTF-8 normalization and casefolding support" | ||
| 6 | help | ||
| 7 | Say Y here to enable UTF-8 NFD normalization and NFD+CF casefolding | ||
| 8 | support. | ||
| 9 | |||
| 10 | config UNICODE_NORMALIZATION_SELFTEST | ||
| 11 | tristate "Test UTF-8 normalization support" | ||
| 12 | depends on UNICODE | ||
| 13 | default n | ||
diff --git a/fs/unicode/Makefile b/fs/unicode/Makefile new file mode 100644 index 000000000000..d46e9baee285 --- /dev/null +++ b/fs/unicode/Makefile | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0 | ||
| 2 | |||
| 3 | obj-$(CONFIG_UNICODE) += unicode.o | ||
| 4 | obj-$(CONFIG_UNICODE_NORMALIZATION_SELFTEST) += utf8-selftest.o | ||
| 5 | |||
| 6 | unicode-y := utf8-norm.o utf8-core.o | ||
| 7 | |||
| 8 | $(obj)/utf8-norm.o: $(obj)/utf8data.h | ||
| 9 | |||
| 10 | # In the normal build, the checked-in utf8data.h is just shipped. | ||
| 11 | # | ||
| 12 | # To generate utf8data.h from UCD, put *.txt files in this directory | ||
| 13 | # and pass REGENERATE_UTF8DATA=1 from the command line. | ||
| 14 | ifdef REGENERATE_UTF8DATA | ||
| 15 | |||
| 16 | quiet_cmd_utf8data = GEN $@ | ||
| 17 | cmd_utf8data = $< \ | ||
| 18 | -a $(srctree)/$(src)/DerivedAge.txt \ | ||
| 19 | -c $(srctree)/$(src)/DerivedCombiningClass.txt \ | ||
| 20 | -p $(srctree)/$(src)/DerivedCoreProperties.txt \ | ||
| 21 | -d $(srctree)/$(src)/UnicodeData.txt \ | ||
| 22 | -f $(srctree)/$(src)/CaseFolding.txt \ | ||
| 23 | -n $(srctree)/$(src)/NormalizationCorrections.txt \ | ||
| 24 | -t $(srctree)/$(src)/NormalizationTest.txt \ | ||
| 25 | -o $@ | ||
| 26 | |||
| 27 | $(obj)/utf8data.h: $(obj)/mkutf8data $(filter %.txt, $(cmd_utf8data)) FORCE | ||
| 28 | $(call if_changed,utf8data) | ||
| 29 | |||
| 30 | else | ||
| 31 | |||
| 32 | $(obj)/utf8data.h: $(src)/utf8data.h_shipped FORCE | ||
| 33 | $(call if_changed,shipped) | ||
| 34 | |||
| 35 | endif | ||
| 36 | |||
| 37 | targets += utf8data.h | ||
| 38 | hostprogs-y += mkutf8data | ||
diff --git a/fs/unicode/README.utf8data b/fs/unicode/README.utf8data new file mode 100644 index 000000000000..9307cf0727de --- /dev/null +++ b/fs/unicode/README.utf8data | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | The utf8data.h file in this directory is generated from the Unicode | ||
| 2 | Character Database for version 12.1.0 of the Unicode standard. | ||
| 3 | |||
| 4 | The full set of files can be found here: | ||
| 5 | |||
| 6 | http://www.unicode.org/Public/12.1.0/ucd/ | ||
| 7 | |||
| 8 | Note! | ||
| 9 | |||
| 10 | The URL's listed below are not stable. That's because Unicode 12.1.0 | ||
| 11 | has not been officially released yet; it is scheduled to be released | ||
| 12 | on May 8, 2019. We taking Unicode 12.1.0 a few weeks early because it | ||
| 13 | contains a new Japanese character which is required in order to | ||
| 14 | specify Japenese dates after May 1, 2019, when Crown Prince Naruhito | ||
| 15 | ascends to the Chrysanthemum Throne. (Isn't internationalization fun? | ||
| 16 | The abdication of Emperor Akihito of Japan is requiring dozens of | ||
| 17 | software packages to be updated with only a month's notice. :-) | ||
| 18 | |||
| 19 | We will update the URL's (and any needed changes to the checksums) | ||
| 20 | after the final Unicode 12.1.0 is released. | ||
| 21 | |||
| 22 | Individual source links: | ||
| 23 | |||
| 24 | https://www.unicode.org/Public/12.1.0/ucd/CaseFolding-12.1.0d2.txt | ||
| 25 | https://www.unicode.org/Public/12.1.0/ucd/DerivedAge-12.1.0d3.txt | ||
| 26 | https://www.unicode.org/Public/12.1.0/ucd/extracted/DerivedCombiningClass-12.1.0d2.txt | ||
| 27 | https://www.unicode.org/Public/12.1.0/ucd/DerivedCoreProperties-12.1.0d2.txt | ||
| 28 | https://www.unicode.org/Public/12.1.0/ucd/NormalizationCorrections-12.1.0d1.txt | ||
| 29 | https://www.unicode.org/Public/12.1.0/ucd/NormalizationTest-12.1.0d3.txt | ||
| 30 | https://www.unicode.org/Public/12.1.0/ucd/UnicodeData-12.1.0d2.txt | ||
| 31 | |||
| 32 | md5sums (verify by running "md5sum -c README.utf8data"): | ||
| 33 | |||
| 34 | 900e76da1d822a160fd6b8c0b1d70094 CaseFolding.txt | ||
| 35 | 131256380bff4fea8ad4a851616f2f10 DerivedAge.txt | ||
| 36 | e731a4089b30002144e107e3d6f8d1fa DerivedCombiningClass.txt | ||
| 37 | a47c9fbd7ff92a9b261ba9831e68778a DerivedCoreProperties.txt | ||
| 38 | fcab6dad15e440879d92f315978f93d3 NormalizationCorrections.txt | ||
| 39 | f9ff1c55a60decf436100f791b44aa98 NormalizationTest.txt | ||
| 40 | 755f6af699f8c8d2d958da411f78f6c6 UnicodeData.txt | ||
| 41 | |||
| 42 | sha1sums (verify by running "sha1sum -c README.utf8data"): | ||
| 43 | |||
| 44 | dc9245f6803c4ac99555c361f5052e0b13eb779b CaseFolding.txt | ||
| 45 | 3281104f237184cdb5d869e86eb8573678ada7da DerivedAge.txt | ||
| 46 | 2f5f995ccb96e0fa84b15151b35d5e2681535175 DerivedCombiningClass.txt | ||
| 47 | 5b8698a3fcd5018e1987f296b02e2c17e696415e DerivedCoreProperties.txt | ||
| 48 | cd83935fbc012345d8792d2c704f69497e753835 NormalizationCorrections.txt | ||
| 49 | ea419aae505b337b0d99a83fa83fe58ddff7c19f NormalizationTest.txt | ||
| 50 | dc973c0fc93d6f09d9ab9f70d1c9f89c447f0526 UnicodeData.txt | ||
| 51 | |||
| 52 | |||
| 53 | To update to the newer version of the Unicode standard, the latest | ||
| 54 | released version of the UCD can be found here: | ||
| 55 | |||
| 56 | http://www.unicode.org/Public/UCD/latest/ | ||
| 57 | |||
| 58 | Then, build under fs/unicode/ with REGENERATE_UTF8DATA=1: | ||
| 59 | |||
| 60 | make REGENERATE_UTF8DATA=1 fs/unicode/ | ||
| 61 | |||
| 62 | After sanity checking the newly generated utf8data.h file (the | ||
| 63 | version generated from the 12.1.0 UCD should be 4,109 lines long, and | ||
| 64 | have a total size of 324k) and/or comparing it with the older version | ||
| 65 | of utf8data.h_shipped, rename it to utf8data.h_shipped. | ||
| 66 | |||
| 67 | If you are a kernel developer updating to a newer version of the | ||
| 68 | Unicode Character Database, please update this README.utf8data file | ||
| 69 | with the version of the UCD that was used, the md5sum and sha1sums of | ||
| 70 | the *.txt files, before checking in the new versions of the utf8data.h | ||
| 71 | and README.utf8data files. | ||
diff --git a/fs/unicode/mkutf8data.c b/fs/unicode/mkutf8data.c new file mode 100644 index 000000000000..ff2025ac5a32 --- /dev/null +++ b/fs/unicode/mkutf8data.c | |||
| @@ -0,0 +1,3419 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 SGI. | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it would be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write the Free Software Foundation, | ||
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* Generator for a compact trie for unicode normalization */ | ||
| 20 | |||
| 21 | #include <sys/types.h> | ||
| 22 | #include <stddef.h> | ||
| 23 | #include <stdlib.h> | ||
| 24 | #include <stdio.h> | ||
| 25 | #include <assert.h> | ||
| 26 | #include <string.h> | ||
| 27 | #include <unistd.h> | ||
| 28 | #include <errno.h> | ||
| 29 | |||
| 30 | /* Default names of the in- and output files. */ | ||
| 31 | |||
| 32 | #define AGE_NAME "DerivedAge.txt" | ||
| 33 | #define CCC_NAME "DerivedCombiningClass.txt" | ||
| 34 | #define PROP_NAME "DerivedCoreProperties.txt" | ||
| 35 | #define DATA_NAME "UnicodeData.txt" | ||
| 36 | #define FOLD_NAME "CaseFolding.txt" | ||
| 37 | #define NORM_NAME "NormalizationCorrections.txt" | ||
| 38 | #define TEST_NAME "NormalizationTest.txt" | ||
| 39 | #define UTF8_NAME "utf8data.h" | ||
| 40 | |||
| 41 | const char *age_name = AGE_NAME; | ||
| 42 | const char *ccc_name = CCC_NAME; | ||
| 43 | const char *prop_name = PROP_NAME; | ||
| 44 | const char *data_name = DATA_NAME; | ||
| 45 | const char *fold_name = FOLD_NAME; | ||
| 46 | const char *norm_name = NORM_NAME; | ||
| 47 | const char *test_name = TEST_NAME; | ||
| 48 | const char *utf8_name = UTF8_NAME; | ||
| 49 | |||
| 50 | int verbose = 0; | ||
| 51 | |||
| 52 | /* An arbitrary line size limit on input lines. */ | ||
| 53 | |||
| 54 | #define LINESIZE 1024 | ||
| 55 | char line[LINESIZE]; | ||
| 56 | char buf0[LINESIZE]; | ||
| 57 | char buf1[LINESIZE]; | ||
| 58 | char buf2[LINESIZE]; | ||
| 59 | char buf3[LINESIZE]; | ||
| 60 | |||
| 61 | const char *argv0; | ||
| 62 | |||
| 63 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) | ||
| 64 | |||
| 65 | /* ------------------------------------------------------------------ */ | ||
| 66 | |||
| 67 | /* | ||
| 68 | * Unicode version numbers consist of three parts: major, minor, and a | ||
| 69 | * revision. These numbers are packed into an unsigned int to obtain | ||
| 70 | * a single version number. | ||
| 71 | * | ||
| 72 | * To save space in the generated trie, the unicode version is not | ||
| 73 | * stored directly, instead we calculate a generation number from the | ||
| 74 | * unicode versions seen in the DerivedAge file, and use that as an | ||
| 75 | * index into a table of unicode versions. | ||
| 76 | */ | ||
| 77 | #define UNICODE_MAJ_SHIFT (16) | ||
| 78 | #define UNICODE_MIN_SHIFT (8) | ||
| 79 | |||
| 80 | #define UNICODE_MAJ_MAX ((unsigned short)-1) | ||
| 81 | #define UNICODE_MIN_MAX ((unsigned char)-1) | ||
| 82 | #define UNICODE_REV_MAX ((unsigned char)-1) | ||
| 83 | |||
| 84 | #define UNICODE_AGE(MAJ,MIN,REV) \ | ||
| 85 | (((unsigned int)(MAJ) << UNICODE_MAJ_SHIFT) | \ | ||
| 86 | ((unsigned int)(MIN) << UNICODE_MIN_SHIFT) | \ | ||
| 87 | ((unsigned int)(REV))) | ||
| 88 | |||
| 89 | unsigned int *ages; | ||
| 90 | int ages_count; | ||
| 91 | |||
| 92 | unsigned int unicode_maxage; | ||
| 93 | |||
| 94 | static int age_valid(unsigned int major, unsigned int minor, | ||
| 95 | unsigned int revision) | ||
| 96 | { | ||
| 97 | if (major > UNICODE_MAJ_MAX) | ||
| 98 | return 0; | ||
| 99 | if (minor > UNICODE_MIN_MAX) | ||
| 100 | return 0; | ||
| 101 | if (revision > UNICODE_REV_MAX) | ||
| 102 | return 0; | ||
| 103 | return 1; | ||
| 104 | } | ||
| 105 | |||
| 106 | /* ------------------------------------------------------------------ */ | ||
| 107 | |||
| 108 | /* | ||
| 109 | * utf8trie_t | ||
| 110 | * | ||
| 111 | * A compact binary tree, used to decode UTF-8 characters. | ||
| 112 | * | ||
| 113 | * Internal nodes are one byte for the node itself, and up to three | ||
| 114 | * bytes for an offset into the tree. The first byte contains the | ||
| 115 | * following information: | ||
| 116 | * NEXTBYTE - flag - advance to next byte if set | ||
| 117 | * BITNUM - 3 bit field - the bit number to tested | ||
| 118 | * OFFLEN - 2 bit field - number of bytes in the offset | ||
| 119 | * if offlen == 0 (non-branching node) | ||
| 120 | * RIGHTPATH - 1 bit field - set if the following node is for the | ||
| 121 | * right-hand path (tested bit is set) | ||
| 122 | * TRIENODE - 1 bit field - set if the following node is an internal | ||
| 123 | * node, otherwise it is a leaf node | ||
| 124 | * if offlen != 0 (branching node) | ||
| 125 | * LEFTNODE - 1 bit field - set if the left-hand node is internal | ||
| 126 | * RIGHTNODE - 1 bit field - set if the right-hand node is internal | ||
| 127 | * | ||
| 128 | * Due to the way utf8 works, there cannot be branching nodes with | ||
| 129 | * NEXTBYTE set, and moreover those nodes always have a righthand | ||
| 130 | * descendant. | ||
| 131 | */ | ||
| 132 | typedef unsigned char utf8trie_t; | ||
| 133 | #define BITNUM 0x07 | ||
| 134 | #define NEXTBYTE 0x08 | ||
| 135 | #define OFFLEN 0x30 | ||
| 136 | #define OFFLEN_SHIFT 4 | ||
| 137 | #define RIGHTPATH 0x40 | ||
| 138 | #define TRIENODE 0x80 | ||
| 139 | #define RIGHTNODE 0x40 | ||
| 140 | #define LEFTNODE 0x80 | ||
| 141 | |||
| 142 | /* | ||
| 143 | * utf8leaf_t | ||
| 144 | * | ||
| 145 | * The leaves of the trie are embedded in the trie, and so the same | ||
| 146 | * underlying datatype, unsigned char. | ||
| 147 | * | ||
| 148 | * leaf[0]: The unicode version, stored as a generation number that is | ||
| 149 | * an index into utf8agetab[]. With this we can filter code | ||
| 150 | * points based on the unicode version in which they were | ||
| 151 | * defined. The CCC of a non-defined code point is 0. | ||
| 152 | * leaf[1]: Canonical Combining Class. During normalization, we need | ||
| 153 | * to do a stable sort into ascending order of all characters | ||
| 154 | * with a non-zero CCC that occur between two characters with | ||
| 155 | * a CCC of 0, or at the begin or end of a string. | ||
| 156 | * The unicode standard guarantees that all CCC values are | ||
| 157 | * between 0 and 254 inclusive, which leaves 255 available as | ||
| 158 | * a special value. | ||
| 159 | * Code points with CCC 0 are known as stoppers. | ||
| 160 | * leaf[2]: Decomposition. If leaf[1] == 255, then leaf[2] is the | ||
| 161 | * start of a NUL-terminated string that is the decomposition | ||
| 162 | * of the character. | ||
| 163 | * The CCC of a decomposable character is the same as the CCC | ||
| 164 | * of the first character of its decomposition. | ||
| 165 | * Some characters decompose as the empty string: these are | ||
| 166 | * characters with the Default_Ignorable_Code_Point property. | ||
| 167 | * These do affect normalization, as they all have CCC 0. | ||
| 168 | * | ||
| 169 | * The decompositions in the trie have been fully expanded. | ||
| 170 | * | ||
| 171 | * Casefolding, if applicable, is also done using decompositions. | ||
| 172 | */ | ||
| 173 | typedef unsigned char utf8leaf_t; | ||
| 174 | |||
| 175 | #define LEAF_GEN(LEAF) ((LEAF)[0]) | ||
| 176 | #define LEAF_CCC(LEAF) ((LEAF)[1]) | ||
| 177 | #define LEAF_STR(LEAF) ((const char*)((LEAF) + 2)) | ||
| 178 | |||
| 179 | #define MAXGEN (255) | ||
| 180 | |||
| 181 | #define MINCCC (0) | ||
| 182 | #define MAXCCC (254) | ||
| 183 | #define STOPPER (0) | ||
| 184 | #define DECOMPOSE (255) | ||
| 185 | #define HANGUL ((char)(255)) | ||
| 186 | |||
| 187 | #define UTF8HANGULLEAF (12) | ||
| 188 | |||
| 189 | struct tree; | ||
| 190 | static utf8leaf_t *utf8nlookup(struct tree *, unsigned char *, | ||
| 191 | const char *, size_t); | ||
| 192 | static utf8leaf_t *utf8lookup(struct tree *, unsigned char *, const char *); | ||
| 193 | |||
| 194 | unsigned char *utf8data; | ||
| 195 | size_t utf8data_size; | ||
| 196 | |||
| 197 | utf8trie_t *nfdi; | ||
| 198 | utf8trie_t *nfdicf; | ||
| 199 | |||
| 200 | /* ------------------------------------------------------------------ */ | ||
| 201 | |||
| 202 | /* | ||
| 203 | * UTF8 valid ranges. | ||
| 204 | * | ||
| 205 | * The UTF-8 encoding spreads the bits of a 32bit word over several | ||
| 206 | * bytes. This table gives the ranges that can be held and how they'd | ||
| 207 | * be represented. | ||
| 208 | * | ||
| 209 | * 0x00000000 0x0000007F: 0xxxxxxx | ||
| 210 | * 0x00000000 0x000007FF: 110xxxxx 10xxxxxx | ||
| 211 | * 0x00000000 0x0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx | ||
| 212 | * 0x00000000 0x001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 213 | * 0x00000000 0x03FFFFFF: 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 214 | * 0x00000000 0x7FFFFFFF: 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 215 | * | ||
| 216 | * There is an additional requirement on UTF-8, in that only the | ||
| 217 | * shortest representation of a 32bit value is to be used. A decoder | ||
| 218 | * must not decode sequences that do not satisfy this requirement. | ||
| 219 | * Thus the allowed ranges have a lower bound. | ||
| 220 | * | ||
| 221 | * 0x00000000 0x0000007F: 0xxxxxxx | ||
| 222 | * 0x00000080 0x000007FF: 110xxxxx 10xxxxxx | ||
| 223 | * 0x00000800 0x0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx | ||
| 224 | * 0x00010000 0x001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 225 | * 0x00200000 0x03FFFFFF: 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 226 | * 0x04000000 0x7FFFFFFF: 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 227 | * | ||
| 228 | * Actual unicode characters are limited to the range 0x0 - 0x10FFFF, | ||
| 229 | * 17 planes of 65536 values. This limits the sequences actually seen | ||
| 230 | * even more, to just the following. | ||
| 231 | * | ||
| 232 | * 0 - 0x7f: 0 0x7f | ||
| 233 | * 0x80 - 0x7ff: 0xc2 0x80 0xdf 0xbf | ||
| 234 | * 0x800 - 0xffff: 0xe0 0xa0 0x80 0xef 0xbf 0xbf | ||
| 235 | * 0x10000 - 0x10ffff: 0xf0 0x90 0x80 0x80 0xf4 0x8f 0xbf 0xbf | ||
| 236 | * | ||
| 237 | * Even within those ranges not all values are allowed: the surrogates | ||
| 238 | * 0xd800 - 0xdfff should never be seen. | ||
| 239 | * | ||
| 240 | * Note that the longest sequence seen with valid usage is 4 bytes, | ||
| 241 | * the same a single UTF-32 character. This makes the UTF-8 | ||
| 242 | * representation of Unicode strictly smaller than UTF-32. | ||
| 243 | * | ||
| 244 | * The shortest sequence requirement was introduced by: | ||
| 245 | * Corrigendum #1: UTF-8 Shortest Form | ||
| 246 | * It can be found here: | ||
| 247 | * http://www.unicode.org/versions/corrigendum1.html | ||
| 248 | * | ||
| 249 | */ | ||
| 250 | |||
| 251 | #define UTF8_2_BITS 0xC0 | ||
| 252 | #define UTF8_3_BITS 0xE0 | ||
| 253 | #define UTF8_4_BITS 0xF0 | ||
| 254 | #define UTF8_N_BITS 0x80 | ||
| 255 | #define UTF8_2_MASK 0xE0 | ||
| 256 | #define UTF8_3_MASK 0xF0 | ||
| 257 | #define UTF8_4_MASK 0xF8 | ||
| 258 | #define UTF8_N_MASK 0xC0 | ||
| 259 | #define UTF8_V_MASK 0x3F | ||
| 260 | #define UTF8_V_SHIFT 6 | ||
| 261 | |||
| 262 | static int utf8encode(char *str, unsigned int val) | ||
| 263 | { | ||
| 264 | int len; | ||
| 265 | |||
| 266 | if (val < 0x80) { | ||
| 267 | str[0] = val; | ||
| 268 | len = 1; | ||
| 269 | } else if (val < 0x800) { | ||
| 270 | str[1] = val & UTF8_V_MASK; | ||
| 271 | str[1] |= UTF8_N_BITS; | ||
| 272 | val >>= UTF8_V_SHIFT; | ||
| 273 | str[0] = val; | ||
| 274 | str[0] |= UTF8_2_BITS; | ||
| 275 | len = 2; | ||
| 276 | } else if (val < 0x10000) { | ||
| 277 | str[2] = val & UTF8_V_MASK; | ||
| 278 | str[2] |= UTF8_N_BITS; | ||
| 279 | val >>= UTF8_V_SHIFT; | ||
| 280 | str[1] = val & UTF8_V_MASK; | ||
| 281 | str[1] |= UTF8_N_BITS; | ||
| 282 | val >>= UTF8_V_SHIFT; | ||
| 283 | str[0] = val; | ||
| 284 | str[0] |= UTF8_3_BITS; | ||
| 285 | len = 3; | ||
| 286 | } else if (val < 0x110000) { | ||
| 287 | str[3] = val & UTF8_V_MASK; | ||
| 288 | str[3] |= UTF8_N_BITS; | ||
| 289 | val >>= UTF8_V_SHIFT; | ||
| 290 | str[2] = val & UTF8_V_MASK; | ||
| 291 | str[2] |= UTF8_N_BITS; | ||
| 292 | val >>= UTF8_V_SHIFT; | ||
| 293 | str[1] = val & UTF8_V_MASK; | ||
| 294 | str[1] |= UTF8_N_BITS; | ||
| 295 | val >>= UTF8_V_SHIFT; | ||
| 296 | str[0] = val; | ||
| 297 | str[0] |= UTF8_4_BITS; | ||
| 298 | len = 4; | ||
| 299 | } else { | ||
| 300 | printf("%#x: illegal val\n", val); | ||
| 301 | len = 0; | ||
| 302 | } | ||
| 303 | return len; | ||
| 304 | } | ||
| 305 | |||
| 306 | static unsigned int utf8decode(const char *str) | ||
| 307 | { | ||
| 308 | const unsigned char *s = (const unsigned char*)str; | ||
| 309 | unsigned int unichar = 0; | ||
| 310 | |||
| 311 | if (*s < 0x80) { | ||
| 312 | unichar = *s; | ||
| 313 | } else if (*s < UTF8_3_BITS) { | ||
| 314 | unichar = *s++ & 0x1F; | ||
| 315 | unichar <<= UTF8_V_SHIFT; | ||
| 316 | unichar |= *s & 0x3F; | ||
| 317 | } else if (*s < UTF8_4_BITS) { | ||
| 318 | unichar = *s++ & 0x0F; | ||
| 319 | unichar <<= UTF8_V_SHIFT; | ||
| 320 | unichar |= *s++ & 0x3F; | ||
| 321 | unichar <<= UTF8_V_SHIFT; | ||
| 322 | unichar |= *s & 0x3F; | ||
| 323 | } else { | ||
| 324 | unichar = *s++ & 0x0F; | ||
| 325 | unichar <<= UTF8_V_SHIFT; | ||
| 326 | unichar |= *s++ & 0x3F; | ||
| 327 | unichar <<= UTF8_V_SHIFT; | ||
| 328 | unichar |= *s++ & 0x3F; | ||
| 329 | unichar <<= UTF8_V_SHIFT; | ||
| 330 | unichar |= *s & 0x3F; | ||
| 331 | } | ||
| 332 | return unichar; | ||
| 333 | } | ||
| 334 | |||
| 335 | static int utf32valid(unsigned int unichar) | ||
| 336 | { | ||
| 337 | return unichar < 0x110000; | ||
| 338 | } | ||
| 339 | |||
| 340 | #define HANGUL_SYLLABLE(U) ((U) >= 0xAC00 && (U) <= 0xD7A3) | ||
| 341 | |||
| 342 | #define NODE 1 | ||
| 343 | #define LEAF 0 | ||
| 344 | |||
| 345 | struct tree { | ||
| 346 | void *root; | ||
| 347 | int childnode; | ||
| 348 | const char *type; | ||
| 349 | unsigned int maxage; | ||
| 350 | struct tree *next; | ||
| 351 | int (*leaf_equal)(void *, void *); | ||
| 352 | void (*leaf_print)(void *, int); | ||
| 353 | int (*leaf_mark)(void *); | ||
| 354 | int (*leaf_size)(void *); | ||
| 355 | int *(*leaf_index)(struct tree *, void *); | ||
| 356 | unsigned char *(*leaf_emit)(void *, unsigned char *); | ||
| 357 | int leafindex[0x110000]; | ||
| 358 | int index; | ||
| 359 | }; | ||
| 360 | |||
| 361 | struct node { | ||
| 362 | int index; | ||
| 363 | int offset; | ||
| 364 | int mark; | ||
| 365 | int size; | ||
| 366 | struct node *parent; | ||
| 367 | void *left; | ||
| 368 | void *right; | ||
| 369 | unsigned char bitnum; | ||
| 370 | unsigned char nextbyte; | ||
| 371 | unsigned char leftnode; | ||
| 372 | unsigned char rightnode; | ||
| 373 | unsigned int keybits; | ||
| 374 | unsigned int keymask; | ||
| 375 | }; | ||
| 376 | |||
| 377 | /* | ||
| 378 | * Example lookup function for a tree. | ||
| 379 | */ | ||
| 380 | static void *lookup(struct tree *tree, const char *key) | ||
| 381 | { | ||
| 382 | struct node *node; | ||
| 383 | void *leaf = NULL; | ||
| 384 | |||
| 385 | node = tree->root; | ||
| 386 | while (!leaf && node) { | ||
| 387 | if (node->nextbyte) | ||
| 388 | key++; | ||
| 389 | if (*key & (1 << (node->bitnum & 7))) { | ||
| 390 | /* Right leg */ | ||
| 391 | if (node->rightnode == NODE) { | ||
| 392 | node = node->right; | ||
| 393 | } else if (node->rightnode == LEAF) { | ||
| 394 | leaf = node->right; | ||
| 395 | } else { | ||
| 396 | node = NULL; | ||
| 397 | } | ||
| 398 | } else { | ||
| 399 | /* Left leg */ | ||
| 400 | if (node->leftnode == NODE) { | ||
| 401 | node = node->left; | ||
| 402 | } else if (node->leftnode == LEAF) { | ||
| 403 | leaf = node->left; | ||
| 404 | } else { | ||
| 405 | node = NULL; | ||
| 406 | } | ||
| 407 | } | ||
| 408 | } | ||
| 409 | |||
| 410 | return leaf; | ||
| 411 | } | ||
| 412 | |||
| 413 | /* | ||
| 414 | * A simple non-recursive tree walker: keep track of visits to the | ||
| 415 | * left and right branches in the leftmask and rightmask. | ||
| 416 | */ | ||
| 417 | static void tree_walk(struct tree *tree) | ||
| 418 | { | ||
| 419 | struct node *node; | ||
| 420 | unsigned int leftmask; | ||
| 421 | unsigned int rightmask; | ||
| 422 | unsigned int bitmask; | ||
| 423 | int indent = 1; | ||
| 424 | int nodes, singletons, leaves; | ||
| 425 | |||
| 426 | nodes = singletons = leaves = 0; | ||
| 427 | |||
| 428 | printf("%s_%x root %p\n", tree->type, tree->maxage, tree->root); | ||
| 429 | if (tree->childnode == LEAF) { | ||
| 430 | assert(tree->root); | ||
| 431 | tree->leaf_print(tree->root, indent); | ||
| 432 | leaves = 1; | ||
| 433 | } else { | ||
| 434 | assert(tree->childnode == NODE); | ||
| 435 | node = tree->root; | ||
| 436 | leftmask = rightmask = 0; | ||
| 437 | while (node) { | ||
| 438 | printf("%*snode @ %p bitnum %d nextbyte %d" | ||
| 439 | " left %p right %p mask %x bits %x\n", | ||
| 440 | indent, "", node, | ||
| 441 | node->bitnum, node->nextbyte, | ||
| 442 | node->left, node->right, | ||
| 443 | node->keymask, node->keybits); | ||
| 444 | nodes += 1; | ||
| 445 | if (!(node->left && node->right)) | ||
| 446 | singletons += 1; | ||
| 447 | |||
| 448 | while (node) { | ||
| 449 | bitmask = 1 << node->bitnum; | ||
| 450 | if ((leftmask & bitmask) == 0) { | ||
| 451 | leftmask |= bitmask; | ||
| 452 | if (node->leftnode == LEAF) { | ||
| 453 | assert(node->left); | ||
| 454 | tree->leaf_print(node->left, | ||
| 455 | indent+1); | ||
| 456 | leaves += 1; | ||
| 457 | } else if (node->left) { | ||
| 458 | assert(node->leftnode == NODE); | ||
| 459 | indent += 1; | ||
| 460 | node = node->left; | ||
| 461 | break; | ||
| 462 | } | ||
| 463 | } | ||
| 464 | if ((rightmask & bitmask) == 0) { | ||
| 465 | rightmask |= bitmask; | ||
| 466 | if (node->rightnode == LEAF) { | ||
| 467 | assert(node->right); | ||
| 468 | tree->leaf_print(node->right, | ||
| 469 | indent+1); | ||
| 470 | leaves += 1; | ||
| 471 | } else if (node->right) { | ||
| 472 | assert(node->rightnode == NODE); | ||
| 473 | indent += 1; | ||
| 474 | node = node->right; | ||
| 475 | break; | ||
| 476 | } | ||
| 477 | } | ||
| 478 | leftmask &= ~bitmask; | ||
| 479 | rightmask &= ~bitmask; | ||
| 480 | node = node->parent; | ||
| 481 | indent -= 1; | ||
| 482 | } | ||
| 483 | } | ||
| 484 | } | ||
| 485 | printf("nodes %d leaves %d singletons %d\n", | ||
| 486 | nodes, leaves, singletons); | ||
| 487 | } | ||
| 488 | |||
| 489 | /* | ||
| 490 | * Allocate an initialize a new internal node. | ||
| 491 | */ | ||
| 492 | static struct node *alloc_node(struct node *parent) | ||
| 493 | { | ||
| 494 | struct node *node; | ||
| 495 | int bitnum; | ||
| 496 | |||
| 497 | node = malloc(sizeof(*node)); | ||
| 498 | node->left = node->right = NULL; | ||
| 499 | node->parent = parent; | ||
| 500 | node->leftnode = NODE; | ||
| 501 | node->rightnode = NODE; | ||
| 502 | node->keybits = 0; | ||
| 503 | node->keymask = 0; | ||
| 504 | node->mark = 0; | ||
| 505 | node->index = 0; | ||
| 506 | node->offset = -1; | ||
| 507 | node->size = 4; | ||
| 508 | |||
| 509 | if (node->parent) { | ||
| 510 | bitnum = parent->bitnum; | ||
| 511 | if ((bitnum & 7) == 0) { | ||
| 512 | node->bitnum = bitnum + 7 + 8; | ||
| 513 | node->nextbyte = 1; | ||
| 514 | } else { | ||
| 515 | node->bitnum = bitnum - 1; | ||
| 516 | node->nextbyte = 0; | ||
| 517 | } | ||
| 518 | } else { | ||
| 519 | node->bitnum = 7; | ||
| 520 | node->nextbyte = 0; | ||
| 521 | } | ||
| 522 | |||
| 523 | return node; | ||
| 524 | } | ||
| 525 | |||
| 526 | /* | ||
| 527 | * Insert a new leaf into the tree, and collapse any subtrees that are | ||
| 528 | * fully populated and end in identical leaves. A nextbyte tagged | ||
| 529 | * internal node will not be removed to preserve the tree's integrity. | ||
| 530 | * Note that due to the structure of utf8, no nextbyte tagged node | ||
| 531 | * will be a candidate for removal. | ||
| 532 | */ | ||
| 533 | static int insert(struct tree *tree, char *key, int keylen, void *leaf) | ||
| 534 | { | ||
| 535 | struct node *node; | ||
| 536 | struct node *parent; | ||
| 537 | void **cursor; | ||
| 538 | int keybits; | ||
| 539 | |||
| 540 | assert(keylen >= 1 && keylen <= 4); | ||
| 541 | |||
| 542 | node = NULL; | ||
| 543 | cursor = &tree->root; | ||
| 544 | keybits = 8 * keylen; | ||
| 545 | |||
| 546 | /* Insert, creating path along the way. */ | ||
| 547 | while (keybits) { | ||
| 548 | if (!*cursor) | ||
| 549 | *cursor = alloc_node(node); | ||
| 550 | node = *cursor; | ||
| 551 | if (node->nextbyte) | ||
| 552 | key++; | ||
| 553 | if (*key & (1 << (node->bitnum & 7))) | ||
| 554 | cursor = &node->right; | ||
| 555 | else | ||
| 556 | cursor = &node->left; | ||
| 557 | keybits--; | ||
| 558 | } | ||
| 559 | *cursor = leaf; | ||
| 560 | |||
| 561 | /* Merge subtrees if possible. */ | ||
| 562 | while (node) { | ||
| 563 | if (*key & (1 << (node->bitnum & 7))) | ||
| 564 | node->rightnode = LEAF; | ||
| 565 | else | ||
| 566 | node->leftnode = LEAF; | ||
| 567 | if (node->nextbyte) | ||
| 568 | break; | ||
| 569 | if (node->leftnode == NODE || node->rightnode == NODE) | ||
| 570 | break; | ||
| 571 | assert(node->left); | ||
| 572 | assert(node->right); | ||
| 573 | /* Compare */ | ||
| 574 | if (! tree->leaf_equal(node->left, node->right)) | ||
| 575 | break; | ||
| 576 | /* Keep left, drop right leaf. */ | ||
| 577 | leaf = node->left; | ||
| 578 | /* Check in parent */ | ||
| 579 | parent = node->parent; | ||
| 580 | if (!parent) { | ||
| 581 | /* root of tree! */ | ||
| 582 | tree->root = leaf; | ||
| 583 | tree->childnode = LEAF; | ||
| 584 | } else if (parent->left == node) { | ||
| 585 | parent->left = leaf; | ||
| 586 | parent->leftnode = LEAF; | ||
| 587 | if (parent->right) { | ||
| 588 | parent->keymask = 0; | ||
| 589 | parent->keybits = 0; | ||
| 590 | } else { | ||
| 591 | parent->keymask |= (1 << node->bitnum); | ||
| 592 | } | ||
| 593 | } else if (parent->right == node) { | ||
| 594 | parent->right = leaf; | ||
| 595 | parent->rightnode = LEAF; | ||
| 596 | if (parent->left) { | ||
| 597 | parent->keymask = 0; | ||
| 598 | parent->keybits = 0; | ||
| 599 | } else { | ||
| 600 | parent->keymask |= (1 << node->bitnum); | ||
| 601 | parent->keybits |= (1 << node->bitnum); | ||
| 602 | } | ||
| 603 | } else { | ||
| 604 | /* internal tree error */ | ||
| 605 | assert(0); | ||
| 606 | } | ||
| 607 | free(node); | ||
| 608 | node = parent; | ||
| 609 | } | ||
| 610 | |||
| 611 | /* Propagate keymasks up along singleton chains. */ | ||
| 612 | while (node) { | ||
| 613 | parent = node->parent; | ||
| 614 | if (!parent) | ||
| 615 | break; | ||
| 616 | /* Nix the mask for parents with two children. */ | ||
| 617 | if (node->keymask == 0) { | ||
| 618 | parent->keymask = 0; | ||
| 619 | parent->keybits = 0; | ||
| 620 | } else if (parent->left && parent->right) { | ||
| 621 | parent->keymask = 0; | ||
| 622 | parent->keybits = 0; | ||
| 623 | } else { | ||
| 624 | assert((parent->keymask & node->keymask) == 0); | ||
| 625 | parent->keymask |= node->keymask; | ||
| 626 | parent->keymask |= (1 << parent->bitnum); | ||
| 627 | parent->keybits |= node->keybits; | ||
| 628 | if (parent->right) | ||
| 629 | parent->keybits |= (1 << parent->bitnum); | ||
| 630 | } | ||
| 631 | node = parent; | ||
| 632 | } | ||
| 633 | |||
| 634 | return 0; | ||
| 635 | } | ||
| 636 | |||
| 637 | /* | ||
| 638 | * Prune internal nodes. | ||
| 639 | * | ||
| 640 | * Fully populated subtrees that end at the same leaf have already | ||
| 641 | * been collapsed. There are still internal nodes that have for both | ||
| 642 | * their left and right branches a sequence of singletons that make | ||
| 643 | * identical choices and end in identical leaves. The keymask and | ||
| 644 | * keybits collected in the nodes describe the choices made in these | ||
| 645 | * singleton chains. When they are identical for the left and right | ||
| 646 | * branch of a node, and the two leaves comare identical, the node in | ||
| 647 | * question can be removed. | ||
| 648 | * | ||
| 649 | * Note that nodes with the nextbyte tag set will not be removed by | ||
| 650 | * this to ensure tree integrity. Note as well that the structure of | ||
| 651 | * utf8 ensures that these nodes would not have been candidates for | ||
| 652 | * removal in any case. | ||
| 653 | */ | ||
| 654 | static void prune(struct tree *tree) | ||
| 655 | { | ||
| 656 | struct node *node; | ||
| 657 | struct node *left; | ||
| 658 | struct node *right; | ||
| 659 | struct node *parent; | ||
| 660 | void *leftleaf; | ||
| 661 | void *rightleaf; | ||
| 662 | unsigned int leftmask; | ||
| 663 | unsigned int rightmask; | ||
| 664 | unsigned int bitmask; | ||
| 665 | int count; | ||
| 666 | |||
| 667 | if (verbose > 0) | ||
| 668 | printf("Pruning %s_%x\n", tree->type, tree->maxage); | ||
| 669 | |||
| 670 | count = 0; | ||
| 671 | if (tree->childnode == LEAF) | ||
| 672 | return; | ||
| 673 | if (!tree->root) | ||
| 674 | return; | ||
| 675 | |||
| 676 | leftmask = rightmask = 0; | ||
| 677 | node = tree->root; | ||
| 678 | while (node) { | ||
| 679 | if (node->nextbyte) | ||
| 680 | goto advance; | ||
| 681 | if (node->leftnode == LEAF) | ||
| 682 | goto advance; | ||
| 683 | if (node->rightnode == LEAF) | ||
| 684 | goto advance; | ||
| 685 | if (!node->left) | ||
| 686 | goto advance; | ||
| 687 | if (!node->right) | ||
| 688 | goto advance; | ||
| 689 | left = node->left; | ||
| 690 | right = node->right; | ||
| 691 | if (left->keymask == 0) | ||
| 692 | goto advance; | ||
| 693 | if (right->keymask == 0) | ||
| 694 | goto advance; | ||
| 695 | if (left->keymask != right->keymask) | ||
| 696 | goto advance; | ||
| 697 | if (left->keybits != right->keybits) | ||
| 698 | goto advance; | ||
| 699 | leftleaf = NULL; | ||
| 700 | while (!leftleaf) { | ||
| 701 | assert(left->left || left->right); | ||
| 702 | if (left->leftnode == LEAF) | ||
| 703 | leftleaf = left->left; | ||
| 704 | else if (left->rightnode == LEAF) | ||
| 705 | leftleaf = left->right; | ||
| 706 | else if (left->left) | ||
| 707 | left = left->left; | ||
| 708 | else if (left->right) | ||
| 709 | left = left->right; | ||
| 710 | else | ||
| 711 | assert(0); | ||
| 712 | } | ||
| 713 | rightleaf = NULL; | ||
| 714 | while (!rightleaf) { | ||
| 715 | assert(right->left || right->right); | ||
| 716 | if (right->leftnode == LEAF) | ||
| 717 | rightleaf = right->left; | ||
| 718 | else if (right->rightnode == LEAF) | ||
| 719 | rightleaf = right->right; | ||
| 720 | else if (right->left) | ||
| 721 | right = right->left; | ||
| 722 | else if (right->right) | ||
| 723 | right = right->right; | ||
| 724 | else | ||
| 725 | assert(0); | ||
| 726 | } | ||
| 727 | if (! tree->leaf_equal(leftleaf, rightleaf)) | ||
| 728 | goto advance; | ||
| 729 | /* | ||
| 730 | * This node has identical singleton-only subtrees. | ||
| 731 | * Remove it. | ||
| 732 | */ | ||
| 733 | parent = node->parent; | ||
| 734 | left = node->left; | ||
| 735 | right = node->right; | ||
| 736 | if (parent->left == node) | ||
| 737 | parent->left = left; | ||
| 738 | else if (parent->right == node) | ||
| 739 | parent->right = left; | ||
| 740 | else | ||
| 741 | assert(0); | ||
| 742 | left->parent = parent; | ||
| 743 | left->keymask |= (1 << node->bitnum); | ||
| 744 | node->left = NULL; | ||
| 745 | while (node) { | ||
| 746 | bitmask = 1 << node->bitnum; | ||
| 747 | leftmask &= ~bitmask; | ||
| 748 | rightmask &= ~bitmask; | ||
| 749 | if (node->leftnode == NODE && node->left) { | ||
| 750 | left = node->left; | ||
| 751 | free(node); | ||
| 752 | count++; | ||
| 753 | node = left; | ||
| 754 | } else if (node->rightnode == NODE && node->right) { | ||
| 755 | right = node->right; | ||
| 756 | free(node); | ||
| 757 | count++; | ||
| 758 | node = right; | ||
| 759 | } else { | ||
| 760 | node = NULL; | ||
| 761 | } | ||
| 762 | } | ||
| 763 | /* Propagate keymasks up along singleton chains. */ | ||
| 764 | node = parent; | ||
| 765 | /* Force re-check */ | ||
| 766 | bitmask = 1 << node->bitnum; | ||
| 767 | leftmask &= ~bitmask; | ||
| 768 | rightmask &= ~bitmask; | ||
| 769 | for (;;) { | ||
| 770 | if (node->left && node->right) | ||
| 771 | break; | ||
| 772 | if (node->left) { | ||
| 773 | left = node->left; | ||
| 774 | node->keymask |= left->keymask; | ||
| 775 | node->keybits |= left->keybits; | ||
| 776 | } | ||
| 777 | if (node->right) { | ||
| 778 | right = node->right; | ||
| 779 | node->keymask |= right->keymask; | ||
| 780 | node->keybits |= right->keybits; | ||
| 781 | } | ||
| 782 | node->keymask |= (1 << node->bitnum); | ||
| 783 | node = node->parent; | ||
| 784 | /* Force re-check */ | ||
| 785 | bitmask = 1 << node->bitnum; | ||
| 786 | leftmask &= ~bitmask; | ||
| 787 | rightmask &= ~bitmask; | ||
| 788 | } | ||
| 789 | advance: | ||
| 790 | bitmask = 1 << node->bitnum; | ||
| 791 | if ((leftmask & bitmask) == 0 && | ||
| 792 | node->leftnode == NODE && | ||
| 793 | node->left) { | ||
| 794 | leftmask |= bitmask; | ||
| 795 | node = node->left; | ||
| 796 | } else if ((rightmask & bitmask) == 0 && | ||
| 797 | node->rightnode == NODE && | ||
| 798 | node->right) { | ||
| 799 | rightmask |= bitmask; | ||
| 800 | node = node->right; | ||
| 801 | } else { | ||
| 802 | leftmask &= ~bitmask; | ||
| 803 | rightmask &= ~bitmask; | ||
| 804 | node = node->parent; | ||
| 805 | } | ||
| 806 | } | ||
| 807 | if (verbose > 0) | ||
| 808 | printf("Pruned %d nodes\n", count); | ||
| 809 | } | ||
| 810 | |||
| 811 | /* | ||
| 812 | * Mark the nodes in the tree that lead to leaves that must be | ||
| 813 | * emitted. | ||
| 814 | */ | ||
| 815 | static void mark_nodes(struct tree *tree) | ||
| 816 | { | ||
| 817 | struct node *node; | ||
| 818 | struct node *n; | ||
| 819 | unsigned int leftmask; | ||
| 820 | unsigned int rightmask; | ||
| 821 | unsigned int bitmask; | ||
| 822 | int marked; | ||
| 823 | |||
| 824 | marked = 0; | ||
| 825 | if (verbose > 0) | ||
| 826 | printf("Marking %s_%x\n", tree->type, tree->maxage); | ||
| 827 | if (tree->childnode == LEAF) | ||
| 828 | goto done; | ||
| 829 | |||
| 830 | assert(tree->childnode == NODE); | ||
| 831 | node = tree->root; | ||
| 832 | leftmask = rightmask = 0; | ||
| 833 | while (node) { | ||
| 834 | bitmask = 1 << node->bitnum; | ||
| 835 | if ((leftmask & bitmask) == 0) { | ||
| 836 | leftmask |= bitmask; | ||
| 837 | if (node->leftnode == LEAF) { | ||
| 838 | assert(node->left); | ||
| 839 | if (tree->leaf_mark(node->left)) { | ||
| 840 | n = node; | ||
| 841 | while (n && !n->mark) { | ||
| 842 | marked++; | ||
| 843 | n->mark = 1; | ||
| 844 | n = n->parent; | ||
| 845 | } | ||
| 846 | } | ||
| 847 | } else if (node->left) { | ||
| 848 | assert(node->leftnode == NODE); | ||
| 849 | node = node->left; | ||
| 850 | continue; | ||
| 851 | } | ||
| 852 | } | ||
| 853 | if ((rightmask & bitmask) == 0) { | ||
| 854 | rightmask |= bitmask; | ||
| 855 | if (node->rightnode == LEAF) { | ||
| 856 | assert(node->right); | ||
| 857 | if (tree->leaf_mark(node->right)) { | ||
| 858 | n = node; | ||
| 859 | while (n && !n->mark) { | ||
| 860 | marked++; | ||
| 861 | n->mark = 1; | ||
| 862 | n = n->parent; | ||
| 863 | } | ||
| 864 | } | ||
| 865 | } else if (node->right) { | ||
| 866 | assert(node->rightnode == NODE); | ||
| 867 | node = node->right; | ||
| 868 | continue; | ||
| 869 | } | ||
| 870 | } | ||
| 871 | leftmask &= ~bitmask; | ||
| 872 | rightmask &= ~bitmask; | ||
| 873 | node = node->parent; | ||
| 874 | } | ||
| 875 | |||
| 876 | /* second pass: left siblings and singletons */ | ||
| 877 | |||
| 878 | assert(tree->childnode == NODE); | ||
| 879 | node = tree->root; | ||
| 880 | leftmask = rightmask = 0; | ||
| 881 | while (node) { | ||
| 882 | bitmask = 1 << node->bitnum; | ||
| 883 | if ((leftmask & bitmask) == 0) { | ||
| 884 | leftmask |= bitmask; | ||
| 885 | if (node->leftnode == LEAF) { | ||
| 886 | assert(node->left); | ||
| 887 | if (tree->leaf_mark(node->left)) { | ||
| 888 | n = node; | ||
| 889 | while (n && !n->mark) { | ||
| 890 | marked++; | ||
| 891 | n->mark = 1; | ||
| 892 | n = n->parent; | ||
| 893 | } | ||
| 894 | } | ||
| 895 | } else if (node->left) { | ||
| 896 | assert(node->leftnode == NODE); | ||
| 897 | node = node->left; | ||
| 898 | if (!node->mark && node->parent->mark) { | ||
| 899 | marked++; | ||
| 900 | node->mark = 1; | ||
| 901 | } | ||
| 902 | continue; | ||
| 903 | } | ||
| 904 | } | ||
| 905 | if ((rightmask & bitmask) == 0) { | ||
| 906 | rightmask |= bitmask; | ||
| 907 | if (node->rightnode == LEAF) { | ||
| 908 | assert(node->right); | ||
| 909 | if (tree->leaf_mark(node->right)) { | ||
| 910 | n = node; | ||
| 911 | while (n && !n->mark) { | ||
| 912 | marked++; | ||
| 913 | n->mark = 1; | ||
| 914 | n = n->parent; | ||
| 915 | } | ||
| 916 | } | ||
| 917 | } else if (node->right) { | ||
| 918 | assert(node->rightnode == NODE); | ||
| 919 | node = node->right; | ||
| 920 | if (!node->mark && node->parent->mark && | ||
| 921 | !node->parent->left) { | ||
| 922 | marked++; | ||
| 923 | node->mark = 1; | ||
| 924 | } | ||
| 925 | continue; | ||
| 926 | } | ||
| 927 | } | ||
| 928 | leftmask &= ~bitmask; | ||
| 929 | rightmask &= ~bitmask; | ||
| 930 | node = node->parent; | ||
| 931 | } | ||
| 932 | done: | ||
| 933 | if (verbose > 0) | ||
| 934 | printf("Marked %d nodes\n", marked); | ||
| 935 | } | ||
| 936 | |||
| 937 | /* | ||
| 938 | * Compute the index of each node and leaf, which is the offset in the | ||
| 939 | * emitted trie. These values must be pre-computed because relative | ||
| 940 | * offsets between nodes are used to navigate the tree. | ||
| 941 | */ | ||
| 942 | static int index_nodes(struct tree *tree, int index) | ||
| 943 | { | ||
| 944 | struct node *node; | ||
| 945 | unsigned int leftmask; | ||
| 946 | unsigned int rightmask; | ||
| 947 | unsigned int bitmask; | ||
| 948 | int count; | ||
| 949 | int indent; | ||
| 950 | |||
| 951 | /* Align to a cache line (or half a cache line?). */ | ||
| 952 | while (index % 64) | ||
| 953 | index++; | ||
| 954 | tree->index = index; | ||
| 955 | indent = 1; | ||
| 956 | count = 0; | ||
| 957 | |||
| 958 | if (verbose > 0) | ||
| 959 | printf("Indexing %s_%x: %d\n", tree->type, tree->maxage, index); | ||
| 960 | if (tree->childnode == LEAF) { | ||
| 961 | index += tree->leaf_size(tree->root); | ||
| 962 | goto done; | ||
| 963 | } | ||
| 964 | |||
| 965 | assert(tree->childnode == NODE); | ||
| 966 | node = tree->root; | ||
| 967 | leftmask = rightmask = 0; | ||
| 968 | while (node) { | ||
| 969 | if (!node->mark) | ||
| 970 | goto skip; | ||
| 971 | count++; | ||
| 972 | if (node->index != index) | ||
| 973 | node->index = index; | ||
| 974 | index += node->size; | ||
| 975 | skip: | ||
| 976 | while (node) { | ||
| 977 | bitmask = 1 << node->bitnum; | ||
| 978 | if (node->mark && (leftmask & bitmask) == 0) { | ||
| 979 | leftmask |= bitmask; | ||
| 980 | if (node->leftnode == LEAF) { | ||
| 981 | assert(node->left); | ||
| 982 | *tree->leaf_index(tree, node->left) = | ||
| 983 | index; | ||
| 984 | index += tree->leaf_size(node->left); | ||
| 985 | count++; | ||
| 986 | } else if (node->left) { | ||
| 987 | assert(node->leftnode == NODE); | ||
| 988 | indent += 1; | ||
| 989 | node = node->left; | ||
| 990 | break; | ||
| 991 | } | ||
| 992 | } | ||
| 993 | if (node->mark && (rightmask & bitmask) == 0) { | ||
| 994 | rightmask |= bitmask; | ||
| 995 | if (node->rightnode == LEAF) { | ||
| 996 | assert(node->right); | ||
| 997 | *tree->leaf_index(tree, node->right) = index; | ||
| 998 | index += tree->leaf_size(node->right); | ||
| 999 | count++; | ||
| 1000 | } else if (node->right) { | ||
| 1001 | assert(node->rightnode == NODE); | ||
| 1002 | indent += 1; | ||
| 1003 | node = node->right; | ||
| 1004 | break; | ||
| 1005 | } | ||
| 1006 | } | ||
| 1007 | leftmask &= ~bitmask; | ||
| 1008 | rightmask &= ~bitmask; | ||
| 1009 | node = node->parent; | ||
| 1010 | indent -= 1; | ||
| 1011 | } | ||
| 1012 | } | ||
| 1013 | done: | ||
| 1014 | /* Round up to a multiple of 16 */ | ||
| 1015 | while (index % 16) | ||
| 1016 | index++; | ||
| 1017 | if (verbose > 0) | ||
| 1018 | printf("Final index %d\n", index); | ||
| 1019 | return index; | ||
| 1020 | } | ||
| 1021 | |||
| 1022 | /* | ||
| 1023 | * Mark the nodes in a subtree, helper for size_nodes(). | ||
| 1024 | */ | ||
| 1025 | static int mark_subtree(struct node *node) | ||
| 1026 | { | ||
| 1027 | int changed; | ||
| 1028 | |||
| 1029 | if (!node || node->mark) | ||
| 1030 | return 0; | ||
| 1031 | node->mark = 1; | ||
| 1032 | node->index = node->parent->index; | ||
| 1033 | changed = 1; | ||
| 1034 | if (node->leftnode == NODE) | ||
| 1035 | changed += mark_subtree(node->left); | ||
| 1036 | if (node->rightnode == NODE) | ||
| 1037 | changed += mark_subtree(node->right); | ||
| 1038 | return changed; | ||
| 1039 | } | ||
| 1040 | |||
| 1041 | /* | ||
| 1042 | * Compute the size of nodes and leaves. We start by assuming that | ||
| 1043 | * each node needs to store a three-byte offset. The indexes of the | ||
| 1044 | * nodes are calculated based on that, and then this function is | ||
| 1045 | * called to see if the sizes of some nodes can be reduced. This is | ||
| 1046 | * repeated until no more changes are seen. | ||
| 1047 | */ | ||
| 1048 | static int size_nodes(struct tree *tree) | ||
| 1049 | { | ||
| 1050 | struct tree *next; | ||
| 1051 | struct node *node; | ||
| 1052 | struct node *right; | ||
| 1053 | struct node *n; | ||
| 1054 | unsigned int leftmask; | ||
| 1055 | unsigned int rightmask; | ||
| 1056 | unsigned int bitmask; | ||
| 1057 | unsigned int pathbits; | ||
| 1058 | unsigned int pathmask; | ||
| 1059 | unsigned int nbit; | ||
| 1060 | int changed; | ||
| 1061 | int offset; | ||
| 1062 | int size; | ||
| 1063 | int indent; | ||
| 1064 | |||
| 1065 | indent = 1; | ||
| 1066 | changed = 0; | ||
| 1067 | size = 0; | ||
| 1068 | |||
| 1069 | if (verbose > 0) | ||
| 1070 | printf("Sizing %s_%x\n", tree->type, tree->maxage); | ||
| 1071 | if (tree->childnode == LEAF) | ||
| 1072 | goto done; | ||
| 1073 | |||
| 1074 | assert(tree->childnode == NODE); | ||
| 1075 | pathbits = 0; | ||
| 1076 | pathmask = 0; | ||
| 1077 | node = tree->root; | ||
| 1078 | leftmask = rightmask = 0; | ||
| 1079 | while (node) { | ||
| 1080 | if (!node->mark) | ||
| 1081 | goto skip; | ||
| 1082 | offset = 0; | ||
| 1083 | if (!node->left || !node->right) { | ||
| 1084 | size = 1; | ||
| 1085 | } else { | ||
| 1086 | if (node->rightnode == NODE) { | ||
| 1087 | /* | ||
| 1088 | * If the right node is not marked, | ||
| 1089 | * look for a corresponding node in | ||
| 1090 | * the next tree. Such a node need | ||
| 1091 | * not exist. | ||
| 1092 | */ | ||
| 1093 | right = node->right; | ||
| 1094 | next = tree->next; | ||
| 1095 | while (!right->mark) { | ||
| 1096 | assert(next); | ||
| 1097 | n = next->root; | ||
| 1098 | while (n->bitnum != node->bitnum) { | ||
| 1099 | nbit = 1 << n->bitnum; | ||
| 1100 | if (!(pathmask & nbit)) | ||
| 1101 | break; | ||
| 1102 | if (pathbits & nbit) { | ||
| 1103 | if (n->rightnode == LEAF) | ||
| 1104 | break; | ||
| 1105 | n = n->right; | ||
| 1106 | } else { | ||
| 1107 | if (n->leftnode == LEAF) | ||
| 1108 | break; | ||
| 1109 | n = n->left; | ||
| 1110 | } | ||
| 1111 | } | ||
| 1112 | if (n->bitnum != node->bitnum) | ||
| 1113 | break; | ||
| 1114 | n = n->right; | ||
| 1115 | right = n; | ||
| 1116 | next = next->next; | ||
| 1117 | } | ||
| 1118 | /* Make sure the right node is marked. */ | ||
| 1119 | if (!right->mark) | ||
| 1120 | changed += mark_subtree(right); | ||
| 1121 | offset = right->index - node->index; | ||
| 1122 | } else { | ||
| 1123 | offset = *tree->leaf_index(tree, node->right); | ||
| 1124 | offset -= node->index; | ||
| 1125 | } | ||
| 1126 | assert(offset >= 0); | ||
| 1127 | assert(offset <= 0xffffff); | ||
| 1128 | if (offset <= 0xff) { | ||
| 1129 | size = 2; | ||
| 1130 | } else if (offset <= 0xffff) { | ||
| 1131 | size = 3; | ||
| 1132 | } else { /* offset <= 0xffffff */ | ||
| 1133 | size = 4; | ||
| 1134 | } | ||
| 1135 | } | ||
| 1136 | if (node->size != size || node->offset != offset) { | ||
| 1137 | node->size = size; | ||
| 1138 | node->offset = offset; | ||
| 1139 | changed++; | ||
| 1140 | } | ||
| 1141 | skip: | ||
| 1142 | while (node) { | ||
| 1143 | bitmask = 1 << node->bitnum; | ||
| 1144 | pathmask |= bitmask; | ||
| 1145 | if (node->mark && (leftmask & bitmask) == 0) { | ||
| 1146 | leftmask |= bitmask; | ||
| 1147 | if (node->leftnode == LEAF) { | ||
| 1148 | assert(node->left); | ||
| 1149 | } else if (node->left) { | ||
| 1150 | assert(node->leftnode == NODE); | ||
| 1151 | indent += 1; | ||
| 1152 | node = node->left; | ||
| 1153 | break; | ||
| 1154 | } | ||
| 1155 | } | ||
| 1156 | if (node->mark && (rightmask & bitmask) == 0) { | ||
| 1157 | rightmask |= bitmask; | ||
| 1158 | pathbits |= bitmask; | ||
| 1159 | if (node->rightnode == LEAF) { | ||
| 1160 | assert(node->right); | ||
| 1161 | } else if (node->right) { | ||
| 1162 | assert(node->rightnode == NODE); | ||
| 1163 | indent += 1; | ||
| 1164 | node = node->right; | ||
| 1165 | break; | ||
| 1166 | } | ||
| 1167 | } | ||
| 1168 | leftmask &= ~bitmask; | ||
| 1169 | rightmask &= ~bitmask; | ||
| 1170 | pathmask &= ~bitmask; | ||
| 1171 | pathbits &= ~bitmask; | ||
| 1172 | node = node->parent; | ||
| 1173 | indent -= 1; | ||
| 1174 | } | ||
| 1175 | } | ||
| 1176 | done: | ||
| 1177 | if (verbose > 0) | ||
| 1178 | printf("Found %d changes\n", changed); | ||
| 1179 | return changed; | ||
| 1180 | } | ||
| 1181 | |||
| 1182 | /* | ||
| 1183 | * Emit a trie for the given tree into the data array. | ||
| 1184 | */ | ||
| 1185 | static void emit(struct tree *tree, unsigned char *data) | ||
| 1186 | { | ||
| 1187 | struct node *node; | ||
| 1188 | unsigned int leftmask; | ||
| 1189 | unsigned int rightmask; | ||
| 1190 | unsigned int bitmask; | ||
| 1191 | int offlen; | ||
| 1192 | int offset; | ||
| 1193 | int index; | ||
| 1194 | int indent; | ||
| 1195 | int size; | ||
| 1196 | int bytes; | ||
| 1197 | int leaves; | ||
| 1198 | int nodes[4]; | ||
| 1199 | unsigned char byte; | ||
| 1200 | |||
| 1201 | nodes[0] = nodes[1] = nodes[2] = nodes[3] = 0; | ||
| 1202 | leaves = 0; | ||
| 1203 | bytes = 0; | ||
| 1204 | index = tree->index; | ||
| 1205 | data += index; | ||
| 1206 | indent = 1; | ||
| 1207 | if (verbose > 0) | ||
| 1208 | printf("Emitting %s_%x\n", tree->type, tree->maxage); | ||
| 1209 | if (tree->childnode == LEAF) { | ||
| 1210 | assert(tree->root); | ||
| 1211 | tree->leaf_emit(tree->root, data); | ||
| 1212 | size = tree->leaf_size(tree->root); | ||
| 1213 | index += size; | ||
| 1214 | leaves++; | ||
| 1215 | goto done; | ||
| 1216 | } | ||
| 1217 | |||
| 1218 | assert(tree->childnode == NODE); | ||
| 1219 | node = tree->root; | ||
| 1220 | leftmask = rightmask = 0; | ||
| 1221 | while (node) { | ||
| 1222 | if (!node->mark) | ||
| 1223 | goto skip; | ||
| 1224 | assert(node->offset != -1); | ||
| 1225 | assert(node->index == index); | ||
| 1226 | |||
| 1227 | byte = 0; | ||
| 1228 | if (node->nextbyte) | ||
| 1229 | byte |= NEXTBYTE; | ||
| 1230 | byte |= (node->bitnum & BITNUM); | ||
| 1231 | if (node->left && node->right) { | ||
| 1232 | if (node->leftnode == NODE) | ||
| 1233 | byte |= LEFTNODE; | ||
| 1234 | if (node->rightnode == NODE) | ||
| 1235 | byte |= RIGHTNODE; | ||
| 1236 | if (node->offset <= 0xff) | ||
| 1237 | offlen = 1; | ||
| 1238 | else if (node->offset <= 0xffff) | ||
| 1239 | offlen = 2; | ||
| 1240 | else | ||
| 1241 | offlen = 3; | ||
| 1242 | nodes[offlen]++; | ||
| 1243 | offset = node->offset; | ||
| 1244 | byte |= offlen << OFFLEN_SHIFT; | ||
| 1245 | *data++ = byte; | ||
| 1246 | index++; | ||
| 1247 | while (offlen--) { | ||
| 1248 | *data++ = offset & 0xff; | ||
| 1249 | index++; | ||
| 1250 | offset >>= 8; | ||
| 1251 | } | ||
| 1252 | } else if (node->left) { | ||
| 1253 | if (node->leftnode == NODE) | ||
| 1254 | byte |= TRIENODE; | ||
| 1255 | nodes[0]++; | ||
| 1256 | *data++ = byte; | ||
| 1257 | index++; | ||
| 1258 | } else if (node->right) { | ||
| 1259 | byte |= RIGHTNODE; | ||
| 1260 | if (node->rightnode == NODE) | ||
| 1261 | byte |= TRIENODE; | ||
| 1262 | nodes[0]++; | ||
| 1263 | *data++ = byte; | ||
| 1264 | index++; | ||
| 1265 | } else { | ||
| 1266 | assert(0); | ||
| 1267 | } | ||
| 1268 | skip: | ||
| 1269 | while (node) { | ||
| 1270 | bitmask = 1 << node->bitnum; | ||
| 1271 | if (node->mark && (leftmask & bitmask) == 0) { | ||
| 1272 | leftmask |= bitmask; | ||
| 1273 | if (node->leftnode == LEAF) { | ||
| 1274 | assert(node->left); | ||
| 1275 | data = tree->leaf_emit(node->left, | ||
| 1276 | data); | ||
| 1277 | size = tree->leaf_size(node->left); | ||
| 1278 | index += size; | ||
| 1279 | bytes += size; | ||
| 1280 | leaves++; | ||
| 1281 | } else if (node->left) { | ||
| 1282 | assert(node->leftnode == NODE); | ||
| 1283 | indent += 1; | ||
| 1284 | node = node->left; | ||
| 1285 | break; | ||
| 1286 | } | ||
| 1287 | } | ||
| 1288 | if (node->mark && (rightmask & bitmask) == 0) { | ||
| 1289 | rightmask |= bitmask; | ||
| 1290 | if (node->rightnode == LEAF) { | ||
| 1291 | assert(node->right); | ||
| 1292 | data = tree->leaf_emit(node->right, | ||
| 1293 | data); | ||
| 1294 | size = tree->leaf_size(node->right); | ||
| 1295 | index += size; | ||
| 1296 | bytes += size; | ||
| 1297 | leaves++; | ||
| 1298 | } else if (node->right) { | ||
| 1299 | assert(node->rightnode == NODE); | ||
| 1300 | indent += 1; | ||
| 1301 | node = node->right; | ||
| 1302 | break; | ||
| 1303 | } | ||
| 1304 | } | ||
| 1305 | leftmask &= ~bitmask; | ||
| 1306 | rightmask &= ~bitmask; | ||
| 1307 | node = node->parent; | ||
| 1308 | indent -= 1; | ||
| 1309 | } | ||
| 1310 | } | ||
| 1311 | done: | ||
| 1312 | if (verbose > 0) { | ||
| 1313 | printf("Emitted %d (%d) leaves", | ||
| 1314 | leaves, bytes); | ||
| 1315 | printf(" %d (%d+%d+%d+%d) nodes", | ||
| 1316 | nodes[0] + nodes[1] + nodes[2] + nodes[3], | ||
| 1317 | nodes[0], nodes[1], nodes[2], nodes[3]); | ||
| 1318 | printf(" %d total\n", index - tree->index); | ||
| 1319 | } | ||
| 1320 | } | ||
| 1321 | |||
| 1322 | /* ------------------------------------------------------------------ */ | ||
| 1323 | |||
| 1324 | /* | ||
| 1325 | * Unicode data. | ||
| 1326 | * | ||
| 1327 | * We need to keep track of the Canonical Combining Class, the Age, | ||
| 1328 | * and decompositions for a code point. | ||
| 1329 | * | ||
| 1330 | * For the Age, we store the index into the ages table. Effectively | ||
| 1331 | * this is a generation number that the table maps to a unicode | ||
| 1332 | * version. | ||
| 1333 | * | ||
| 1334 | * The correction field is used to indicate that this entry is in the | ||
| 1335 | * corrections array, which contains decompositions that were | ||
| 1336 | * corrected in later revisions. The value of the correction field is | ||
| 1337 | * the Unicode version in which the mapping was corrected. | ||
| 1338 | */ | ||
| 1339 | struct unicode_data { | ||
| 1340 | unsigned int code; | ||
| 1341 | int ccc; | ||
| 1342 | int gen; | ||
| 1343 | int correction; | ||
| 1344 | unsigned int *utf32nfdi; | ||
| 1345 | unsigned int *utf32nfdicf; | ||
| 1346 | char *utf8nfdi; | ||
| 1347 | char *utf8nfdicf; | ||
| 1348 | }; | ||
| 1349 | |||
| 1350 | struct unicode_data unicode_data[0x110000]; | ||
| 1351 | struct unicode_data *corrections; | ||
| 1352 | int corrections_count; | ||
| 1353 | |||
| 1354 | struct tree *nfdi_tree; | ||
| 1355 | struct tree *nfdicf_tree; | ||
| 1356 | |||
| 1357 | struct tree *trees; | ||
| 1358 | int trees_count; | ||
| 1359 | |||
| 1360 | /* | ||
| 1361 | * Check the corrections array to see if this entry was corrected at | ||
| 1362 | * some point. | ||
| 1363 | */ | ||
| 1364 | static struct unicode_data *corrections_lookup(struct unicode_data *u) | ||
| 1365 | { | ||
| 1366 | int i; | ||
| 1367 | |||
| 1368 | for (i = 0; i != corrections_count; i++) | ||
| 1369 | if (u->code == corrections[i].code) | ||
| 1370 | return &corrections[i]; | ||
| 1371 | return u; | ||
| 1372 | } | ||
| 1373 | |||
| 1374 | static int nfdi_equal(void *l, void *r) | ||
| 1375 | { | ||
| 1376 | struct unicode_data *left = l; | ||
| 1377 | struct unicode_data *right = r; | ||
| 1378 | |||
| 1379 | if (left->gen != right->gen) | ||
| 1380 | return 0; | ||
| 1381 | if (left->ccc != right->ccc) | ||
| 1382 | return 0; | ||
| 1383 | if (left->utf8nfdi && right->utf8nfdi && | ||
| 1384 | strcmp(left->utf8nfdi, right->utf8nfdi) == 0) | ||
| 1385 | return 1; | ||
| 1386 | if (left->utf8nfdi || right->utf8nfdi) | ||
| 1387 | return 0; | ||
| 1388 | return 1; | ||
| 1389 | } | ||
| 1390 | |||
| 1391 | static int nfdicf_equal(void *l, void *r) | ||
| 1392 | { | ||
| 1393 | struct unicode_data *left = l; | ||
| 1394 | struct unicode_data *right = r; | ||
| 1395 | |||
| 1396 | if (left->gen != right->gen) | ||
| 1397 | return 0; | ||
| 1398 | if (left->ccc != right->ccc) | ||
| 1399 | return 0; | ||
| 1400 | if (left->utf8nfdicf && right->utf8nfdicf && | ||
| 1401 | strcmp(left->utf8nfdicf, right->utf8nfdicf) == 0) | ||
| 1402 | return 1; | ||
| 1403 | if (left->utf8nfdicf && right->utf8nfdicf) | ||
| 1404 | return 0; | ||
| 1405 | if (left->utf8nfdicf || right->utf8nfdicf) | ||
| 1406 | return 0; | ||
| 1407 | if (left->utf8nfdi && right->utf8nfdi && | ||
| 1408 | strcmp(left->utf8nfdi, right->utf8nfdi) == 0) | ||
| 1409 | return 1; | ||
| 1410 | if (left->utf8nfdi || right->utf8nfdi) | ||
| 1411 | return 0; | ||
| 1412 | return 1; | ||
| 1413 | } | ||
| 1414 | |||
| 1415 | static void nfdi_print(void *l, int indent) | ||
| 1416 | { | ||
| 1417 | struct unicode_data *leaf = l; | ||
| 1418 | |||
| 1419 | printf("%*sleaf @ %p code %X ccc %d gen %d", indent, "", leaf, | ||
| 1420 | leaf->code, leaf->ccc, leaf->gen); | ||
| 1421 | |||
| 1422 | if (leaf->utf8nfdi && leaf->utf8nfdi[0] == HANGUL) | ||
| 1423 | printf(" nfdi \"%s\"", "HANGUL SYLLABLE"); | ||
| 1424 | else if (leaf->utf8nfdi) | ||
| 1425 | printf(" nfdi \"%s\"", (const char*)leaf->utf8nfdi); | ||
| 1426 | |||
| 1427 | printf("\n"); | ||
| 1428 | } | ||
| 1429 | |||
| 1430 | static void nfdicf_print(void *l, int indent) | ||
| 1431 | { | ||
| 1432 | struct unicode_data *leaf = l; | ||
| 1433 | |||
| 1434 | printf("%*sleaf @ %p code %X ccc %d gen %d", indent, "", leaf, | ||
| 1435 | leaf->code, leaf->ccc, leaf->gen); | ||
| 1436 | |||
| 1437 | if (leaf->utf8nfdicf) | ||
| 1438 | printf(" nfdicf \"%s\"", (const char*)leaf->utf8nfdicf); | ||
| 1439 | else if (leaf->utf8nfdi && leaf->utf8nfdi[0] == HANGUL) | ||
| 1440 | printf(" nfdi \"%s\"", "HANGUL SYLLABLE"); | ||
| 1441 | else if (leaf->utf8nfdi) | ||
| 1442 | printf(" nfdi \"%s\"", (const char*)leaf->utf8nfdi); | ||
| 1443 | printf("\n"); | ||
| 1444 | } | ||
| 1445 | |||
| 1446 | static int nfdi_mark(void *l) | ||
| 1447 | { | ||
| 1448 | return 1; | ||
| 1449 | } | ||
| 1450 | |||
| 1451 | static int nfdicf_mark(void *l) | ||
| 1452 | { | ||
| 1453 | struct unicode_data *leaf = l; | ||
| 1454 | |||
| 1455 | if (leaf->utf8nfdicf) | ||
| 1456 | return 1; | ||
| 1457 | return 0; | ||
| 1458 | } | ||
| 1459 | |||
| 1460 | static int correction_mark(void *l) | ||
| 1461 | { | ||
| 1462 | struct unicode_data *leaf = l; | ||
| 1463 | |||
| 1464 | return leaf->correction; | ||
| 1465 | } | ||
| 1466 | |||
| 1467 | static int nfdi_size(void *l) | ||
| 1468 | { | ||
| 1469 | struct unicode_data *leaf = l; | ||
| 1470 | int size = 2; | ||
| 1471 | |||
| 1472 | if (HANGUL_SYLLABLE(leaf->code)) | ||
| 1473 | size += 1; | ||
| 1474 | else if (leaf->utf8nfdi) | ||
| 1475 | size += strlen(leaf->utf8nfdi) + 1; | ||
| 1476 | return size; | ||
| 1477 | } | ||
| 1478 | |||
| 1479 | static int nfdicf_size(void *l) | ||
| 1480 | { | ||
| 1481 | struct unicode_data *leaf = l; | ||
| 1482 | int size = 2; | ||
| 1483 | |||
| 1484 | if (HANGUL_SYLLABLE(leaf->code)) | ||
| 1485 | size += 1; | ||
| 1486 | else if (leaf->utf8nfdicf) | ||
| 1487 | size += strlen(leaf->utf8nfdicf) + 1; | ||
| 1488 | else if (leaf->utf8nfdi) | ||
| 1489 | size += strlen(leaf->utf8nfdi) + 1; | ||
| 1490 | return size; | ||
| 1491 | } | ||
| 1492 | |||
| 1493 | static int *nfdi_index(struct tree *tree, void *l) | ||
| 1494 | { | ||
| 1495 | struct unicode_data *leaf = l; | ||
| 1496 | |||
| 1497 | return &tree->leafindex[leaf->code]; | ||
| 1498 | } | ||
| 1499 | |||
| 1500 | static int *nfdicf_index(struct tree *tree, void *l) | ||
| 1501 | { | ||
| 1502 | struct unicode_data *leaf = l; | ||
| 1503 | |||
| 1504 | return &tree->leafindex[leaf->code]; | ||
| 1505 | } | ||
| 1506 | |||
| 1507 | static unsigned char *nfdi_emit(void *l, unsigned char *data) | ||
| 1508 | { | ||
| 1509 | struct unicode_data *leaf = l; | ||
| 1510 | unsigned char *s; | ||
| 1511 | |||
| 1512 | *data++ = leaf->gen; | ||
| 1513 | |||
| 1514 | if (HANGUL_SYLLABLE(leaf->code)) { | ||
| 1515 | *data++ = DECOMPOSE; | ||
| 1516 | *data++ = HANGUL; | ||
| 1517 | } else if (leaf->utf8nfdi) { | ||
| 1518 | *data++ = DECOMPOSE; | ||
| 1519 | s = (unsigned char*)leaf->utf8nfdi; | ||
| 1520 | while ((*data++ = *s++) != 0) | ||
| 1521 | ; | ||
| 1522 | } else { | ||
| 1523 | *data++ = leaf->ccc; | ||
| 1524 | } | ||
| 1525 | return data; | ||
| 1526 | } | ||
| 1527 | |||
| 1528 | static unsigned char *nfdicf_emit(void *l, unsigned char *data) | ||
| 1529 | { | ||
| 1530 | struct unicode_data *leaf = l; | ||
| 1531 | unsigned char *s; | ||
| 1532 | |||
| 1533 | *data++ = leaf->gen; | ||
| 1534 | |||
| 1535 | if (HANGUL_SYLLABLE(leaf->code)) { | ||
| 1536 | *data++ = DECOMPOSE; | ||
| 1537 | *data++ = HANGUL; | ||
| 1538 | } else if (leaf->utf8nfdicf) { | ||
| 1539 | *data++ = DECOMPOSE; | ||
| 1540 | s = (unsigned char*)leaf->utf8nfdicf; | ||
| 1541 | while ((*data++ = *s++) != 0) | ||
| 1542 | ; | ||
| 1543 | } else if (leaf->utf8nfdi) { | ||
| 1544 | *data++ = DECOMPOSE; | ||
| 1545 | s = (unsigned char*)leaf->utf8nfdi; | ||
| 1546 | while ((*data++ = *s++) != 0) | ||
| 1547 | ; | ||
| 1548 | } else { | ||
| 1549 | *data++ = leaf->ccc; | ||
| 1550 | } | ||
| 1551 | return data; | ||
| 1552 | } | ||
| 1553 | |||
| 1554 | static void utf8_create(struct unicode_data *data) | ||
| 1555 | { | ||
| 1556 | char utf[18*4+1]; | ||
| 1557 | char *u; | ||
| 1558 | unsigned int *um; | ||
| 1559 | int i; | ||
| 1560 | |||
| 1561 | if (data->utf8nfdi) { | ||
| 1562 | assert(data->utf8nfdi[0] == HANGUL); | ||
| 1563 | return; | ||
| 1564 | } | ||
| 1565 | |||
| 1566 | u = utf; | ||
| 1567 | um = data->utf32nfdi; | ||
| 1568 | if (um) { | ||
| 1569 | for (i = 0; um[i]; i++) | ||
| 1570 | u += utf8encode(u, um[i]); | ||
| 1571 | *u = '\0'; | ||
| 1572 | data->utf8nfdi = strdup(utf); | ||
| 1573 | } | ||
| 1574 | u = utf; | ||
| 1575 | um = data->utf32nfdicf; | ||
| 1576 | if (um) { | ||
| 1577 | for (i = 0; um[i]; i++) | ||
| 1578 | u += utf8encode(u, um[i]); | ||
| 1579 | *u = '\0'; | ||
| 1580 | if (!data->utf8nfdi || strcmp(data->utf8nfdi, utf)) | ||
| 1581 | data->utf8nfdicf = strdup(utf); | ||
| 1582 | } | ||
| 1583 | } | ||
| 1584 | |||
| 1585 | static void utf8_init(void) | ||
| 1586 | { | ||
| 1587 | unsigned int unichar; | ||
| 1588 | int i; | ||
| 1589 | |||
| 1590 | for (unichar = 0; unichar != 0x110000; unichar++) | ||
| 1591 | utf8_create(&unicode_data[unichar]); | ||
| 1592 | |||
| 1593 | for (i = 0; i != corrections_count; i++) | ||
| 1594 | utf8_create(&corrections[i]); | ||
| 1595 | } | ||
| 1596 | |||
| 1597 | static void trees_init(void) | ||
| 1598 | { | ||
| 1599 | struct unicode_data *data; | ||
| 1600 | unsigned int maxage; | ||
| 1601 | unsigned int nextage; | ||
| 1602 | int count; | ||
| 1603 | int i; | ||
| 1604 | int j; | ||
| 1605 | |||
| 1606 | /* Count the number of different ages. */ | ||
| 1607 | count = 0; | ||
| 1608 | nextage = (unsigned int)-1; | ||
| 1609 | do { | ||
| 1610 | maxage = nextage; | ||
| 1611 | nextage = 0; | ||
| 1612 | for (i = 0; i <= corrections_count; i++) { | ||
| 1613 | data = &corrections[i]; | ||
| 1614 | if (nextage < data->correction && | ||
| 1615 | data->correction < maxage) | ||
| 1616 | nextage = data->correction; | ||
| 1617 | } | ||
| 1618 | count++; | ||
| 1619 | } while (nextage); | ||
| 1620 | |||
| 1621 | /* Two trees per age: nfdi and nfdicf */ | ||
| 1622 | trees_count = count * 2; | ||
| 1623 | trees = calloc(trees_count, sizeof(struct tree)); | ||
| 1624 | |||
| 1625 | /* Assign ages to the trees. */ | ||
| 1626 | count = trees_count; | ||
| 1627 | nextage = (unsigned int)-1; | ||
| 1628 | do { | ||
| 1629 | maxage = nextage; | ||
| 1630 | trees[--count].maxage = maxage; | ||
| 1631 | trees[--count].maxage = maxage; | ||
| 1632 | nextage = 0; | ||
| 1633 | for (i = 0; i <= corrections_count; i++) { | ||
| 1634 | data = &corrections[i]; | ||
| 1635 | if (nextage < data->correction && | ||
| 1636 | data->correction < maxage) | ||
| 1637 | nextage = data->correction; | ||
| 1638 | } | ||
| 1639 | } while (nextage); | ||
| 1640 | |||
| 1641 | /* The ages assigned above are off by one. */ | ||
| 1642 | for (i = 0; i != trees_count; i++) { | ||
| 1643 | j = 0; | ||
| 1644 | while (ages[j] < trees[i].maxage) | ||
| 1645 | j++; | ||
| 1646 | trees[i].maxage = ages[j-1]; | ||
| 1647 | } | ||
| 1648 | |||
| 1649 | /* Set up the forwarding between trees. */ | ||
| 1650 | trees[trees_count-2].next = &trees[trees_count-1]; | ||
| 1651 | trees[trees_count-1].leaf_mark = nfdi_mark; | ||
| 1652 | trees[trees_count-2].leaf_mark = nfdicf_mark; | ||
| 1653 | for (i = 0; i != trees_count-2; i += 2) { | ||
| 1654 | trees[i].next = &trees[trees_count-2]; | ||
| 1655 | trees[i].leaf_mark = correction_mark; | ||
| 1656 | trees[i+1].next = &trees[trees_count-1]; | ||
| 1657 | trees[i+1].leaf_mark = correction_mark; | ||
| 1658 | } | ||
| 1659 | |||
| 1660 | /* Assign the callouts. */ | ||
| 1661 | for (i = 0; i != trees_count; i += 2) { | ||
| 1662 | trees[i].type = "nfdicf"; | ||
| 1663 | trees[i].leaf_equal = nfdicf_equal; | ||
| 1664 | trees[i].leaf_print = nfdicf_print; | ||
| 1665 | trees[i].leaf_size = nfdicf_size; | ||
| 1666 | trees[i].leaf_index = nfdicf_index; | ||
| 1667 | trees[i].leaf_emit = nfdicf_emit; | ||
| 1668 | |||
| 1669 | trees[i+1].type = "nfdi"; | ||
| 1670 | trees[i+1].leaf_equal = nfdi_equal; | ||
| 1671 | trees[i+1].leaf_print = nfdi_print; | ||
| 1672 | trees[i+1].leaf_size = nfdi_size; | ||
| 1673 | trees[i+1].leaf_index = nfdi_index; | ||
| 1674 | trees[i+1].leaf_emit = nfdi_emit; | ||
| 1675 | } | ||
| 1676 | |||
| 1677 | /* Finish init. */ | ||
| 1678 | for (i = 0; i != trees_count; i++) | ||
| 1679 | trees[i].childnode = NODE; | ||
| 1680 | } | ||
| 1681 | |||
| 1682 | static void trees_populate(void) | ||
| 1683 | { | ||
| 1684 | struct unicode_data *data; | ||
| 1685 | unsigned int unichar; | ||
| 1686 | char keyval[4]; | ||
| 1687 | int keylen; | ||
| 1688 | int i; | ||
| 1689 | |||
| 1690 | for (i = 0; i != trees_count; i++) { | ||
| 1691 | if (verbose > 0) { | ||
| 1692 | printf("Populating %s_%x\n", | ||
| 1693 | trees[i].type, trees[i].maxage); | ||
| 1694 | } | ||
| 1695 | for (unichar = 0; unichar != 0x110000; unichar++) { | ||
| 1696 | if (unicode_data[unichar].gen < 0) | ||
| 1697 | continue; | ||
| 1698 | keylen = utf8encode(keyval, unichar); | ||
| 1699 | data = corrections_lookup(&unicode_data[unichar]); | ||
| 1700 | if (data->correction <= trees[i].maxage) | ||
| 1701 | data = &unicode_data[unichar]; | ||
| 1702 | insert(&trees[i], keyval, keylen, data); | ||
| 1703 | } | ||
| 1704 | } | ||
| 1705 | } | ||
| 1706 | |||
| 1707 | static void trees_reduce(void) | ||
| 1708 | { | ||
| 1709 | int i; | ||
| 1710 | int size; | ||
| 1711 | int changed; | ||
| 1712 | |||
| 1713 | for (i = 0; i != trees_count; i++) | ||
| 1714 | prune(&trees[i]); | ||
| 1715 | for (i = 0; i != trees_count; i++) | ||
| 1716 | mark_nodes(&trees[i]); | ||
| 1717 | do { | ||
| 1718 | size = 0; | ||
| 1719 | for (i = 0; i != trees_count; i++) | ||
| 1720 | size = index_nodes(&trees[i], size); | ||
| 1721 | changed = 0; | ||
| 1722 | for (i = 0; i != trees_count; i++) | ||
| 1723 | changed += size_nodes(&trees[i]); | ||
| 1724 | } while (changed); | ||
| 1725 | |||
| 1726 | utf8data = calloc(size, 1); | ||
| 1727 | utf8data_size = size; | ||
| 1728 | for (i = 0; i != trees_count; i++) | ||
| 1729 | emit(&trees[i], utf8data); | ||
| 1730 | |||
| 1731 | if (verbose > 0) { | ||
| 1732 | for (i = 0; i != trees_count; i++) { | ||
| 1733 | printf("%s_%x idx %d\n", | ||
| 1734 | trees[i].type, trees[i].maxage, trees[i].index); | ||
| 1735 | } | ||
| 1736 | } | ||
| 1737 | |||
| 1738 | nfdi = utf8data + trees[trees_count-1].index; | ||
| 1739 | nfdicf = utf8data + trees[trees_count-2].index; | ||
| 1740 | |||
| 1741 | nfdi_tree = &trees[trees_count-1]; | ||
| 1742 | nfdicf_tree = &trees[trees_count-2]; | ||
| 1743 | } | ||
| 1744 | |||
| 1745 | static void verify(struct tree *tree) | ||
| 1746 | { | ||
| 1747 | struct unicode_data *data; | ||
| 1748 | utf8leaf_t *leaf; | ||
| 1749 | unsigned int unichar; | ||
| 1750 | char key[4]; | ||
| 1751 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 1752 | int report; | ||
| 1753 | int nocf; | ||
| 1754 | |||
| 1755 | if (verbose > 0) | ||
| 1756 | printf("Verifying %s_%x\n", tree->type, tree->maxage); | ||
| 1757 | nocf = strcmp(tree->type, "nfdicf"); | ||
| 1758 | |||
| 1759 | for (unichar = 0; unichar != 0x110000; unichar++) { | ||
| 1760 | report = 0; | ||
| 1761 | data = corrections_lookup(&unicode_data[unichar]); | ||
| 1762 | if (data->correction <= tree->maxage) | ||
| 1763 | data = &unicode_data[unichar]; | ||
| 1764 | utf8encode(key,unichar); | ||
| 1765 | leaf = utf8lookup(tree, hangul, key); | ||
| 1766 | |||
| 1767 | if (!leaf) { | ||
| 1768 | if (data->gen != -1) | ||
| 1769 | report++; | ||
| 1770 | if (unichar < 0xd800 || unichar > 0xdfff) | ||
| 1771 | report++; | ||
| 1772 | } else { | ||
| 1773 | if (unichar >= 0xd800 && unichar <= 0xdfff) | ||
| 1774 | report++; | ||
| 1775 | if (data->gen == -1) | ||
| 1776 | report++; | ||
| 1777 | if (data->gen != LEAF_GEN(leaf)) | ||
| 1778 | report++; | ||
| 1779 | if (LEAF_CCC(leaf) == DECOMPOSE) { | ||
| 1780 | if (HANGUL_SYLLABLE(data->code)) { | ||
| 1781 | if (data->utf8nfdi[0] != HANGUL) | ||
| 1782 | report++; | ||
| 1783 | } else if (nocf) { | ||
| 1784 | if (!data->utf8nfdi) { | ||
| 1785 | report++; | ||
| 1786 | } else if (strcmp(data->utf8nfdi, | ||
| 1787 | LEAF_STR(leaf))) { | ||
| 1788 | report++; | ||
| 1789 | } | ||
| 1790 | } else { | ||
| 1791 | if (!data->utf8nfdicf && | ||
| 1792 | !data->utf8nfdi) { | ||
| 1793 | report++; | ||
| 1794 | } else if (data->utf8nfdicf) { | ||
| 1795 | if (strcmp(data->utf8nfdicf, | ||
| 1796 | LEAF_STR(leaf))) | ||
| 1797 | report++; | ||
| 1798 | } else if (strcmp(data->utf8nfdi, | ||
| 1799 | LEAF_STR(leaf))) { | ||
| 1800 | report++; | ||
| 1801 | } | ||
| 1802 | } | ||
| 1803 | } else if (data->ccc != LEAF_CCC(leaf)) { | ||
| 1804 | report++; | ||
| 1805 | } | ||
| 1806 | } | ||
| 1807 | if (report) { | ||
| 1808 | printf("%X code %X gen %d ccc %d" | ||
| 1809 | " nfdi -> \"%s\"", | ||
| 1810 | unichar, data->code, data->gen, | ||
| 1811 | data->ccc, | ||
| 1812 | data->utf8nfdi); | ||
| 1813 | if (leaf) { | ||
| 1814 | printf(" gen %d ccc %d" | ||
| 1815 | " nfdi -> \"%s\"", | ||
| 1816 | LEAF_GEN(leaf), | ||
| 1817 | LEAF_CCC(leaf), | ||
| 1818 | LEAF_CCC(leaf) == DECOMPOSE ? | ||
| 1819 | LEAF_STR(leaf) : ""); | ||
| 1820 | } | ||
| 1821 | printf("\n"); | ||
| 1822 | } | ||
| 1823 | } | ||
| 1824 | } | ||
| 1825 | |||
| 1826 | static void trees_verify(void) | ||
| 1827 | { | ||
| 1828 | int i; | ||
| 1829 | |||
| 1830 | for (i = 0; i != trees_count; i++) | ||
| 1831 | verify(&trees[i]); | ||
| 1832 | } | ||
| 1833 | |||
| 1834 | /* ------------------------------------------------------------------ */ | ||
| 1835 | |||
| 1836 | static void help(void) | ||
| 1837 | { | ||
| 1838 | printf("Usage: %s [options]\n", argv0); | ||
| 1839 | printf("\n"); | ||
| 1840 | printf("This program creates an a data trie used for parsing and\n"); | ||
| 1841 | printf("normalization of UTF-8 strings. The trie is derived from\n"); | ||
| 1842 | printf("a set of input files from the Unicode character database\n"); | ||
| 1843 | printf("found at: http://www.unicode.org/Public/UCD/latest/ucd/\n"); | ||
| 1844 | printf("\n"); | ||
| 1845 | printf("The generated tree supports two normalization forms:\n"); | ||
| 1846 | printf("\n"); | ||
| 1847 | printf("\tnfdi:\n"); | ||
| 1848 | printf("\t- Apply unicode normalization form NFD.\n"); | ||
| 1849 | printf("\t- Remove any Default_Ignorable_Code_Point.\n"); | ||
| 1850 | printf("\n"); | ||
| 1851 | printf("\tnfdicf:\n"); | ||
| 1852 | printf("\t- Apply unicode normalization form NFD.\n"); | ||
| 1853 | printf("\t- Remove any Default_Ignorable_Code_Point.\n"); | ||
| 1854 | printf("\t- Apply a full casefold (C + F).\n"); | ||
| 1855 | printf("\n"); | ||
| 1856 | printf("These forms were chosen as being most useful when dealing\n"); | ||
| 1857 | printf("with file names: NFD catches most cases where characters\n"); | ||
| 1858 | printf("should be considered equivalent. The ignorables are mostly\n"); | ||
| 1859 | printf("invisible, making names hard to type.\n"); | ||
| 1860 | printf("\n"); | ||
| 1861 | printf("The options to specify the files to be used are listed\n"); | ||
| 1862 | printf("below with their default values, which are the names used\n"); | ||
| 1863 | printf("by version 11.0.0 of the Unicode Character Database.\n"); | ||
| 1864 | printf("\n"); | ||
| 1865 | printf("The input files:\n"); | ||
| 1866 | printf("\t-a %s\n", AGE_NAME); | ||
| 1867 | printf("\t-c %s\n", CCC_NAME); | ||
| 1868 | printf("\t-p %s\n", PROP_NAME); | ||
| 1869 | printf("\t-d %s\n", DATA_NAME); | ||
| 1870 | printf("\t-f %s\n", FOLD_NAME); | ||
| 1871 | printf("\t-n %s\n", NORM_NAME); | ||
| 1872 | printf("\n"); | ||
| 1873 | printf("Additionally, the generated tables are tested using:\n"); | ||
| 1874 | printf("\t-t %s\n", TEST_NAME); | ||
| 1875 | printf("\n"); | ||
| 1876 | printf("Finally, the output file:\n"); | ||
| 1877 | printf("\t-o %s\n", UTF8_NAME); | ||
| 1878 | printf("\n"); | ||
| 1879 | } | ||
| 1880 | |||
| 1881 | static void usage(void) | ||
| 1882 | { | ||
| 1883 | help(); | ||
| 1884 | exit(1); | ||
| 1885 | } | ||
| 1886 | |||
| 1887 | static void open_fail(const char *name, int error) | ||
| 1888 | { | ||
| 1889 | printf("Error %d opening %s: %s\n", error, name, strerror(error)); | ||
| 1890 | exit(1); | ||
| 1891 | } | ||
| 1892 | |||
| 1893 | static void file_fail(const char *filename) | ||
| 1894 | { | ||
| 1895 | printf("Error parsing %s\n", filename); | ||
| 1896 | exit(1); | ||
| 1897 | } | ||
| 1898 | |||
| 1899 | static void line_fail(const char *filename, const char *line) | ||
| 1900 | { | ||
| 1901 | printf("Error parsing %s:%s\n", filename, line); | ||
| 1902 | exit(1); | ||
| 1903 | } | ||
| 1904 | |||
| 1905 | /* ------------------------------------------------------------------ */ | ||
| 1906 | |||
| 1907 | static void print_utf32(unsigned int *utf32str) | ||
| 1908 | { | ||
| 1909 | int i; | ||
| 1910 | |||
| 1911 | for (i = 0; utf32str[i]; i++) | ||
| 1912 | printf(" %X", utf32str[i]); | ||
| 1913 | } | ||
| 1914 | |||
| 1915 | static void print_utf32nfdi(unsigned int unichar) | ||
| 1916 | { | ||
| 1917 | printf(" %X ->", unichar); | ||
| 1918 | print_utf32(unicode_data[unichar].utf32nfdi); | ||
| 1919 | printf("\n"); | ||
| 1920 | } | ||
| 1921 | |||
| 1922 | static void print_utf32nfdicf(unsigned int unichar) | ||
| 1923 | { | ||
| 1924 | printf(" %X ->", unichar); | ||
| 1925 | print_utf32(unicode_data[unichar].utf32nfdicf); | ||
| 1926 | printf("\n"); | ||
| 1927 | } | ||
| 1928 | |||
| 1929 | /* ------------------------------------------------------------------ */ | ||
| 1930 | |||
| 1931 | static void age_init(void) | ||
| 1932 | { | ||
| 1933 | FILE *file; | ||
| 1934 | unsigned int first; | ||
| 1935 | unsigned int last; | ||
| 1936 | unsigned int unichar; | ||
| 1937 | unsigned int major; | ||
| 1938 | unsigned int minor; | ||
| 1939 | unsigned int revision; | ||
| 1940 | int gen; | ||
| 1941 | int count; | ||
| 1942 | int ret; | ||
| 1943 | |||
| 1944 | if (verbose > 0) | ||
| 1945 | printf("Parsing %s\n", age_name); | ||
| 1946 | |||
| 1947 | file = fopen(age_name, "r"); | ||
| 1948 | if (!file) | ||
| 1949 | open_fail(age_name, errno); | ||
| 1950 | count = 0; | ||
| 1951 | |||
| 1952 | gen = 0; | ||
| 1953 | while (fgets(line, LINESIZE, file)) { | ||
| 1954 | ret = sscanf(line, "# Age=V%d_%d_%d", | ||
| 1955 | &major, &minor, &revision); | ||
| 1956 | if (ret == 3) { | ||
| 1957 | ages_count++; | ||
| 1958 | if (verbose > 1) | ||
| 1959 | printf(" Age V%d_%d_%d\n", | ||
| 1960 | major, minor, revision); | ||
| 1961 | if (!age_valid(major, minor, revision)) | ||
| 1962 | line_fail(age_name, line); | ||
| 1963 | continue; | ||
| 1964 | } | ||
| 1965 | ret = sscanf(line, "# Age=V%d_%d", &major, &minor); | ||
| 1966 | if (ret == 2) { | ||
| 1967 | ages_count++; | ||
| 1968 | if (verbose > 1) | ||
| 1969 | printf(" Age V%d_%d\n", major, minor); | ||
| 1970 | if (!age_valid(major, minor, 0)) | ||
| 1971 | line_fail(age_name, line); | ||
| 1972 | continue; | ||
| 1973 | } | ||
| 1974 | } | ||
| 1975 | |||
| 1976 | /* We must have found something above. */ | ||
| 1977 | if (verbose > 1) | ||
| 1978 | printf("%d age entries\n", ages_count); | ||
| 1979 | if (ages_count == 0 || ages_count > MAXGEN) | ||
| 1980 | file_fail(age_name); | ||
| 1981 | |||
| 1982 | /* There is a 0 entry. */ | ||
| 1983 | ages_count++; | ||
| 1984 | ages = calloc(ages_count + 1, sizeof(*ages)); | ||
| 1985 | /* And a guard entry. */ | ||
| 1986 | ages[ages_count] = (unsigned int)-1; | ||
| 1987 | |||
| 1988 | rewind(file); | ||
| 1989 | count = 0; | ||
| 1990 | gen = 0; | ||
| 1991 | while (fgets(line, LINESIZE, file)) { | ||
| 1992 | ret = sscanf(line, "# Age=V%d_%d_%d", | ||
| 1993 | &major, &minor, &revision); | ||
| 1994 | if (ret == 3) { | ||
| 1995 | ages[++gen] = | ||
| 1996 | UNICODE_AGE(major, minor, revision); | ||
| 1997 | if (verbose > 1) | ||
| 1998 | printf(" Age V%d_%d_%d = gen %d\n", | ||
| 1999 | major, minor, revision, gen); | ||
| 2000 | if (!age_valid(major, minor, revision)) | ||
| 2001 | line_fail(age_name, line); | ||
| 2002 | continue; | ||
| 2003 | } | ||
| 2004 | ret = sscanf(line, "# Age=V%d_%d", &major, &minor); | ||
| 2005 | if (ret == 2) { | ||
| 2006 | ages[++gen] = UNICODE_AGE(major, minor, 0); | ||
| 2007 | if (verbose > 1) | ||
| 2008 | printf(" Age V%d_%d = %d\n", | ||
| 2009 | major, minor, gen); | ||
| 2010 | if (!age_valid(major, minor, 0)) | ||
| 2011 | line_fail(age_name, line); | ||
| 2012 | continue; | ||
| 2013 | } | ||
| 2014 | ret = sscanf(line, "%X..%X ; %d.%d #", | ||
| 2015 | &first, &last, &major, &minor); | ||
| 2016 | if (ret == 4) { | ||
| 2017 | for (unichar = first; unichar <= last; unichar++) | ||
| 2018 | unicode_data[unichar].gen = gen; | ||
| 2019 | count += 1 + last - first; | ||
| 2020 | if (verbose > 1) | ||
| 2021 | printf(" %X..%X gen %d\n", first, last, gen); | ||
| 2022 | if (!utf32valid(first) || !utf32valid(last)) | ||
| 2023 | line_fail(age_name, line); | ||
| 2024 | continue; | ||
| 2025 | } | ||
| 2026 | ret = sscanf(line, "%X ; %d.%d #", &unichar, &major, &minor); | ||
| 2027 | if (ret == 3) { | ||
| 2028 | unicode_data[unichar].gen = gen; | ||
| 2029 | count++; | ||
| 2030 | if (verbose > 1) | ||
| 2031 | printf(" %X gen %d\n", unichar, gen); | ||
| 2032 | if (!utf32valid(unichar)) | ||
| 2033 | line_fail(age_name, line); | ||
| 2034 | continue; | ||
| 2035 | } | ||
| 2036 | } | ||
| 2037 | unicode_maxage = ages[gen]; | ||
| 2038 | fclose(file); | ||
| 2039 | |||
| 2040 | /* Nix surrogate block */ | ||
| 2041 | if (verbose > 1) | ||
| 2042 | printf(" Removing surrogate block D800..DFFF\n"); | ||
| 2043 | for (unichar = 0xd800; unichar <= 0xdfff; unichar++) | ||
| 2044 | unicode_data[unichar].gen = -1; | ||
| 2045 | |||
| 2046 | if (verbose > 0) | ||
| 2047 | printf("Found %d entries\n", count); | ||
| 2048 | if (count == 0) | ||
| 2049 | file_fail(age_name); | ||
| 2050 | } | ||
| 2051 | |||
| 2052 | static void ccc_init(void) | ||
| 2053 | { | ||
| 2054 | FILE *file; | ||
| 2055 | unsigned int first; | ||
| 2056 | unsigned int last; | ||
| 2057 | unsigned int unichar; | ||
| 2058 | unsigned int value; | ||
| 2059 | int count; | ||
| 2060 | int ret; | ||
| 2061 | |||
| 2062 | if (verbose > 0) | ||
| 2063 | printf("Parsing %s\n", ccc_name); | ||
| 2064 | |||
| 2065 | file = fopen(ccc_name, "r"); | ||
| 2066 | if (!file) | ||
| 2067 | open_fail(ccc_name, errno); | ||
| 2068 | |||
| 2069 | count = 0; | ||
| 2070 | while (fgets(line, LINESIZE, file)) { | ||
| 2071 | ret = sscanf(line, "%X..%X ; %d #", &first, &last, &value); | ||
| 2072 | if (ret == 3) { | ||
| 2073 | for (unichar = first; unichar <= last; unichar++) { | ||
| 2074 | unicode_data[unichar].ccc = value; | ||
| 2075 | count++; | ||
| 2076 | } | ||
| 2077 | if (verbose > 1) | ||
| 2078 | printf(" %X..%X ccc %d\n", first, last, value); | ||
| 2079 | if (!utf32valid(first) || !utf32valid(last)) | ||
| 2080 | line_fail(ccc_name, line); | ||
| 2081 | continue; | ||
| 2082 | } | ||
| 2083 | ret = sscanf(line, "%X ; %d #", &unichar, &value); | ||
| 2084 | if (ret == 2) { | ||
| 2085 | unicode_data[unichar].ccc = value; | ||
| 2086 | count++; | ||
| 2087 | if (verbose > 1) | ||
| 2088 | printf(" %X ccc %d\n", unichar, value); | ||
| 2089 | if (!utf32valid(unichar)) | ||
| 2090 | line_fail(ccc_name, line); | ||
| 2091 | continue; | ||
| 2092 | } | ||
| 2093 | } | ||
| 2094 | fclose(file); | ||
| 2095 | |||
| 2096 | if (verbose > 0) | ||
| 2097 | printf("Found %d entries\n", count); | ||
| 2098 | if (count == 0) | ||
| 2099 | file_fail(ccc_name); | ||
| 2100 | } | ||
| 2101 | |||
| 2102 | static int ignore_compatibility_form(char *type) | ||
| 2103 | { | ||
| 2104 | int i; | ||
| 2105 | char *ignored_types[] = {"font", "noBreak", "initial", "medial", | ||
| 2106 | "final", "isolated", "circle", "super", | ||
| 2107 | "sub", "vertical", "wide", "narrow", | ||
| 2108 | "small", "square", "fraction", "compat"}; | ||
| 2109 | |||
| 2110 | for (i = 0 ; i < ARRAY_SIZE(ignored_types); i++) | ||
| 2111 | if (strcmp(type, ignored_types[i]) == 0) | ||
| 2112 | return 1; | ||
| 2113 | return 0; | ||
| 2114 | } | ||
| 2115 | |||
| 2116 | static void nfdi_init(void) | ||
| 2117 | { | ||
| 2118 | FILE *file; | ||
| 2119 | unsigned int unichar; | ||
| 2120 | unsigned int mapping[19]; /* Magic - guaranteed not to be exceeded. */ | ||
| 2121 | char *s; | ||
| 2122 | char *type; | ||
| 2123 | unsigned int *um; | ||
| 2124 | int count; | ||
| 2125 | int i; | ||
| 2126 | int ret; | ||
| 2127 | |||
| 2128 | if (verbose > 0) | ||
| 2129 | printf("Parsing %s\n", data_name); | ||
| 2130 | file = fopen(data_name, "r"); | ||
| 2131 | if (!file) | ||
| 2132 | open_fail(data_name, errno); | ||
| 2133 | |||
| 2134 | count = 0; | ||
| 2135 | while (fgets(line, LINESIZE, file)) { | ||
| 2136 | ret = sscanf(line, "%X;%*[^;];%*[^;];%*[^;];%*[^;];%[^;];", | ||
| 2137 | &unichar, buf0); | ||
| 2138 | if (ret != 2) | ||
| 2139 | continue; | ||
| 2140 | if (!utf32valid(unichar)) | ||
| 2141 | line_fail(data_name, line); | ||
| 2142 | |||
| 2143 | s = buf0; | ||
| 2144 | /* skip over <tag> */ | ||
| 2145 | if (*s == '<') { | ||
| 2146 | type = ++s; | ||
| 2147 | while (*++s != '>'); | ||
| 2148 | *s++ = '\0'; | ||
| 2149 | if(ignore_compatibility_form(type)) | ||
| 2150 | continue; | ||
| 2151 | } | ||
| 2152 | /* decode the decomposition into UTF-32 */ | ||
| 2153 | i = 0; | ||
| 2154 | while (*s) { | ||
| 2155 | mapping[i] = strtoul(s, &s, 16); | ||
| 2156 | if (!utf32valid(mapping[i])) | ||
| 2157 | line_fail(data_name, line); | ||
| 2158 | i++; | ||
| 2159 | } | ||
| 2160 | mapping[i++] = 0; | ||
| 2161 | |||
| 2162 | um = malloc(i * sizeof(unsigned int)); | ||
| 2163 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2164 | unicode_data[unichar].utf32nfdi = um; | ||
| 2165 | |||
| 2166 | if (verbose > 1) | ||
| 2167 | print_utf32nfdi(unichar); | ||
| 2168 | count++; | ||
| 2169 | } | ||
| 2170 | fclose(file); | ||
| 2171 | if (verbose > 0) | ||
| 2172 | printf("Found %d entries\n", count); | ||
| 2173 | if (count == 0) | ||
| 2174 | file_fail(data_name); | ||
| 2175 | } | ||
| 2176 | |||
| 2177 | static void nfdicf_init(void) | ||
| 2178 | { | ||
| 2179 | FILE *file; | ||
| 2180 | unsigned int unichar; | ||
| 2181 | unsigned int mapping[19]; /* Magic - guaranteed not to be exceeded. */ | ||
| 2182 | char status; | ||
| 2183 | char *s; | ||
| 2184 | unsigned int *um; | ||
| 2185 | int i; | ||
| 2186 | int count; | ||
| 2187 | int ret; | ||
| 2188 | |||
| 2189 | if (verbose > 0) | ||
| 2190 | printf("Parsing %s\n", fold_name); | ||
| 2191 | file = fopen(fold_name, "r"); | ||
| 2192 | if (!file) | ||
| 2193 | open_fail(fold_name, errno); | ||
| 2194 | |||
| 2195 | count = 0; | ||
| 2196 | while (fgets(line, LINESIZE, file)) { | ||
| 2197 | ret = sscanf(line, "%X; %c; %[^;];", &unichar, &status, buf0); | ||
| 2198 | if (ret != 3) | ||
| 2199 | continue; | ||
| 2200 | if (!utf32valid(unichar)) | ||
| 2201 | line_fail(fold_name, line); | ||
| 2202 | /* Use the C+F casefold. */ | ||
| 2203 | if (status != 'C' && status != 'F') | ||
| 2204 | continue; | ||
| 2205 | s = buf0; | ||
| 2206 | if (*s == '<') | ||
| 2207 | while (*s++ != ' ') | ||
| 2208 | ; | ||
| 2209 | i = 0; | ||
| 2210 | while (*s) { | ||
| 2211 | mapping[i] = strtoul(s, &s, 16); | ||
| 2212 | if (!utf32valid(mapping[i])) | ||
| 2213 | line_fail(fold_name, line); | ||
| 2214 | i++; | ||
| 2215 | } | ||
| 2216 | mapping[i++] = 0; | ||
| 2217 | |||
| 2218 | um = malloc(i * sizeof(unsigned int)); | ||
| 2219 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2220 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2221 | |||
| 2222 | if (verbose > 1) | ||
| 2223 | print_utf32nfdicf(unichar); | ||
| 2224 | count++; | ||
| 2225 | } | ||
| 2226 | fclose(file); | ||
| 2227 | if (verbose > 0) | ||
| 2228 | printf("Found %d entries\n", count); | ||
| 2229 | if (count == 0) | ||
| 2230 | file_fail(fold_name); | ||
| 2231 | } | ||
| 2232 | |||
| 2233 | static void ignore_init(void) | ||
| 2234 | { | ||
| 2235 | FILE *file; | ||
| 2236 | unsigned int unichar; | ||
| 2237 | unsigned int first; | ||
| 2238 | unsigned int last; | ||
| 2239 | unsigned int *um; | ||
| 2240 | int count; | ||
| 2241 | int ret; | ||
| 2242 | |||
| 2243 | if (verbose > 0) | ||
| 2244 | printf("Parsing %s\n", prop_name); | ||
| 2245 | file = fopen(prop_name, "r"); | ||
| 2246 | if (!file) | ||
| 2247 | open_fail(prop_name, errno); | ||
| 2248 | assert(file); | ||
| 2249 | count = 0; | ||
| 2250 | while (fgets(line, LINESIZE, file)) { | ||
| 2251 | ret = sscanf(line, "%X..%X ; %s # ", &first, &last, buf0); | ||
| 2252 | if (ret == 3) { | ||
| 2253 | if (strcmp(buf0, "Default_Ignorable_Code_Point")) | ||
| 2254 | continue; | ||
| 2255 | if (!utf32valid(first) || !utf32valid(last)) | ||
| 2256 | line_fail(prop_name, line); | ||
| 2257 | for (unichar = first; unichar <= last; unichar++) { | ||
| 2258 | free(unicode_data[unichar].utf32nfdi); | ||
| 2259 | um = malloc(sizeof(unsigned int)); | ||
| 2260 | *um = 0; | ||
| 2261 | unicode_data[unichar].utf32nfdi = um; | ||
| 2262 | free(unicode_data[unichar].utf32nfdicf); | ||
| 2263 | um = malloc(sizeof(unsigned int)); | ||
| 2264 | *um = 0; | ||
| 2265 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2266 | count++; | ||
| 2267 | } | ||
| 2268 | if (verbose > 1) | ||
| 2269 | printf(" %X..%X Default_Ignorable_Code_Point\n", | ||
| 2270 | first, last); | ||
| 2271 | continue; | ||
| 2272 | } | ||
| 2273 | ret = sscanf(line, "%X ; %s # ", &unichar, buf0); | ||
| 2274 | if (ret == 2) { | ||
| 2275 | if (strcmp(buf0, "Default_Ignorable_Code_Point")) | ||
| 2276 | continue; | ||
| 2277 | if (!utf32valid(unichar)) | ||
| 2278 | line_fail(prop_name, line); | ||
| 2279 | free(unicode_data[unichar].utf32nfdi); | ||
| 2280 | um = malloc(sizeof(unsigned int)); | ||
| 2281 | *um = 0; | ||
| 2282 | unicode_data[unichar].utf32nfdi = um; | ||
| 2283 | free(unicode_data[unichar].utf32nfdicf); | ||
| 2284 | um = malloc(sizeof(unsigned int)); | ||
| 2285 | *um = 0; | ||
| 2286 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2287 | if (verbose > 1) | ||
| 2288 | printf(" %X Default_Ignorable_Code_Point\n", | ||
| 2289 | unichar); | ||
| 2290 | count++; | ||
| 2291 | continue; | ||
| 2292 | } | ||
| 2293 | } | ||
| 2294 | fclose(file); | ||
| 2295 | |||
| 2296 | if (verbose > 0) | ||
| 2297 | printf("Found %d entries\n", count); | ||
| 2298 | if (count == 0) | ||
| 2299 | file_fail(prop_name); | ||
| 2300 | } | ||
| 2301 | |||
| 2302 | static void corrections_init(void) | ||
| 2303 | { | ||
| 2304 | FILE *file; | ||
| 2305 | unsigned int unichar; | ||
| 2306 | unsigned int major; | ||
| 2307 | unsigned int minor; | ||
| 2308 | unsigned int revision; | ||
| 2309 | unsigned int age; | ||
| 2310 | unsigned int *um; | ||
| 2311 | unsigned int mapping[19]; /* Magic - guaranteed not to be exceeded. */ | ||
| 2312 | char *s; | ||
| 2313 | int i; | ||
| 2314 | int count; | ||
| 2315 | int ret; | ||
| 2316 | |||
| 2317 | if (verbose > 0) | ||
| 2318 | printf("Parsing %s\n", norm_name); | ||
| 2319 | file = fopen(norm_name, "r"); | ||
| 2320 | if (!file) | ||
| 2321 | open_fail(norm_name, errno); | ||
| 2322 | |||
| 2323 | count = 0; | ||
| 2324 | while (fgets(line, LINESIZE, file)) { | ||
| 2325 | ret = sscanf(line, "%X;%[^;];%[^;];%d.%d.%d #", | ||
| 2326 | &unichar, buf0, buf1, | ||
| 2327 | &major, &minor, &revision); | ||
| 2328 | if (ret != 6) | ||
| 2329 | continue; | ||
| 2330 | if (!utf32valid(unichar) || !age_valid(major, minor, revision)) | ||
| 2331 | line_fail(norm_name, line); | ||
| 2332 | count++; | ||
| 2333 | } | ||
| 2334 | corrections = calloc(count, sizeof(struct unicode_data)); | ||
| 2335 | corrections_count = count; | ||
| 2336 | rewind(file); | ||
| 2337 | |||
| 2338 | count = 0; | ||
| 2339 | while (fgets(line, LINESIZE, file)) { | ||
| 2340 | ret = sscanf(line, "%X;%[^;];%[^;];%d.%d.%d #", | ||
| 2341 | &unichar, buf0, buf1, | ||
| 2342 | &major, &minor, &revision); | ||
| 2343 | if (ret != 6) | ||
| 2344 | continue; | ||
| 2345 | if (!utf32valid(unichar) || !age_valid(major, minor, revision)) | ||
| 2346 | line_fail(norm_name, line); | ||
| 2347 | corrections[count] = unicode_data[unichar]; | ||
| 2348 | assert(corrections[count].code == unichar); | ||
| 2349 | age = UNICODE_AGE(major, minor, revision); | ||
| 2350 | corrections[count].correction = age; | ||
| 2351 | |||
| 2352 | i = 0; | ||
| 2353 | s = buf0; | ||
| 2354 | while (*s) { | ||
| 2355 | mapping[i] = strtoul(s, &s, 16); | ||
| 2356 | if (!utf32valid(mapping[i])) | ||
| 2357 | line_fail(norm_name, line); | ||
| 2358 | i++; | ||
| 2359 | } | ||
| 2360 | mapping[i++] = 0; | ||
| 2361 | |||
| 2362 | um = malloc(i * sizeof(unsigned int)); | ||
| 2363 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2364 | corrections[count].utf32nfdi = um; | ||
| 2365 | |||
| 2366 | if (verbose > 1) | ||
| 2367 | printf(" %X -> %s -> %s V%d_%d_%d\n", | ||
| 2368 | unichar, buf0, buf1, major, minor, revision); | ||
| 2369 | count++; | ||
| 2370 | } | ||
| 2371 | fclose(file); | ||
| 2372 | |||
| 2373 | if (verbose > 0) | ||
| 2374 | printf("Found %d entries\n", count); | ||
| 2375 | if (count == 0) | ||
| 2376 | file_fail(norm_name); | ||
| 2377 | } | ||
| 2378 | |||
| 2379 | /* ------------------------------------------------------------------ */ | ||
| 2380 | |||
| 2381 | /* | ||
| 2382 | * Hangul decomposition (algorithm from Section 3.12 of Unicode 6.3.0) | ||
| 2383 | * | ||
| 2384 | * AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;; | ||
| 2385 | * D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;; | ||
| 2386 | * | ||
| 2387 | * SBase = 0xAC00 | ||
| 2388 | * LBase = 0x1100 | ||
| 2389 | * VBase = 0x1161 | ||
| 2390 | * TBase = 0x11A7 | ||
| 2391 | * LCount = 19 | ||
| 2392 | * VCount = 21 | ||
| 2393 | * TCount = 28 | ||
| 2394 | * NCount = 588 (VCount * TCount) | ||
| 2395 | * SCount = 11172 (LCount * NCount) | ||
| 2396 | * | ||
| 2397 | * Decomposition: | ||
| 2398 | * SIndex = s - SBase | ||
| 2399 | * | ||
| 2400 | * LV (Canonical/Full) | ||
| 2401 | * LIndex = SIndex / NCount | ||
| 2402 | * VIndex = (Sindex % NCount) / TCount | ||
| 2403 | * LPart = LBase + LIndex | ||
| 2404 | * VPart = VBase + VIndex | ||
| 2405 | * | ||
| 2406 | * LVT (Canonical) | ||
| 2407 | * LVIndex = (SIndex / TCount) * TCount | ||
| 2408 | * TIndex = (Sindex % TCount) | ||
| 2409 | * LVPart = SBase + LVIndex | ||
| 2410 | * TPart = TBase + TIndex | ||
| 2411 | * | ||
| 2412 | * LVT (Full) | ||
| 2413 | * LIndex = SIndex / NCount | ||
| 2414 | * VIndex = (Sindex % NCount) / TCount | ||
| 2415 | * TIndex = (Sindex % TCount) | ||
| 2416 | * LPart = LBase + LIndex | ||
| 2417 | * VPart = VBase + VIndex | ||
| 2418 | * if (TIndex == 0) { | ||
| 2419 | * d = <LPart, VPart> | ||
| 2420 | * } else { | ||
| 2421 | * TPart = TBase + TIndex | ||
| 2422 | * d = <LPart, VPart, TPart> | ||
| 2423 | * } | ||
| 2424 | * | ||
| 2425 | */ | ||
| 2426 | |||
| 2427 | static void hangul_decompose(void) | ||
| 2428 | { | ||
| 2429 | unsigned int sb = 0xAC00; | ||
| 2430 | unsigned int lb = 0x1100; | ||
| 2431 | unsigned int vb = 0x1161; | ||
| 2432 | unsigned int tb = 0x11a7; | ||
| 2433 | /* unsigned int lc = 19; */ | ||
| 2434 | unsigned int vc = 21; | ||
| 2435 | unsigned int tc = 28; | ||
| 2436 | unsigned int nc = (vc * tc); | ||
| 2437 | /* unsigned int sc = (lc * nc); */ | ||
| 2438 | unsigned int unichar; | ||
| 2439 | unsigned int mapping[4]; | ||
| 2440 | unsigned int *um; | ||
| 2441 | int count; | ||
| 2442 | int i; | ||
| 2443 | |||
| 2444 | if (verbose > 0) | ||
| 2445 | printf("Decomposing hangul\n"); | ||
| 2446 | /* Hangul */ | ||
| 2447 | count = 0; | ||
| 2448 | for (unichar = 0xAC00; unichar <= 0xD7A3; unichar++) { | ||
| 2449 | unsigned int si = unichar - sb; | ||
| 2450 | unsigned int li = si / nc; | ||
| 2451 | unsigned int vi = (si % nc) / tc; | ||
| 2452 | unsigned int ti = si % tc; | ||
| 2453 | |||
| 2454 | i = 0; | ||
| 2455 | mapping[i++] = lb + li; | ||
| 2456 | mapping[i++] = vb + vi; | ||
| 2457 | if (ti) | ||
| 2458 | mapping[i++] = tb + ti; | ||
| 2459 | mapping[i++] = 0; | ||
| 2460 | |||
| 2461 | assert(!unicode_data[unichar].utf32nfdi); | ||
| 2462 | um = malloc(i * sizeof(unsigned int)); | ||
| 2463 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2464 | unicode_data[unichar].utf32nfdi = um; | ||
| 2465 | |||
| 2466 | assert(!unicode_data[unichar].utf32nfdicf); | ||
| 2467 | um = malloc(i * sizeof(unsigned int)); | ||
| 2468 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2469 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2470 | |||
| 2471 | /* | ||
| 2472 | * Add a cookie as a reminder that the hangul syllable | ||
| 2473 | * decompositions must not be stored in the generated | ||
| 2474 | * trie. | ||
| 2475 | */ | ||
| 2476 | unicode_data[unichar].utf8nfdi = malloc(2); | ||
| 2477 | unicode_data[unichar].utf8nfdi[0] = HANGUL; | ||
| 2478 | unicode_data[unichar].utf8nfdi[1] = '\0'; | ||
| 2479 | |||
| 2480 | if (verbose > 1) | ||
| 2481 | print_utf32nfdi(unichar); | ||
| 2482 | |||
| 2483 | count++; | ||
| 2484 | } | ||
| 2485 | if (verbose > 0) | ||
| 2486 | printf("Created %d entries\n", count); | ||
| 2487 | } | ||
| 2488 | |||
| 2489 | static void nfdi_decompose(void) | ||
| 2490 | { | ||
| 2491 | unsigned int unichar; | ||
| 2492 | unsigned int mapping[19]; /* Magic - guaranteed not to be exceeded. */ | ||
| 2493 | unsigned int *um; | ||
| 2494 | unsigned int *dc; | ||
| 2495 | int count; | ||
| 2496 | int i; | ||
| 2497 | int j; | ||
| 2498 | int ret; | ||
| 2499 | |||
| 2500 | if (verbose > 0) | ||
| 2501 | printf("Decomposing nfdi\n"); | ||
| 2502 | |||
| 2503 | count = 0; | ||
| 2504 | for (unichar = 0; unichar != 0x110000; unichar++) { | ||
| 2505 | if (!unicode_data[unichar].utf32nfdi) | ||
| 2506 | continue; | ||
| 2507 | for (;;) { | ||
| 2508 | ret = 1; | ||
| 2509 | i = 0; | ||
| 2510 | um = unicode_data[unichar].utf32nfdi; | ||
| 2511 | while (*um) { | ||
| 2512 | dc = unicode_data[*um].utf32nfdi; | ||
| 2513 | if (dc) { | ||
| 2514 | for (j = 0; dc[j]; j++) | ||
| 2515 | mapping[i++] = dc[j]; | ||
| 2516 | ret = 0; | ||
| 2517 | } else { | ||
| 2518 | mapping[i++] = *um; | ||
| 2519 | } | ||
| 2520 | um++; | ||
| 2521 | } | ||
| 2522 | mapping[i++] = 0; | ||
| 2523 | if (ret) | ||
| 2524 | break; | ||
| 2525 | free(unicode_data[unichar].utf32nfdi); | ||
| 2526 | um = malloc(i * sizeof(unsigned int)); | ||
| 2527 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2528 | unicode_data[unichar].utf32nfdi = um; | ||
| 2529 | } | ||
| 2530 | /* Add this decomposition to nfdicf if there is no entry. */ | ||
| 2531 | if (!unicode_data[unichar].utf32nfdicf) { | ||
| 2532 | um = malloc(i * sizeof(unsigned int)); | ||
| 2533 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2534 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2535 | } | ||
| 2536 | if (verbose > 1) | ||
| 2537 | print_utf32nfdi(unichar); | ||
| 2538 | count++; | ||
| 2539 | } | ||
| 2540 | if (verbose > 0) | ||
| 2541 | printf("Processed %d entries\n", count); | ||
| 2542 | } | ||
| 2543 | |||
| 2544 | static void nfdicf_decompose(void) | ||
| 2545 | { | ||
| 2546 | unsigned int unichar; | ||
| 2547 | unsigned int mapping[19]; /* Magic - guaranteed not to be exceeded. */ | ||
| 2548 | unsigned int *um; | ||
| 2549 | unsigned int *dc; | ||
| 2550 | int count; | ||
| 2551 | int i; | ||
| 2552 | int j; | ||
| 2553 | int ret; | ||
| 2554 | |||
| 2555 | if (verbose > 0) | ||
| 2556 | printf("Decomposing nfdicf\n"); | ||
| 2557 | count = 0; | ||
| 2558 | for (unichar = 0; unichar != 0x110000; unichar++) { | ||
| 2559 | if (!unicode_data[unichar].utf32nfdicf) | ||
| 2560 | continue; | ||
| 2561 | for (;;) { | ||
| 2562 | ret = 1; | ||
| 2563 | i = 0; | ||
| 2564 | um = unicode_data[unichar].utf32nfdicf; | ||
| 2565 | while (*um) { | ||
| 2566 | dc = unicode_data[*um].utf32nfdicf; | ||
| 2567 | if (dc) { | ||
| 2568 | for (j = 0; dc[j]; j++) | ||
| 2569 | mapping[i++] = dc[j]; | ||
| 2570 | ret = 0; | ||
| 2571 | } else { | ||
| 2572 | mapping[i++] = *um; | ||
| 2573 | } | ||
| 2574 | um++; | ||
| 2575 | } | ||
| 2576 | mapping[i++] = 0; | ||
| 2577 | if (ret) | ||
| 2578 | break; | ||
| 2579 | free(unicode_data[unichar].utf32nfdicf); | ||
| 2580 | um = malloc(i * sizeof(unsigned int)); | ||
| 2581 | memcpy(um, mapping, i * sizeof(unsigned int)); | ||
| 2582 | unicode_data[unichar].utf32nfdicf = um; | ||
| 2583 | } | ||
| 2584 | if (verbose > 1) | ||
| 2585 | print_utf32nfdicf(unichar); | ||
| 2586 | count++; | ||
| 2587 | } | ||
| 2588 | if (verbose > 0) | ||
| 2589 | printf("Processed %d entries\n", count); | ||
| 2590 | } | ||
| 2591 | |||
| 2592 | /* ------------------------------------------------------------------ */ | ||
| 2593 | |||
| 2594 | int utf8agemax(struct tree *, const char *); | ||
| 2595 | int utf8nagemax(struct tree *, const char *, size_t); | ||
| 2596 | int utf8agemin(struct tree *, const char *); | ||
| 2597 | int utf8nagemin(struct tree *, const char *, size_t); | ||
| 2598 | ssize_t utf8len(struct tree *, const char *); | ||
| 2599 | ssize_t utf8nlen(struct tree *, const char *, size_t); | ||
| 2600 | struct utf8cursor; | ||
| 2601 | int utf8cursor(struct utf8cursor *, struct tree *, const char *); | ||
| 2602 | int utf8ncursor(struct utf8cursor *, struct tree *, const char *, size_t); | ||
| 2603 | int utf8byte(struct utf8cursor *); | ||
| 2604 | |||
| 2605 | /* | ||
| 2606 | * Hangul decomposition (algorithm from Section 3.12 of Unicode 6.3.0) | ||
| 2607 | * | ||
| 2608 | * AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;; | ||
| 2609 | * D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;; | ||
| 2610 | * | ||
| 2611 | * SBase = 0xAC00 | ||
| 2612 | * LBase = 0x1100 | ||
| 2613 | * VBase = 0x1161 | ||
| 2614 | * TBase = 0x11A7 | ||
| 2615 | * LCount = 19 | ||
| 2616 | * VCount = 21 | ||
| 2617 | * TCount = 28 | ||
| 2618 | * NCount = 588 (VCount * TCount) | ||
| 2619 | * SCount = 11172 (LCount * NCount) | ||
| 2620 | * | ||
| 2621 | * Decomposition: | ||
| 2622 | * SIndex = s - SBase | ||
| 2623 | * | ||
| 2624 | * LV (Canonical/Full) | ||
| 2625 | * LIndex = SIndex / NCount | ||
| 2626 | * VIndex = (Sindex % NCount) / TCount | ||
| 2627 | * LPart = LBase + LIndex | ||
| 2628 | * VPart = VBase + VIndex | ||
| 2629 | * | ||
| 2630 | * LVT (Canonical) | ||
| 2631 | * LVIndex = (SIndex / TCount) * TCount | ||
| 2632 | * TIndex = (Sindex % TCount) | ||
| 2633 | * LVPart = SBase + LVIndex | ||
| 2634 | * TPart = TBase + TIndex | ||
| 2635 | * | ||
| 2636 | * LVT (Full) | ||
| 2637 | * LIndex = SIndex / NCount | ||
| 2638 | * VIndex = (Sindex % NCount) / TCount | ||
| 2639 | * TIndex = (Sindex % TCount) | ||
| 2640 | * LPart = LBase + LIndex | ||
| 2641 | * VPart = VBase + VIndex | ||
| 2642 | * if (TIndex == 0) { | ||
| 2643 | * d = <LPart, VPart> | ||
| 2644 | * } else { | ||
| 2645 | * TPart = TBase + TIndex | ||
| 2646 | * d = <LPart, VPart, TPart> | ||
| 2647 | * } | ||
| 2648 | */ | ||
| 2649 | |||
| 2650 | /* Constants */ | ||
| 2651 | #define SB (0xAC00) | ||
| 2652 | #define LB (0x1100) | ||
| 2653 | #define VB (0x1161) | ||
| 2654 | #define TB (0x11A7) | ||
| 2655 | #define LC (19) | ||
| 2656 | #define VC (21) | ||
| 2657 | #define TC (28) | ||
| 2658 | #define NC (VC * TC) | ||
| 2659 | #define SC (LC * NC) | ||
| 2660 | |||
| 2661 | /* Algorithmic decomposition of hangul syllable. */ | ||
| 2662 | static utf8leaf_t *utf8hangul(const char *str, unsigned char *hangul) | ||
| 2663 | { | ||
| 2664 | unsigned int si; | ||
| 2665 | unsigned int li; | ||
| 2666 | unsigned int vi; | ||
| 2667 | unsigned int ti; | ||
| 2668 | unsigned char *h; | ||
| 2669 | |||
| 2670 | /* Calculate the SI, LI, VI, and TI values. */ | ||
| 2671 | si = utf8decode(str) - SB; | ||
| 2672 | li = si / NC; | ||
| 2673 | vi = (si % NC) / TC; | ||
| 2674 | ti = si % TC; | ||
| 2675 | |||
| 2676 | /* Fill in base of leaf. */ | ||
| 2677 | h = hangul; | ||
| 2678 | LEAF_GEN(h) = 2; | ||
| 2679 | LEAF_CCC(h) = DECOMPOSE; | ||
| 2680 | h += 2; | ||
| 2681 | |||
| 2682 | /* Add LPart, a 3-byte UTF-8 sequence. */ | ||
| 2683 | h += utf8encode((char *)h, li + LB); | ||
| 2684 | |||
| 2685 | /* Add VPart, a 3-byte UTF-8 sequence. */ | ||
| 2686 | h += utf8encode((char *)h, vi + VB); | ||
| 2687 | |||
| 2688 | /* Add TPart if required, also a 3-byte UTF-8 sequence. */ | ||
| 2689 | if (ti) | ||
| 2690 | h += utf8encode((char *)h, ti + TB); | ||
| 2691 | |||
| 2692 | /* Terminate string. */ | ||
| 2693 | h[0] = '\0'; | ||
| 2694 | |||
| 2695 | return hangul; | ||
| 2696 | } | ||
| 2697 | |||
| 2698 | /* | ||
| 2699 | * Use trie to scan s, touching at most len bytes. | ||
| 2700 | * Returns the leaf if one exists, NULL otherwise. | ||
| 2701 | * | ||
| 2702 | * A non-NULL return guarantees that the UTF-8 sequence starting at s | ||
| 2703 | * is well-formed and corresponds to a known unicode code point. The | ||
| 2704 | * shorthand for this will be "is valid UTF-8 unicode". | ||
| 2705 | */ | ||
| 2706 | static utf8leaf_t *utf8nlookup(struct tree *tree, unsigned char *hangul, | ||
| 2707 | const char *s, size_t len) | ||
| 2708 | { | ||
| 2709 | utf8trie_t *trie; | ||
| 2710 | int offlen; | ||
| 2711 | int offset; | ||
| 2712 | int mask; | ||
| 2713 | int node; | ||
| 2714 | |||
| 2715 | if (!tree) | ||
| 2716 | return NULL; | ||
| 2717 | if (len == 0) | ||
| 2718 | return NULL; | ||
| 2719 | node = 1; | ||
| 2720 | trie = utf8data + tree->index; | ||
| 2721 | while (node) { | ||
| 2722 | offlen = (*trie & OFFLEN) >> OFFLEN_SHIFT; | ||
| 2723 | if (*trie & NEXTBYTE) { | ||
| 2724 | if (--len == 0) | ||
| 2725 | return NULL; | ||
| 2726 | s++; | ||
| 2727 | } | ||
| 2728 | mask = 1 << (*trie & BITNUM); | ||
| 2729 | if (*s & mask) { | ||
| 2730 | /* Right leg */ | ||
| 2731 | if (offlen) { | ||
| 2732 | /* Right node at offset of trie */ | ||
| 2733 | node = (*trie & RIGHTNODE); | ||
| 2734 | offset = trie[offlen]; | ||
| 2735 | while (--offlen) { | ||
| 2736 | offset <<= 8; | ||
| 2737 | offset |= trie[offlen]; | ||
| 2738 | } | ||
| 2739 | trie += offset; | ||
| 2740 | } else if (*trie & RIGHTPATH) { | ||
| 2741 | /* Right node after this node */ | ||
| 2742 | node = (*trie & TRIENODE); | ||
| 2743 | trie++; | ||
| 2744 | } else { | ||
| 2745 | /* No right node. */ | ||
| 2746 | return NULL; | ||
| 2747 | } | ||
| 2748 | } else { | ||
| 2749 | /* Left leg */ | ||
| 2750 | if (offlen) { | ||
| 2751 | /* Left node after this node. */ | ||
| 2752 | node = (*trie & LEFTNODE); | ||
| 2753 | trie += offlen + 1; | ||
| 2754 | } else if (*trie & RIGHTPATH) { | ||
| 2755 | /* No left node. */ | ||
| 2756 | return NULL; | ||
| 2757 | } else { | ||
| 2758 | /* Left node after this node */ | ||
| 2759 | node = (*trie & TRIENODE); | ||
| 2760 | trie++; | ||
| 2761 | } | ||
| 2762 | } | ||
| 2763 | } | ||
| 2764 | /* | ||
| 2765 | * Hangul decomposition is done algorithmically. These are the | ||
| 2766 | * codepoints >= 0xAC00 and <= 0xD7A3. Their UTF-8 encoding is | ||
| 2767 | * always 3 bytes long, so s has been advanced twice, and the | ||
| 2768 | * start of the sequence is at s-2. | ||
| 2769 | */ | ||
| 2770 | if (LEAF_CCC(trie) == DECOMPOSE && LEAF_STR(trie)[0] == HANGUL) | ||
| 2771 | trie = utf8hangul(s - 2, hangul); | ||
| 2772 | return trie; | ||
| 2773 | } | ||
| 2774 | |||
| 2775 | /* | ||
| 2776 | * Use trie to scan s. | ||
| 2777 | * Returns the leaf if one exists, NULL otherwise. | ||
| 2778 | * | ||
| 2779 | * Forwards to trie_nlookup(). | ||
| 2780 | */ | ||
| 2781 | static utf8leaf_t *utf8lookup(struct tree *tree, unsigned char *hangul, | ||
| 2782 | const char *s) | ||
| 2783 | { | ||
| 2784 | return utf8nlookup(tree, hangul, s, (size_t)-1); | ||
| 2785 | } | ||
| 2786 | |||
| 2787 | /* | ||
| 2788 | * Return the number of bytes used by the current UTF-8 sequence. | ||
| 2789 | * Assumes the input points to the first byte of a valid UTF-8 | ||
| 2790 | * sequence. | ||
| 2791 | */ | ||
| 2792 | static inline int utf8clen(const char *s) | ||
| 2793 | { | ||
| 2794 | unsigned char c = *s; | ||
| 2795 | return 1 + (c >= 0xC0) + (c >= 0xE0) + (c >= 0xF0); | ||
| 2796 | } | ||
| 2797 | |||
| 2798 | /* | ||
| 2799 | * Maximum age of any character in s. | ||
| 2800 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2801 | * Return 0 if only non-assigned code points are used. | ||
| 2802 | */ | ||
| 2803 | int utf8agemax(struct tree *tree, const char *s) | ||
| 2804 | { | ||
| 2805 | utf8leaf_t *leaf; | ||
| 2806 | int age = 0; | ||
| 2807 | int leaf_age; | ||
| 2808 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2809 | |||
| 2810 | if (!tree) | ||
| 2811 | return -1; | ||
| 2812 | |||
| 2813 | while (*s) { | ||
| 2814 | leaf = utf8lookup(tree, hangul, s); | ||
| 2815 | if (!leaf) | ||
| 2816 | return -1; | ||
| 2817 | leaf_age = ages[LEAF_GEN(leaf)]; | ||
| 2818 | if (leaf_age <= tree->maxage && leaf_age > age) | ||
| 2819 | age = leaf_age; | ||
| 2820 | s += utf8clen(s); | ||
| 2821 | } | ||
| 2822 | return age; | ||
| 2823 | } | ||
| 2824 | |||
| 2825 | /* | ||
| 2826 | * Minimum age of any character in s. | ||
| 2827 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2828 | * Return 0 if non-assigned code points are used. | ||
| 2829 | */ | ||
| 2830 | int utf8agemin(struct tree *tree, const char *s) | ||
| 2831 | { | ||
| 2832 | utf8leaf_t *leaf; | ||
| 2833 | int age; | ||
| 2834 | int leaf_age; | ||
| 2835 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2836 | |||
| 2837 | if (!tree) | ||
| 2838 | return -1; | ||
| 2839 | age = tree->maxage; | ||
| 2840 | while (*s) { | ||
| 2841 | leaf = utf8lookup(tree, hangul, s); | ||
| 2842 | if (!leaf) | ||
| 2843 | return -1; | ||
| 2844 | leaf_age = ages[LEAF_GEN(leaf)]; | ||
| 2845 | if (leaf_age <= tree->maxage && leaf_age < age) | ||
| 2846 | age = leaf_age; | ||
| 2847 | s += utf8clen(s); | ||
| 2848 | } | ||
| 2849 | return age; | ||
| 2850 | } | ||
| 2851 | |||
| 2852 | /* | ||
| 2853 | * Maximum age of any character in s, touch at most len bytes. | ||
| 2854 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2855 | */ | ||
| 2856 | int utf8nagemax(struct tree *tree, const char *s, size_t len) | ||
| 2857 | { | ||
| 2858 | utf8leaf_t *leaf; | ||
| 2859 | int age = 0; | ||
| 2860 | int leaf_age; | ||
| 2861 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2862 | |||
| 2863 | if (!tree) | ||
| 2864 | return -1; | ||
| 2865 | |||
| 2866 | while (len && *s) { | ||
| 2867 | leaf = utf8nlookup(tree, hangul, s, len); | ||
| 2868 | if (!leaf) | ||
| 2869 | return -1; | ||
| 2870 | leaf_age = ages[LEAF_GEN(leaf)]; | ||
| 2871 | if (leaf_age <= tree->maxage && leaf_age > age) | ||
| 2872 | age = leaf_age; | ||
| 2873 | len -= utf8clen(s); | ||
| 2874 | s += utf8clen(s); | ||
| 2875 | } | ||
| 2876 | return age; | ||
| 2877 | } | ||
| 2878 | |||
| 2879 | /* | ||
| 2880 | * Maximum age of any character in s, touch at most len bytes. | ||
| 2881 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2882 | */ | ||
| 2883 | int utf8nagemin(struct tree *tree, const char *s, size_t len) | ||
| 2884 | { | ||
| 2885 | utf8leaf_t *leaf; | ||
| 2886 | int leaf_age; | ||
| 2887 | int age; | ||
| 2888 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2889 | |||
| 2890 | if (!tree) | ||
| 2891 | return -1; | ||
| 2892 | age = tree->maxage; | ||
| 2893 | while (len && *s) { | ||
| 2894 | leaf = utf8nlookup(tree, hangul, s, len); | ||
| 2895 | if (!leaf) | ||
| 2896 | return -1; | ||
| 2897 | leaf_age = ages[LEAF_GEN(leaf)]; | ||
| 2898 | if (leaf_age <= tree->maxage && leaf_age < age) | ||
| 2899 | age = leaf_age; | ||
| 2900 | len -= utf8clen(s); | ||
| 2901 | s += utf8clen(s); | ||
| 2902 | } | ||
| 2903 | return age; | ||
| 2904 | } | ||
| 2905 | |||
| 2906 | /* | ||
| 2907 | * Length of the normalization of s. | ||
| 2908 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2909 | * | ||
| 2910 | * A string of Default_Ignorable_Code_Point has length 0. | ||
| 2911 | */ | ||
| 2912 | ssize_t utf8len(struct tree *tree, const char *s) | ||
| 2913 | { | ||
| 2914 | utf8leaf_t *leaf; | ||
| 2915 | size_t ret = 0; | ||
| 2916 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2917 | |||
| 2918 | if (!tree) | ||
| 2919 | return -1; | ||
| 2920 | while (*s) { | ||
| 2921 | leaf = utf8lookup(tree, hangul, s); | ||
| 2922 | if (!leaf) | ||
| 2923 | return -1; | ||
| 2924 | if (ages[LEAF_GEN(leaf)] > tree->maxage) | ||
| 2925 | ret += utf8clen(s); | ||
| 2926 | else if (LEAF_CCC(leaf) == DECOMPOSE) | ||
| 2927 | ret += strlen(LEAF_STR(leaf)); | ||
| 2928 | else | ||
| 2929 | ret += utf8clen(s); | ||
| 2930 | s += utf8clen(s); | ||
| 2931 | } | ||
| 2932 | return ret; | ||
| 2933 | } | ||
| 2934 | |||
| 2935 | /* | ||
| 2936 | * Length of the normalization of s, touch at most len bytes. | ||
| 2937 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 2938 | */ | ||
| 2939 | ssize_t utf8nlen(struct tree *tree, const char *s, size_t len) | ||
| 2940 | { | ||
| 2941 | utf8leaf_t *leaf; | ||
| 2942 | size_t ret = 0; | ||
| 2943 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2944 | |||
| 2945 | if (!tree) | ||
| 2946 | return -1; | ||
| 2947 | while (len && *s) { | ||
| 2948 | leaf = utf8nlookup(tree, hangul, s, len); | ||
| 2949 | if (!leaf) | ||
| 2950 | return -1; | ||
| 2951 | if (ages[LEAF_GEN(leaf)] > tree->maxage) | ||
| 2952 | ret += utf8clen(s); | ||
| 2953 | else if (LEAF_CCC(leaf) == DECOMPOSE) | ||
| 2954 | ret += strlen(LEAF_STR(leaf)); | ||
| 2955 | else | ||
| 2956 | ret += utf8clen(s); | ||
| 2957 | len -= utf8clen(s); | ||
| 2958 | s += utf8clen(s); | ||
| 2959 | } | ||
| 2960 | return ret; | ||
| 2961 | } | ||
| 2962 | |||
| 2963 | /* | ||
| 2964 | * Cursor structure used by the normalizer. | ||
| 2965 | */ | ||
| 2966 | struct utf8cursor { | ||
| 2967 | struct tree *tree; | ||
| 2968 | const char *s; | ||
| 2969 | const char *p; | ||
| 2970 | const char *ss; | ||
| 2971 | const char *sp; | ||
| 2972 | unsigned int len; | ||
| 2973 | unsigned int slen; | ||
| 2974 | short int ccc; | ||
| 2975 | short int nccc; | ||
| 2976 | unsigned int unichar; | ||
| 2977 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 2978 | }; | ||
| 2979 | |||
| 2980 | /* | ||
| 2981 | * Set up an utf8cursor for use by utf8byte(). | ||
| 2982 | * | ||
| 2983 | * s : string. | ||
| 2984 | * len : length of s. | ||
| 2985 | * u8c : pointer to cursor. | ||
| 2986 | * trie : utf8trie_t to use for normalization. | ||
| 2987 | * | ||
| 2988 | * Returns -1 on error, 0 on success. | ||
| 2989 | */ | ||
| 2990 | int utf8ncursor(struct utf8cursor *u8c, struct tree *tree, const char *s, | ||
| 2991 | size_t len) | ||
| 2992 | { | ||
| 2993 | if (!tree) | ||
| 2994 | return -1; | ||
| 2995 | if (!s) | ||
| 2996 | return -1; | ||
| 2997 | u8c->tree = tree; | ||
| 2998 | u8c->s = s; | ||
| 2999 | u8c->p = NULL; | ||
| 3000 | u8c->ss = NULL; | ||
| 3001 | u8c->sp = NULL; | ||
| 3002 | u8c->len = len; | ||
| 3003 | u8c->slen = 0; | ||
| 3004 | u8c->ccc = STOPPER; | ||
| 3005 | u8c->nccc = STOPPER; | ||
| 3006 | u8c->unichar = 0; | ||
| 3007 | /* Check we didn't clobber the maximum length. */ | ||
| 3008 | if (u8c->len != len) | ||
| 3009 | return -1; | ||
| 3010 | /* The first byte of s may not be an utf8 continuation. */ | ||
| 3011 | if (len > 0 && (*s & 0xC0) == 0x80) | ||
| 3012 | return -1; | ||
| 3013 | return 0; | ||
| 3014 | } | ||
| 3015 | |||
| 3016 | /* | ||
| 3017 | * Set up an utf8cursor for use by utf8byte(). | ||
| 3018 | * | ||
| 3019 | * s : NUL-terminated string. | ||
| 3020 | * u8c : pointer to cursor. | ||
| 3021 | * trie : utf8trie_t to use for normalization. | ||
| 3022 | * | ||
| 3023 | * Returns -1 on error, 0 on success. | ||
| 3024 | */ | ||
| 3025 | int utf8cursor(struct utf8cursor *u8c, struct tree *tree, const char *s) | ||
| 3026 | { | ||
| 3027 | return utf8ncursor(u8c, tree, s, (unsigned int)-1); | ||
| 3028 | } | ||
| 3029 | |||
| 3030 | /* | ||
| 3031 | * Get one byte from the normalized form of the string described by u8c. | ||
| 3032 | * | ||
| 3033 | * Returns the byte cast to an unsigned char on succes, and -1 on failure. | ||
| 3034 | * | ||
| 3035 | * The cursor keeps track of the location in the string in u8c->s. | ||
| 3036 | * When a character is decomposed, the current location is stored in | ||
| 3037 | * u8c->p, and u8c->s is set to the start of the decomposition. Note | ||
| 3038 | * that bytes from a decomposition do not count against u8c->len. | ||
| 3039 | * | ||
| 3040 | * Characters are emitted if they match the current CCC in u8c->ccc. | ||
| 3041 | * Hitting end-of-string while u8c->ccc == STOPPER means we're done, | ||
| 3042 | * and the function returns 0 in that case. | ||
| 3043 | * | ||
| 3044 | * Sorting by CCC is done by repeatedly scanning the string. The | ||
| 3045 | * values of u8c->s and u8c->p are stored in u8c->ss and u8c->sp at | ||
| 3046 | * the start of the scan. The first pass finds the lowest CCC to be | ||
| 3047 | * emitted and stores it in u8c->nccc, the second pass emits the | ||
| 3048 | * characters with this CCC and finds the next lowest CCC. This limits | ||
| 3049 | * the number of passes to 1 + the number of different CCCs in the | ||
| 3050 | * sequence being scanned. | ||
| 3051 | * | ||
| 3052 | * Therefore: | ||
| 3053 | * u8c->p != NULL -> a decomposition is being scanned. | ||
| 3054 | * u8c->ss != NULL -> this is a repeating scan. | ||
| 3055 | * u8c->ccc == -1 -> this is the first scan of a repeating scan. | ||
| 3056 | */ | ||
| 3057 | int utf8byte(struct utf8cursor *u8c) | ||
| 3058 | { | ||
| 3059 | utf8leaf_t *leaf; | ||
| 3060 | int ccc; | ||
| 3061 | |||
| 3062 | for (;;) { | ||
| 3063 | /* Check for the end of a decomposed character. */ | ||
| 3064 | if (u8c->p && *u8c->s == '\0') { | ||
| 3065 | u8c->s = u8c->p; | ||
| 3066 | u8c->p = NULL; | ||
| 3067 | } | ||
| 3068 | |||
| 3069 | /* Check for end-of-string. */ | ||
| 3070 | if (!u8c->p && (u8c->len == 0 || *u8c->s == '\0')) { | ||
| 3071 | /* There is no next byte. */ | ||
| 3072 | if (u8c->ccc == STOPPER) | ||
| 3073 | return 0; | ||
| 3074 | /* End-of-string during a scan counts as a stopper. */ | ||
| 3075 | ccc = STOPPER; | ||
| 3076 | goto ccc_mismatch; | ||
| 3077 | } else if ((*u8c->s & 0xC0) == 0x80) { | ||
| 3078 | /* This is a continuation of the current character. */ | ||
| 3079 | if (!u8c->p) | ||
| 3080 | u8c->len--; | ||
| 3081 | return (unsigned char)*u8c->s++; | ||
| 3082 | } | ||
| 3083 | |||
| 3084 | /* Look up the data for the current character. */ | ||
| 3085 | if (u8c->p) { | ||
| 3086 | leaf = utf8lookup(u8c->tree, u8c->hangul, u8c->s); | ||
| 3087 | } else { | ||
| 3088 | leaf = utf8nlookup(u8c->tree, u8c->hangul, | ||
| 3089 | u8c->s, u8c->len); | ||
| 3090 | } | ||
| 3091 | |||
| 3092 | /* No leaf found implies that the input is a binary blob. */ | ||
| 3093 | if (!leaf) | ||
| 3094 | return -1; | ||
| 3095 | |||
| 3096 | /* Characters that are too new have CCC 0. */ | ||
| 3097 | if (ages[LEAF_GEN(leaf)] > u8c->tree->maxage) { | ||
| 3098 | ccc = STOPPER; | ||
| 3099 | } else if ((ccc = LEAF_CCC(leaf)) == DECOMPOSE) { | ||
| 3100 | u8c->len -= utf8clen(u8c->s); | ||
| 3101 | u8c->p = u8c->s + utf8clen(u8c->s); | ||
| 3102 | u8c->s = LEAF_STR(leaf); | ||
| 3103 | /* Empty decomposition implies CCC 0. */ | ||
| 3104 | if (*u8c->s == '\0') { | ||
| 3105 | if (u8c->ccc == STOPPER) | ||
| 3106 | continue; | ||
| 3107 | ccc = STOPPER; | ||
| 3108 | goto ccc_mismatch; | ||
| 3109 | } | ||
| 3110 | leaf = utf8lookup(u8c->tree, u8c->hangul, u8c->s); | ||
| 3111 | ccc = LEAF_CCC(leaf); | ||
| 3112 | } | ||
| 3113 | u8c->unichar = utf8decode(u8c->s); | ||
| 3114 | |||
| 3115 | /* | ||
| 3116 | * If this is not a stopper, then see if it updates | ||
| 3117 | * the next canonical class to be emitted. | ||
| 3118 | */ | ||
| 3119 | if (ccc != STOPPER && u8c->ccc < ccc && ccc < u8c->nccc) | ||
| 3120 | u8c->nccc = ccc; | ||
| 3121 | |||
| 3122 | /* | ||
| 3123 | * Return the current byte if this is the current | ||
| 3124 | * combining class. | ||
| 3125 | */ | ||
| 3126 | if (ccc == u8c->ccc) { | ||
| 3127 | if (!u8c->p) | ||
| 3128 | u8c->len--; | ||
| 3129 | return (unsigned char)*u8c->s++; | ||
| 3130 | } | ||
| 3131 | |||
| 3132 | /* Current combining class mismatch. */ | ||
| 3133 | ccc_mismatch: | ||
| 3134 | if (u8c->nccc == STOPPER) { | ||
| 3135 | /* | ||
| 3136 | * Scan forward for the first canonical class | ||
| 3137 | * to be emitted. Save the position from | ||
| 3138 | * which to restart. | ||
| 3139 | */ | ||
| 3140 | assert(u8c->ccc == STOPPER); | ||
| 3141 | u8c->ccc = MINCCC - 1; | ||
| 3142 | u8c->nccc = ccc; | ||
| 3143 | u8c->sp = u8c->p; | ||
| 3144 | u8c->ss = u8c->s; | ||
| 3145 | u8c->slen = u8c->len; | ||
| 3146 | if (!u8c->p) | ||
| 3147 | u8c->len -= utf8clen(u8c->s); | ||
| 3148 | u8c->s += utf8clen(u8c->s); | ||
| 3149 | } else if (ccc != STOPPER) { | ||
| 3150 | /* Not a stopper, and not the ccc we're emitting. */ | ||
| 3151 | if (!u8c->p) | ||
| 3152 | u8c->len -= utf8clen(u8c->s); | ||
| 3153 | u8c->s += utf8clen(u8c->s); | ||
| 3154 | } else if (u8c->nccc != MAXCCC + 1) { | ||
| 3155 | /* At a stopper, restart for next ccc. */ | ||
| 3156 | u8c->ccc = u8c->nccc; | ||
| 3157 | u8c->nccc = MAXCCC + 1; | ||
| 3158 | u8c->s = u8c->ss; | ||
| 3159 | u8c->p = u8c->sp; | ||
| 3160 | u8c->len = u8c->slen; | ||
| 3161 | } else { | ||
| 3162 | /* All done, proceed from here. */ | ||
| 3163 | u8c->ccc = STOPPER; | ||
| 3164 | u8c->nccc = STOPPER; | ||
| 3165 | u8c->sp = NULL; | ||
| 3166 | u8c->ss = NULL; | ||
| 3167 | u8c->slen = 0; | ||
| 3168 | } | ||
| 3169 | } | ||
| 3170 | } | ||
| 3171 | |||
| 3172 | /* ------------------------------------------------------------------ */ | ||
| 3173 | |||
| 3174 | static int normalize_line(struct tree *tree) | ||
| 3175 | { | ||
| 3176 | char *s; | ||
| 3177 | char *t; | ||
| 3178 | int c; | ||
| 3179 | struct utf8cursor u8c; | ||
| 3180 | |||
| 3181 | /* First test: null-terminated string. */ | ||
| 3182 | s = buf2; | ||
| 3183 | t = buf3; | ||
| 3184 | if (utf8cursor(&u8c, tree, s)) | ||
| 3185 | return -1; | ||
| 3186 | while ((c = utf8byte(&u8c)) > 0) | ||
| 3187 | if (c != (unsigned char)*t++) | ||
| 3188 | return -1; | ||
| 3189 | if (c < 0) | ||
| 3190 | return -1; | ||
| 3191 | if (*t != 0) | ||
| 3192 | return -1; | ||
| 3193 | |||
| 3194 | /* Second test: length-limited string. */ | ||
| 3195 | s = buf2; | ||
| 3196 | /* Replace NUL with a value that will cause an error if seen. */ | ||
| 3197 | s[strlen(s) + 1] = -1; | ||
| 3198 | t = buf3; | ||
| 3199 | if (utf8cursor(&u8c, tree, s)) | ||
| 3200 | return -1; | ||
| 3201 | while ((c = utf8byte(&u8c)) > 0) | ||
| 3202 | if (c != (unsigned char)*t++) | ||
| 3203 | return -1; | ||
| 3204 | if (c < 0) | ||
| 3205 | return -1; | ||
| 3206 | if (*t != 0) | ||
| 3207 | return -1; | ||
| 3208 | |||
| 3209 | return 0; | ||
| 3210 | } | ||
| 3211 | |||
| 3212 | static void normalization_test(void) | ||
| 3213 | { | ||
| 3214 | FILE *file; | ||
| 3215 | unsigned int unichar; | ||
| 3216 | struct unicode_data *data; | ||
| 3217 | char *s; | ||
| 3218 | char *t; | ||
| 3219 | int ret; | ||
| 3220 | int ignorables; | ||
| 3221 | int tests = 0; | ||
| 3222 | int failures = 0; | ||
| 3223 | |||
| 3224 | if (verbose > 0) | ||
| 3225 | printf("Parsing %s\n", test_name); | ||
| 3226 | /* Step one, read data from file. */ | ||
| 3227 | file = fopen(test_name, "r"); | ||
| 3228 | if (!file) | ||
| 3229 | open_fail(test_name, errno); | ||
| 3230 | |||
| 3231 | while (fgets(line, LINESIZE, file)) { | ||
| 3232 | ret = sscanf(line, "%[^;];%*[^;];%[^;];%*[^;];%*[^;];", | ||
| 3233 | buf0, buf1); | ||
| 3234 | if (ret != 2 || *line == '#') | ||
| 3235 | continue; | ||
| 3236 | s = buf0; | ||
| 3237 | t = buf2; | ||
| 3238 | while (*s) { | ||
| 3239 | unichar = strtoul(s, &s, 16); | ||
| 3240 | t += utf8encode(t, unichar); | ||
| 3241 | } | ||
| 3242 | *t = '\0'; | ||
| 3243 | |||
| 3244 | ignorables = 0; | ||
| 3245 | s = buf1; | ||
| 3246 | t = buf3; | ||
| 3247 | while (*s) { | ||
| 3248 | unichar = strtoul(s, &s, 16); | ||
| 3249 | data = &unicode_data[unichar]; | ||
| 3250 | if (data->utf8nfdi && !*data->utf8nfdi) | ||
| 3251 | ignorables = 1; | ||
| 3252 | else | ||
| 3253 | t += utf8encode(t, unichar); | ||
| 3254 | } | ||
| 3255 | *t = '\0'; | ||
| 3256 | |||
| 3257 | tests++; | ||
| 3258 | if (normalize_line(nfdi_tree) < 0) { | ||
| 3259 | printf("Line %s -> %s", buf0, buf1); | ||
| 3260 | if (ignorables) | ||
| 3261 | printf(" (ignorables removed)"); | ||
| 3262 | printf(" failure\n"); | ||
| 3263 | failures++; | ||
| 3264 | } | ||
| 3265 | } | ||
| 3266 | fclose(file); | ||
| 3267 | if (verbose > 0) | ||
| 3268 | printf("Ran %d tests with %d failures\n", tests, failures); | ||
| 3269 | if (failures) | ||
| 3270 | file_fail(test_name); | ||
| 3271 | } | ||
| 3272 | |||
| 3273 | /* ------------------------------------------------------------------ */ | ||
| 3274 | |||
| 3275 | static void write_file(void) | ||
| 3276 | { | ||
| 3277 | FILE *file; | ||
| 3278 | int i; | ||
| 3279 | int j; | ||
| 3280 | int t; | ||
| 3281 | int gen; | ||
| 3282 | |||
| 3283 | if (verbose > 0) | ||
| 3284 | printf("Writing %s\n", utf8_name); | ||
| 3285 | file = fopen(utf8_name, "w"); | ||
| 3286 | if (!file) | ||
| 3287 | open_fail(utf8_name, errno); | ||
| 3288 | |||
| 3289 | fprintf(file, "/* This file is generated code, do not edit. */\n"); | ||
| 3290 | fprintf(file, "#ifndef __INCLUDED_FROM_UTF8NORM_C__\n"); | ||
| 3291 | fprintf(file, "#error Only nls_utf8-norm.c should include this file.\n"); | ||
| 3292 | fprintf(file, "#endif\n"); | ||
| 3293 | fprintf(file, "\n"); | ||
| 3294 | fprintf(file, "static const unsigned int utf8vers = %#x;\n", | ||
| 3295 | unicode_maxage); | ||
| 3296 | fprintf(file, "\n"); | ||
| 3297 | fprintf(file, "static const unsigned int utf8agetab[] = {\n"); | ||
| 3298 | for (i = 0; i != ages_count; i++) | ||
| 3299 | fprintf(file, "\t%#x%s\n", ages[i], | ||
| 3300 | ages[i] == unicode_maxage ? "" : ","); | ||
| 3301 | fprintf(file, "};\n"); | ||
| 3302 | fprintf(file, "\n"); | ||
| 3303 | fprintf(file, "static const struct utf8data utf8nfdicfdata[] = {\n"); | ||
| 3304 | t = 0; | ||
| 3305 | for (gen = 0; gen < ages_count; gen++) { | ||
| 3306 | fprintf(file, "\t{ %#x, %d }%s\n", | ||
| 3307 | ages[gen], trees[t].index, | ||
| 3308 | ages[gen] == unicode_maxage ? "" : ","); | ||
| 3309 | if (trees[t].maxage == ages[gen]) | ||
| 3310 | t += 2; | ||
| 3311 | } | ||
| 3312 | fprintf(file, "};\n"); | ||
| 3313 | fprintf(file, "\n"); | ||
| 3314 | fprintf(file, "static const struct utf8data utf8nfdidata[] = {\n"); | ||
| 3315 | t = 1; | ||
| 3316 | for (gen = 0; gen < ages_count; gen++) { | ||
| 3317 | fprintf(file, "\t{ %#x, %d }%s\n", | ||
| 3318 | ages[gen], trees[t].index, | ||
| 3319 | ages[gen] == unicode_maxage ? "" : ","); | ||
| 3320 | if (trees[t].maxage == ages[gen]) | ||
| 3321 | t += 2; | ||
| 3322 | } | ||
| 3323 | fprintf(file, "};\n"); | ||
| 3324 | fprintf(file, "\n"); | ||
| 3325 | fprintf(file, "static const unsigned char utf8data[%zd] = {\n", | ||
| 3326 | utf8data_size); | ||
| 3327 | t = 0; | ||
| 3328 | for (i = 0; i != utf8data_size; i += 16) { | ||
| 3329 | if (i == trees[t].index) { | ||
| 3330 | fprintf(file, "\t/* %s_%x */\n", | ||
| 3331 | trees[t].type, trees[t].maxage); | ||
| 3332 | if (t < trees_count-1) | ||
| 3333 | t++; | ||
| 3334 | } | ||
| 3335 | fprintf(file, "\t"); | ||
| 3336 | for (j = i; j != i + 16; j++) | ||
| 3337 | fprintf(file, "0x%.2x%s", utf8data[j], | ||
| 3338 | (j < utf8data_size -1 ? "," : "")); | ||
| 3339 | fprintf(file, "\n"); | ||
| 3340 | } | ||
| 3341 | fprintf(file, "};\n"); | ||
| 3342 | fclose(file); | ||
| 3343 | } | ||
| 3344 | |||
| 3345 | /* ------------------------------------------------------------------ */ | ||
| 3346 | |||
| 3347 | int main(int argc, char *argv[]) | ||
| 3348 | { | ||
| 3349 | unsigned int unichar; | ||
| 3350 | int opt; | ||
| 3351 | |||
| 3352 | argv0 = argv[0]; | ||
| 3353 | |||
| 3354 | while ((opt = getopt(argc, argv, "a:c:d:f:hn:o:p:t:v")) != -1) { | ||
| 3355 | switch (opt) { | ||
| 3356 | case 'a': | ||
| 3357 | age_name = optarg; | ||
| 3358 | break; | ||
| 3359 | case 'c': | ||
| 3360 | ccc_name = optarg; | ||
| 3361 | break; | ||
| 3362 | case 'd': | ||
| 3363 | data_name = optarg; | ||
| 3364 | break; | ||
| 3365 | case 'f': | ||
| 3366 | fold_name = optarg; | ||
| 3367 | break; | ||
| 3368 | case 'n': | ||
| 3369 | norm_name = optarg; | ||
| 3370 | break; | ||
| 3371 | case 'o': | ||
| 3372 | utf8_name = optarg; | ||
| 3373 | break; | ||
| 3374 | case 'p': | ||
| 3375 | prop_name = optarg; | ||
| 3376 | break; | ||
| 3377 | case 't': | ||
| 3378 | test_name = optarg; | ||
| 3379 | break; | ||
| 3380 | case 'v': | ||
| 3381 | verbose++; | ||
| 3382 | break; | ||
| 3383 | case 'h': | ||
| 3384 | help(); | ||
| 3385 | exit(0); | ||
| 3386 | default: | ||
| 3387 | usage(); | ||
| 3388 | } | ||
| 3389 | } | ||
| 3390 | |||
| 3391 | if (verbose > 1) | ||
| 3392 | help(); | ||
| 3393 | for (unichar = 0; unichar != 0x110000; unichar++) | ||
| 3394 | unicode_data[unichar].code = unichar; | ||
| 3395 | age_init(); | ||
| 3396 | ccc_init(); | ||
| 3397 | nfdi_init(); | ||
| 3398 | nfdicf_init(); | ||
| 3399 | ignore_init(); | ||
| 3400 | corrections_init(); | ||
| 3401 | hangul_decompose(); | ||
| 3402 | nfdi_decompose(); | ||
| 3403 | nfdicf_decompose(); | ||
| 3404 | utf8_init(); | ||
| 3405 | trees_init(); | ||
| 3406 | trees_populate(); | ||
| 3407 | trees_reduce(); | ||
| 3408 | trees_verify(); | ||
| 3409 | /* Prevent "unused function" warning. */ | ||
| 3410 | (void)lookup(nfdi_tree, " "); | ||
| 3411 | if (verbose > 2) | ||
| 3412 | tree_walk(nfdi_tree); | ||
| 3413 | if (verbose > 2) | ||
| 3414 | tree_walk(nfdicf_tree); | ||
| 3415 | normalization_test(); | ||
| 3416 | write_file(); | ||
| 3417 | |||
| 3418 | return 0; | ||
| 3419 | } | ||
diff --git a/fs/unicode/utf8-core.c b/fs/unicode/utf8-core.c new file mode 100644 index 000000000000..6afab4fdce90 --- /dev/null +++ b/fs/unicode/utf8-core.c | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
| 2 | #include <linux/module.h> | ||
| 3 | #include <linux/kernel.h> | ||
| 4 | #include <linux/string.h> | ||
| 5 | #include <linux/slab.h> | ||
| 6 | #include <linux/parser.h> | ||
| 7 | #include <linux/errno.h> | ||
| 8 | #include <linux/unicode.h> | ||
| 9 | |||
| 10 | #include "utf8n.h" | ||
| 11 | |||
| 12 | int utf8_validate(const struct unicode_map *um, const struct qstr *str) | ||
| 13 | { | ||
| 14 | const struct utf8data *data = utf8nfdi(um->version); | ||
| 15 | |||
| 16 | if (utf8nlen(data, str->name, str->len) < 0) | ||
| 17 | return -1; | ||
| 18 | return 0; | ||
| 19 | } | ||
| 20 | EXPORT_SYMBOL(utf8_validate); | ||
| 21 | |||
| 22 | int utf8_strncmp(const struct unicode_map *um, | ||
| 23 | const struct qstr *s1, const struct qstr *s2) | ||
| 24 | { | ||
| 25 | const struct utf8data *data = utf8nfdi(um->version); | ||
| 26 | struct utf8cursor cur1, cur2; | ||
| 27 | int c1, c2; | ||
| 28 | |||
| 29 | if (utf8ncursor(&cur1, data, s1->name, s1->len) < 0) | ||
| 30 | return -EINVAL; | ||
| 31 | |||
| 32 | if (utf8ncursor(&cur2, data, s2->name, s2->len) < 0) | ||
| 33 | return -EINVAL; | ||
| 34 | |||
| 35 | do { | ||
| 36 | c1 = utf8byte(&cur1); | ||
| 37 | c2 = utf8byte(&cur2); | ||
| 38 | |||
| 39 | if (c1 < 0 || c2 < 0) | ||
| 40 | return -EINVAL; | ||
| 41 | if (c1 != c2) | ||
| 42 | return 1; | ||
| 43 | } while (c1); | ||
| 44 | |||
| 45 | return 0; | ||
| 46 | } | ||
| 47 | EXPORT_SYMBOL(utf8_strncmp); | ||
| 48 | |||
| 49 | int utf8_strncasecmp(const struct unicode_map *um, | ||
| 50 | const struct qstr *s1, const struct qstr *s2) | ||
| 51 | { | ||
| 52 | const struct utf8data *data = utf8nfdicf(um->version); | ||
| 53 | struct utf8cursor cur1, cur2; | ||
| 54 | int c1, c2; | ||
| 55 | |||
| 56 | if (utf8ncursor(&cur1, data, s1->name, s1->len) < 0) | ||
| 57 | return -EINVAL; | ||
| 58 | |||
| 59 | if (utf8ncursor(&cur2, data, s2->name, s2->len) < 0) | ||
| 60 | return -EINVAL; | ||
| 61 | |||
| 62 | do { | ||
| 63 | c1 = utf8byte(&cur1); | ||
| 64 | c2 = utf8byte(&cur2); | ||
| 65 | |||
| 66 | if (c1 < 0 || c2 < 0) | ||
| 67 | return -EINVAL; | ||
| 68 | if (c1 != c2) | ||
| 69 | return 1; | ||
| 70 | } while (c1); | ||
| 71 | |||
| 72 | return 0; | ||
| 73 | } | ||
| 74 | EXPORT_SYMBOL(utf8_strncasecmp); | ||
| 75 | |||
| 76 | int utf8_casefold(const struct unicode_map *um, const struct qstr *str, | ||
| 77 | unsigned char *dest, size_t dlen) | ||
| 78 | { | ||
| 79 | const struct utf8data *data = utf8nfdicf(um->version); | ||
| 80 | struct utf8cursor cur; | ||
| 81 | size_t nlen = 0; | ||
| 82 | |||
| 83 | if (utf8ncursor(&cur, data, str->name, str->len) < 0) | ||
| 84 | return -EINVAL; | ||
| 85 | |||
| 86 | for (nlen = 0; nlen < dlen; nlen++) { | ||
| 87 | int c = utf8byte(&cur); | ||
| 88 | |||
| 89 | dest[nlen] = c; | ||
| 90 | if (!c) | ||
| 91 | return nlen; | ||
| 92 | if (c == -1) | ||
| 93 | break; | ||
| 94 | } | ||
| 95 | return -EINVAL; | ||
| 96 | } | ||
| 97 | |||
| 98 | EXPORT_SYMBOL(utf8_casefold); | ||
| 99 | |||
| 100 | int utf8_normalize(const struct unicode_map *um, const struct qstr *str, | ||
| 101 | unsigned char *dest, size_t dlen) | ||
| 102 | { | ||
| 103 | const struct utf8data *data = utf8nfdi(um->version); | ||
| 104 | struct utf8cursor cur; | ||
| 105 | ssize_t nlen = 0; | ||
| 106 | |||
| 107 | if (utf8ncursor(&cur, data, str->name, str->len) < 0) | ||
| 108 | return -EINVAL; | ||
| 109 | |||
| 110 | for (nlen = 0; nlen < dlen; nlen++) { | ||
| 111 | int c = utf8byte(&cur); | ||
| 112 | |||
| 113 | dest[nlen] = c; | ||
| 114 | if (!c) | ||
| 115 | return nlen; | ||
| 116 | if (c == -1) | ||
| 117 | break; | ||
| 118 | } | ||
| 119 | return -EINVAL; | ||
| 120 | } | ||
| 121 | |||
| 122 | EXPORT_SYMBOL(utf8_normalize); | ||
| 123 | |||
| 124 | static int utf8_parse_version(const char *version, unsigned int *maj, | ||
| 125 | unsigned int *min, unsigned int *rev) | ||
| 126 | { | ||
| 127 | substring_t args[3]; | ||
| 128 | char version_string[12]; | ||
| 129 | const struct match_token token[] = { | ||
| 130 | {1, "%d.%d.%d"}, | ||
| 131 | {0, NULL} | ||
| 132 | }; | ||
| 133 | |||
| 134 | strncpy(version_string, version, sizeof(version_string)); | ||
| 135 | |||
| 136 | if (match_token(version_string, token, args) != 1) | ||
| 137 | return -EINVAL; | ||
| 138 | |||
| 139 | if (match_int(&args[0], maj) || match_int(&args[1], min) || | ||
| 140 | match_int(&args[2], rev)) | ||
| 141 | return -EINVAL; | ||
| 142 | |||
| 143 | return 0; | ||
| 144 | } | ||
| 145 | |||
| 146 | struct unicode_map *utf8_load(const char *version) | ||
| 147 | { | ||
| 148 | struct unicode_map *um = NULL; | ||
| 149 | int unicode_version; | ||
| 150 | |||
| 151 | if (version) { | ||
| 152 | unsigned int maj, min, rev; | ||
| 153 | |||
| 154 | if (utf8_parse_version(version, &maj, &min, &rev) < 0) | ||
| 155 | return ERR_PTR(-EINVAL); | ||
| 156 | |||
| 157 | if (!utf8version_is_supported(maj, min, rev)) | ||
| 158 | return ERR_PTR(-EINVAL); | ||
| 159 | |||
| 160 | unicode_version = UNICODE_AGE(maj, min, rev); | ||
| 161 | } else { | ||
| 162 | unicode_version = utf8version_latest(); | ||
| 163 | printk(KERN_WARNING"UTF-8 version not specified. " | ||
| 164 | "Assuming latest supported version (%d.%d.%d).", | ||
| 165 | (unicode_version >> 16) & 0xff, | ||
| 166 | (unicode_version >> 8) & 0xff, | ||
| 167 | (unicode_version & 0xff)); | ||
| 168 | } | ||
| 169 | |||
| 170 | um = kzalloc(sizeof(struct unicode_map), GFP_KERNEL); | ||
| 171 | if (!um) | ||
| 172 | return ERR_PTR(-ENOMEM); | ||
| 173 | |||
| 174 | um->charset = "UTF-8"; | ||
| 175 | um->version = unicode_version; | ||
| 176 | |||
| 177 | return um; | ||
| 178 | } | ||
| 179 | EXPORT_SYMBOL(utf8_load); | ||
| 180 | |||
| 181 | void utf8_unload(struct unicode_map *um) | ||
| 182 | { | ||
| 183 | kfree(um); | ||
| 184 | } | ||
| 185 | EXPORT_SYMBOL(utf8_unload); | ||
| 186 | |||
| 187 | MODULE_LICENSE("GPL v2"); | ||
diff --git a/fs/unicode/utf8-norm.c b/fs/unicode/utf8-norm.c new file mode 100644 index 000000000000..20d440c3f2db --- /dev/null +++ b/fs/unicode/utf8-norm.c | |||
| @@ -0,0 +1,799 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 SGI. | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it would be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include "utf8n.h" | ||
| 17 | |||
| 18 | struct utf8data { | ||
| 19 | unsigned int maxage; | ||
| 20 | unsigned int offset; | ||
| 21 | }; | ||
| 22 | |||
| 23 | #define __INCLUDED_FROM_UTF8NORM_C__ | ||
| 24 | #include "utf8data.h" | ||
| 25 | #undef __INCLUDED_FROM_UTF8NORM_C__ | ||
| 26 | |||
| 27 | int utf8version_is_supported(u8 maj, u8 min, u8 rev) | ||
| 28 | { | ||
| 29 | int i = ARRAY_SIZE(utf8agetab) - 1; | ||
| 30 | unsigned int sb_utf8version = UNICODE_AGE(maj, min, rev); | ||
| 31 | |||
| 32 | while (i >= 0 && utf8agetab[i] != 0) { | ||
| 33 | if (sb_utf8version == utf8agetab[i]) | ||
| 34 | return 1; | ||
| 35 | i--; | ||
| 36 | } | ||
| 37 | return 0; | ||
| 38 | } | ||
| 39 | EXPORT_SYMBOL(utf8version_is_supported); | ||
| 40 | |||
| 41 | int utf8version_latest(void) | ||
| 42 | { | ||
| 43 | return utf8vers; | ||
| 44 | } | ||
| 45 | EXPORT_SYMBOL(utf8version_latest); | ||
| 46 | |||
| 47 | /* | ||
| 48 | * UTF-8 valid ranges. | ||
| 49 | * | ||
| 50 | * The UTF-8 encoding spreads the bits of a 32bit word over several | ||
| 51 | * bytes. This table gives the ranges that can be held and how they'd | ||
| 52 | * be represented. | ||
| 53 | * | ||
| 54 | * 0x00000000 0x0000007F: 0xxxxxxx | ||
| 55 | * 0x00000000 0x000007FF: 110xxxxx 10xxxxxx | ||
| 56 | * 0x00000000 0x0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx | ||
| 57 | * 0x00000000 0x001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 58 | * 0x00000000 0x03FFFFFF: 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 59 | * 0x00000000 0x7FFFFFFF: 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 60 | * | ||
| 61 | * There is an additional requirement on UTF-8, in that only the | ||
| 62 | * shortest representation of a 32bit value is to be used. A decoder | ||
| 63 | * must not decode sequences that do not satisfy this requirement. | ||
| 64 | * Thus the allowed ranges have a lower bound. | ||
| 65 | * | ||
| 66 | * 0x00000000 0x0000007F: 0xxxxxxx | ||
| 67 | * 0x00000080 0x000007FF: 110xxxxx 10xxxxxx | ||
| 68 | * 0x00000800 0x0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx | ||
| 69 | * 0x00010000 0x001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 70 | * 0x00200000 0x03FFFFFF: 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 71 | * 0x04000000 0x7FFFFFFF: 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx | ||
| 72 | * | ||
| 73 | * Actual unicode characters are limited to the range 0x0 - 0x10FFFF, | ||
| 74 | * 17 planes of 65536 values. This limits the sequences actually seen | ||
| 75 | * even more, to just the following. | ||
| 76 | * | ||
| 77 | * 0 - 0x7F: 0 - 0x7F | ||
| 78 | * 0x80 - 0x7FF: 0xC2 0x80 - 0xDF 0xBF | ||
| 79 | * 0x800 - 0xFFFF: 0xE0 0xA0 0x80 - 0xEF 0xBF 0xBF | ||
| 80 | * 0x10000 - 0x10FFFF: 0xF0 0x90 0x80 0x80 - 0xF4 0x8F 0xBF 0xBF | ||
| 81 | * | ||
| 82 | * Within those ranges the surrogates 0xD800 - 0xDFFF are not allowed. | ||
| 83 | * | ||
| 84 | * Note that the longest sequence seen with valid usage is 4 bytes, | ||
| 85 | * the same a single UTF-32 character. This makes the UTF-8 | ||
| 86 | * representation of Unicode strictly smaller than UTF-32. | ||
| 87 | * | ||
| 88 | * The shortest sequence requirement was introduced by: | ||
| 89 | * Corrigendum #1: UTF-8 Shortest Form | ||
| 90 | * It can be found here: | ||
| 91 | * http://www.unicode.org/versions/corrigendum1.html | ||
| 92 | * | ||
| 93 | */ | ||
| 94 | |||
| 95 | /* | ||
| 96 | * Return the number of bytes used by the current UTF-8 sequence. | ||
| 97 | * Assumes the input points to the first byte of a valid UTF-8 | ||
| 98 | * sequence. | ||
| 99 | */ | ||
| 100 | static inline int utf8clen(const char *s) | ||
| 101 | { | ||
| 102 | unsigned char c = *s; | ||
| 103 | |||
| 104 | return 1 + (c >= 0xC0) + (c >= 0xE0) + (c >= 0xF0); | ||
| 105 | } | ||
| 106 | |||
| 107 | /* | ||
| 108 | * Decode a 3-byte UTF-8 sequence. | ||
| 109 | */ | ||
| 110 | static unsigned int | ||
| 111 | utf8decode3(const char *str) | ||
| 112 | { | ||
| 113 | unsigned int uc; | ||
| 114 | |||
| 115 | uc = *str++ & 0x0F; | ||
| 116 | uc <<= 6; | ||
| 117 | uc |= *str++ & 0x3F; | ||
| 118 | uc <<= 6; | ||
| 119 | uc |= *str++ & 0x3F; | ||
| 120 | |||
| 121 | return uc; | ||
| 122 | } | ||
| 123 | |||
| 124 | /* | ||
| 125 | * Encode a 3-byte UTF-8 sequence. | ||
| 126 | */ | ||
| 127 | static int | ||
| 128 | utf8encode3(char *str, unsigned int val) | ||
| 129 | { | ||
| 130 | str[2] = (val & 0x3F) | 0x80; | ||
| 131 | val >>= 6; | ||
| 132 | str[1] = (val & 0x3F) | 0x80; | ||
| 133 | val >>= 6; | ||
| 134 | str[0] = val | 0xE0; | ||
| 135 | |||
| 136 | return 3; | ||
| 137 | } | ||
| 138 | |||
| 139 | /* | ||
| 140 | * utf8trie_t | ||
| 141 | * | ||
| 142 | * A compact binary tree, used to decode UTF-8 characters. | ||
| 143 | * | ||
| 144 | * Internal nodes are one byte for the node itself, and up to three | ||
| 145 | * bytes for an offset into the tree. The first byte contains the | ||
| 146 | * following information: | ||
| 147 | * NEXTBYTE - flag - advance to next byte if set | ||
| 148 | * BITNUM - 3 bit field - the bit number to tested | ||
| 149 | * OFFLEN - 2 bit field - number of bytes in the offset | ||
| 150 | * if offlen == 0 (non-branching node) | ||
| 151 | * RIGHTPATH - 1 bit field - set if the following node is for the | ||
| 152 | * right-hand path (tested bit is set) | ||
| 153 | * TRIENODE - 1 bit field - set if the following node is an internal | ||
| 154 | * node, otherwise it is a leaf node | ||
| 155 | * if offlen != 0 (branching node) | ||
| 156 | * LEFTNODE - 1 bit field - set if the left-hand node is internal | ||
| 157 | * RIGHTNODE - 1 bit field - set if the right-hand node is internal | ||
| 158 | * | ||
| 159 | * Due to the way utf8 works, there cannot be branching nodes with | ||
| 160 | * NEXTBYTE set, and moreover those nodes always have a righthand | ||
| 161 | * descendant. | ||
| 162 | */ | ||
| 163 | typedef const unsigned char utf8trie_t; | ||
| 164 | #define BITNUM 0x07 | ||
| 165 | #define NEXTBYTE 0x08 | ||
| 166 | #define OFFLEN 0x30 | ||
| 167 | #define OFFLEN_SHIFT 4 | ||
| 168 | #define RIGHTPATH 0x40 | ||
| 169 | #define TRIENODE 0x80 | ||
| 170 | #define RIGHTNODE 0x40 | ||
| 171 | #define LEFTNODE 0x80 | ||
| 172 | |||
| 173 | /* | ||
| 174 | * utf8leaf_t | ||
| 175 | * | ||
| 176 | * The leaves of the trie are embedded in the trie, and so the same | ||
| 177 | * underlying datatype: unsigned char. | ||
| 178 | * | ||
| 179 | * leaf[0]: The unicode version, stored as a generation number that is | ||
| 180 | * an index into utf8agetab[]. With this we can filter code | ||
| 181 | * points based on the unicode version in which they were | ||
| 182 | * defined. The CCC of a non-defined code point is 0. | ||
| 183 | * leaf[1]: Canonical Combining Class. During normalization, we need | ||
| 184 | * to do a stable sort into ascending order of all characters | ||
| 185 | * with a non-zero CCC that occur between two characters with | ||
| 186 | * a CCC of 0, or at the begin or end of a string. | ||
| 187 | * The unicode standard guarantees that all CCC values are | ||
| 188 | * between 0 and 254 inclusive, which leaves 255 available as | ||
| 189 | * a special value. | ||
| 190 | * Code points with CCC 0 are known as stoppers. | ||
| 191 | * leaf[2]: Decomposition. If leaf[1] == 255, then leaf[2] is the | ||
| 192 | * start of a NUL-terminated string that is the decomposition | ||
| 193 | * of the character. | ||
| 194 | * The CCC of a decomposable character is the same as the CCC | ||
| 195 | * of the first character of its decomposition. | ||
| 196 | * Some characters decompose as the empty string: these are | ||
| 197 | * characters with the Default_Ignorable_Code_Point property. | ||
| 198 | * These do affect normalization, as they all have CCC 0. | ||
| 199 | * | ||
| 200 | * The decompositions in the trie have been fully expanded, with the | ||
| 201 | * exception of Hangul syllables, which are decomposed algorithmically. | ||
| 202 | * | ||
| 203 | * Casefolding, if applicable, is also done using decompositions. | ||
| 204 | * | ||
| 205 | * The trie is constructed in such a way that leaves exist for all | ||
| 206 | * UTF-8 sequences that match the criteria from the "UTF-8 valid | ||
| 207 | * ranges" comment above, and only for those sequences. Therefore a | ||
| 208 | * lookup in the trie can be used to validate the UTF-8 input. | ||
| 209 | */ | ||
| 210 | typedef const unsigned char utf8leaf_t; | ||
| 211 | |||
| 212 | #define LEAF_GEN(LEAF) ((LEAF)[0]) | ||
| 213 | #define LEAF_CCC(LEAF) ((LEAF)[1]) | ||
| 214 | #define LEAF_STR(LEAF) ((const char *)((LEAF) + 2)) | ||
| 215 | |||
| 216 | #define MINCCC (0) | ||
| 217 | #define MAXCCC (254) | ||
| 218 | #define STOPPER (0) | ||
| 219 | #define DECOMPOSE (255) | ||
| 220 | |||
| 221 | /* Marker for hangul syllable decomposition. */ | ||
| 222 | #define HANGUL ((char)(255)) | ||
| 223 | /* Size of the synthesized leaf used for Hangul syllable decomposition. */ | ||
| 224 | #define UTF8HANGULLEAF (12) | ||
| 225 | |||
| 226 | /* | ||
| 227 | * Hangul decomposition (algorithm from Section 3.12 of Unicode 6.3.0) | ||
| 228 | * | ||
| 229 | * AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;; | ||
| 230 | * D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;; | ||
| 231 | * | ||
| 232 | * SBase = 0xAC00 | ||
| 233 | * LBase = 0x1100 | ||
| 234 | * VBase = 0x1161 | ||
| 235 | * TBase = 0x11A7 | ||
| 236 | * LCount = 19 | ||
| 237 | * VCount = 21 | ||
| 238 | * TCount = 28 | ||
| 239 | * NCount = 588 (VCount * TCount) | ||
| 240 | * SCount = 11172 (LCount * NCount) | ||
| 241 | * | ||
| 242 | * Decomposition: | ||
| 243 | * SIndex = s - SBase | ||
| 244 | * | ||
| 245 | * LV (Canonical/Full) | ||
| 246 | * LIndex = SIndex / NCount | ||
| 247 | * VIndex = (Sindex % NCount) / TCount | ||
| 248 | * LPart = LBase + LIndex | ||
| 249 | * VPart = VBase + VIndex | ||
| 250 | * | ||
| 251 | * LVT (Canonical) | ||
| 252 | * LVIndex = (SIndex / TCount) * TCount | ||
| 253 | * TIndex = (Sindex % TCount) | ||
| 254 | * LVPart = SBase + LVIndex | ||
| 255 | * TPart = TBase + TIndex | ||
| 256 | * | ||
| 257 | * LVT (Full) | ||
| 258 | * LIndex = SIndex / NCount | ||
| 259 | * VIndex = (Sindex % NCount) / TCount | ||
| 260 | * TIndex = (Sindex % TCount) | ||
| 261 | * LPart = LBase + LIndex | ||
| 262 | * VPart = VBase + VIndex | ||
| 263 | * if (TIndex == 0) { | ||
| 264 | * d = <LPart, VPart> | ||
| 265 | * } else { | ||
| 266 | * TPart = TBase + TIndex | ||
| 267 | * d = <LPart, TPart, VPart> | ||
| 268 | * } | ||
| 269 | */ | ||
| 270 | |||
| 271 | /* Constants */ | ||
| 272 | #define SB (0xAC00) | ||
| 273 | #define LB (0x1100) | ||
| 274 | #define VB (0x1161) | ||
| 275 | #define TB (0x11A7) | ||
| 276 | #define LC (19) | ||
| 277 | #define VC (21) | ||
| 278 | #define TC (28) | ||
| 279 | #define NC (VC * TC) | ||
| 280 | #define SC (LC * NC) | ||
| 281 | |||
| 282 | /* Algorithmic decomposition of hangul syllable. */ | ||
| 283 | static utf8leaf_t * | ||
| 284 | utf8hangul(const char *str, unsigned char *hangul) | ||
| 285 | { | ||
| 286 | unsigned int si; | ||
| 287 | unsigned int li; | ||
| 288 | unsigned int vi; | ||
| 289 | unsigned int ti; | ||
| 290 | unsigned char *h; | ||
| 291 | |||
| 292 | /* Calculate the SI, LI, VI, and TI values. */ | ||
| 293 | si = utf8decode3(str) - SB; | ||
| 294 | li = si / NC; | ||
| 295 | vi = (si % NC) / TC; | ||
| 296 | ti = si % TC; | ||
| 297 | |||
| 298 | /* Fill in base of leaf. */ | ||
| 299 | h = hangul; | ||
| 300 | LEAF_GEN(h) = 2; | ||
| 301 | LEAF_CCC(h) = DECOMPOSE; | ||
| 302 | h += 2; | ||
| 303 | |||
| 304 | /* Add LPart, a 3-byte UTF-8 sequence. */ | ||
| 305 | h += utf8encode3((char *)h, li + LB); | ||
| 306 | |||
| 307 | /* Add VPart, a 3-byte UTF-8 sequence. */ | ||
| 308 | h += utf8encode3((char *)h, vi + VB); | ||
| 309 | |||
| 310 | /* Add TPart if required, also a 3-byte UTF-8 sequence. */ | ||
| 311 | if (ti) | ||
| 312 | h += utf8encode3((char *)h, ti + TB); | ||
| 313 | |||
| 314 | /* Terminate string. */ | ||
| 315 | h[0] = '\0'; | ||
| 316 | |||
| 317 | return hangul; | ||
| 318 | } | ||
| 319 | |||
| 320 | /* | ||
| 321 | * Use trie to scan s, touching at most len bytes. | ||
| 322 | * Returns the leaf if one exists, NULL otherwise. | ||
| 323 | * | ||
| 324 | * A non-NULL return guarantees that the UTF-8 sequence starting at s | ||
| 325 | * is well-formed and corresponds to a known unicode code point. The | ||
| 326 | * shorthand for this will be "is valid UTF-8 unicode". | ||
| 327 | */ | ||
| 328 | static utf8leaf_t *utf8nlookup(const struct utf8data *data, | ||
| 329 | unsigned char *hangul, const char *s, size_t len) | ||
| 330 | { | ||
| 331 | utf8trie_t *trie = NULL; | ||
| 332 | int offlen; | ||
| 333 | int offset; | ||
| 334 | int mask; | ||
| 335 | int node; | ||
| 336 | |||
| 337 | if (!data) | ||
| 338 | return NULL; | ||
| 339 | if (len == 0) | ||
| 340 | return NULL; | ||
| 341 | |||
| 342 | trie = utf8data + data->offset; | ||
| 343 | node = 1; | ||
| 344 | while (node) { | ||
| 345 | offlen = (*trie & OFFLEN) >> OFFLEN_SHIFT; | ||
| 346 | if (*trie & NEXTBYTE) { | ||
| 347 | if (--len == 0) | ||
| 348 | return NULL; | ||
| 349 | s++; | ||
| 350 | } | ||
| 351 | mask = 1 << (*trie & BITNUM); | ||
| 352 | if (*s & mask) { | ||
| 353 | /* Right leg */ | ||
| 354 | if (offlen) { | ||
| 355 | /* Right node at offset of trie */ | ||
| 356 | node = (*trie & RIGHTNODE); | ||
| 357 | offset = trie[offlen]; | ||
| 358 | while (--offlen) { | ||
| 359 | offset <<= 8; | ||
| 360 | offset |= trie[offlen]; | ||
| 361 | } | ||
| 362 | trie += offset; | ||
| 363 | } else if (*trie & RIGHTPATH) { | ||
| 364 | /* Right node after this node */ | ||
| 365 | node = (*trie & TRIENODE); | ||
| 366 | trie++; | ||
| 367 | } else { | ||
| 368 | /* No right node. */ | ||
| 369 | return NULL; | ||
| 370 | } | ||
| 371 | } else { | ||
| 372 | /* Left leg */ | ||
| 373 | if (offlen) { | ||
| 374 | /* Left node after this node. */ | ||
| 375 | node = (*trie & LEFTNODE); | ||
| 376 | trie += offlen + 1; | ||
| 377 | } else if (*trie & RIGHTPATH) { | ||
| 378 | /* No left node. */ | ||
| 379 | return NULL; | ||
| 380 | } else { | ||
| 381 | /* Left node after this node */ | ||
| 382 | node = (*trie & TRIENODE); | ||
| 383 | trie++; | ||
| 384 | } | ||
| 385 | } | ||
| 386 | } | ||
| 387 | /* | ||
| 388 | * Hangul decomposition is done algorithmically. These are the | ||
| 389 | * codepoints >= 0xAC00 and <= 0xD7A3. Their UTF-8 encoding is | ||
| 390 | * always 3 bytes long, so s has been advanced twice, and the | ||
| 391 | * start of the sequence is at s-2. | ||
| 392 | */ | ||
| 393 | if (LEAF_CCC(trie) == DECOMPOSE && LEAF_STR(trie)[0] == HANGUL) | ||
| 394 | trie = utf8hangul(s - 2, hangul); | ||
| 395 | return trie; | ||
| 396 | } | ||
| 397 | |||
| 398 | /* | ||
| 399 | * Use trie to scan s. | ||
| 400 | * Returns the leaf if one exists, NULL otherwise. | ||
| 401 | * | ||
| 402 | * Forwards to utf8nlookup(). | ||
| 403 | */ | ||
| 404 | static utf8leaf_t *utf8lookup(const struct utf8data *data, | ||
| 405 | unsigned char *hangul, const char *s) | ||
| 406 | { | ||
| 407 | return utf8nlookup(data, hangul, s, (size_t)-1); | ||
| 408 | } | ||
| 409 | |||
| 410 | /* | ||
| 411 | * Maximum age of any character in s. | ||
| 412 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 413 | * Return 0 if only non-assigned code points are used. | ||
| 414 | */ | ||
| 415 | int utf8agemax(const struct utf8data *data, const char *s) | ||
| 416 | { | ||
| 417 | utf8leaf_t *leaf; | ||
| 418 | int age = 0; | ||
| 419 | int leaf_age; | ||
| 420 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 421 | |||
| 422 | if (!data) | ||
| 423 | return -1; | ||
| 424 | |||
| 425 | while (*s) { | ||
| 426 | leaf = utf8lookup(data, hangul, s); | ||
| 427 | if (!leaf) | ||
| 428 | return -1; | ||
| 429 | |||
| 430 | leaf_age = utf8agetab[LEAF_GEN(leaf)]; | ||
| 431 | if (leaf_age <= data->maxage && leaf_age > age) | ||
| 432 | age = leaf_age; | ||
| 433 | s += utf8clen(s); | ||
| 434 | } | ||
| 435 | return age; | ||
| 436 | } | ||
| 437 | EXPORT_SYMBOL(utf8agemax); | ||
| 438 | |||
| 439 | /* | ||
| 440 | * Minimum age of any character in s. | ||
| 441 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 442 | * Return 0 if non-assigned code points are used. | ||
| 443 | */ | ||
| 444 | int utf8agemin(const struct utf8data *data, const char *s) | ||
| 445 | { | ||
| 446 | utf8leaf_t *leaf; | ||
| 447 | int age; | ||
| 448 | int leaf_age; | ||
| 449 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 450 | |||
| 451 | if (!data) | ||
| 452 | return -1; | ||
| 453 | age = data->maxage; | ||
| 454 | while (*s) { | ||
| 455 | leaf = utf8lookup(data, hangul, s); | ||
| 456 | if (!leaf) | ||
| 457 | return -1; | ||
| 458 | leaf_age = utf8agetab[LEAF_GEN(leaf)]; | ||
| 459 | if (leaf_age <= data->maxage && leaf_age < age) | ||
| 460 | age = leaf_age; | ||
| 461 | s += utf8clen(s); | ||
| 462 | } | ||
| 463 | return age; | ||
| 464 | } | ||
| 465 | EXPORT_SYMBOL(utf8agemin); | ||
| 466 | |||
| 467 | /* | ||
| 468 | * Maximum age of any character in s, touch at most len bytes. | ||
| 469 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 470 | */ | ||
| 471 | int utf8nagemax(const struct utf8data *data, const char *s, size_t len) | ||
| 472 | { | ||
| 473 | utf8leaf_t *leaf; | ||
| 474 | int age = 0; | ||
| 475 | int leaf_age; | ||
| 476 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 477 | |||
| 478 | if (!data) | ||
| 479 | return -1; | ||
| 480 | |||
| 481 | while (len && *s) { | ||
| 482 | leaf = utf8nlookup(data, hangul, s, len); | ||
| 483 | if (!leaf) | ||
| 484 | return -1; | ||
| 485 | leaf_age = utf8agetab[LEAF_GEN(leaf)]; | ||
| 486 | if (leaf_age <= data->maxage && leaf_age > age) | ||
| 487 | age = leaf_age; | ||
| 488 | len -= utf8clen(s); | ||
| 489 | s += utf8clen(s); | ||
| 490 | } | ||
| 491 | return age; | ||
| 492 | } | ||
| 493 | EXPORT_SYMBOL(utf8nagemax); | ||
| 494 | |||
| 495 | /* | ||
| 496 | * Maximum age of any character in s, touch at most len bytes. | ||
| 497 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 498 | */ | ||
| 499 | int utf8nagemin(const struct utf8data *data, const char *s, size_t len) | ||
| 500 | { | ||
| 501 | utf8leaf_t *leaf; | ||
| 502 | int leaf_age; | ||
| 503 | int age; | ||
| 504 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 505 | |||
| 506 | if (!data) | ||
| 507 | return -1; | ||
| 508 | age = data->maxage; | ||
| 509 | while (len && *s) { | ||
| 510 | leaf = utf8nlookup(data, hangul, s, len); | ||
| 511 | if (!leaf) | ||
| 512 | return -1; | ||
| 513 | leaf_age = utf8agetab[LEAF_GEN(leaf)]; | ||
| 514 | if (leaf_age <= data->maxage && leaf_age < age) | ||
| 515 | age = leaf_age; | ||
| 516 | len -= utf8clen(s); | ||
| 517 | s += utf8clen(s); | ||
| 518 | } | ||
| 519 | return age; | ||
| 520 | } | ||
| 521 | EXPORT_SYMBOL(utf8nagemin); | ||
| 522 | |||
| 523 | /* | ||
| 524 | * Length of the normalization of s. | ||
| 525 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 526 | * | ||
| 527 | * A string of Default_Ignorable_Code_Point has length 0. | ||
| 528 | */ | ||
| 529 | ssize_t utf8len(const struct utf8data *data, const char *s) | ||
| 530 | { | ||
| 531 | utf8leaf_t *leaf; | ||
| 532 | size_t ret = 0; | ||
| 533 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 534 | |||
| 535 | if (!data) | ||
| 536 | return -1; | ||
| 537 | while (*s) { | ||
| 538 | leaf = utf8lookup(data, hangul, s); | ||
| 539 | if (!leaf) | ||
| 540 | return -1; | ||
| 541 | if (utf8agetab[LEAF_GEN(leaf)] > data->maxage) | ||
| 542 | ret += utf8clen(s); | ||
| 543 | else if (LEAF_CCC(leaf) == DECOMPOSE) | ||
| 544 | ret += strlen(LEAF_STR(leaf)); | ||
| 545 | else | ||
| 546 | ret += utf8clen(s); | ||
| 547 | s += utf8clen(s); | ||
| 548 | } | ||
| 549 | return ret; | ||
| 550 | } | ||
| 551 | EXPORT_SYMBOL(utf8len); | ||
| 552 | |||
| 553 | /* | ||
| 554 | * Length of the normalization of s, touch at most len bytes. | ||
| 555 | * Return -1 if s is not valid UTF-8 unicode. | ||
| 556 | */ | ||
| 557 | ssize_t utf8nlen(const struct utf8data *data, const char *s, size_t len) | ||
| 558 | { | ||
| 559 | utf8leaf_t *leaf; | ||
| 560 | size_t ret = 0; | ||
| 561 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 562 | |||
| 563 | if (!data) | ||
| 564 | return -1; | ||
| 565 | while (len && *s) { | ||
| 566 | leaf = utf8nlookup(data, hangul, s, len); | ||
| 567 | if (!leaf) | ||
| 568 | return -1; | ||
| 569 | if (utf8agetab[LEAF_GEN(leaf)] > data->maxage) | ||
| 570 | ret += utf8clen(s); | ||
| 571 | else if (LEAF_CCC(leaf) == DECOMPOSE) | ||
| 572 | ret += strlen(LEAF_STR(leaf)); | ||
| 573 | else | ||
| 574 | ret += utf8clen(s); | ||
| 575 | len -= utf8clen(s); | ||
| 576 | s += utf8clen(s); | ||
| 577 | } | ||
| 578 | return ret; | ||
| 579 | } | ||
| 580 | EXPORT_SYMBOL(utf8nlen); | ||
| 581 | |||
| 582 | /* | ||
| 583 | * Set up an utf8cursor for use by utf8byte(). | ||
| 584 | * | ||
| 585 | * u8c : pointer to cursor. | ||
| 586 | * data : const struct utf8data to use for normalization. | ||
| 587 | * s : string. | ||
| 588 | * len : length of s. | ||
| 589 | * | ||
| 590 | * Returns -1 on error, 0 on success. | ||
| 591 | */ | ||
| 592 | int utf8ncursor(struct utf8cursor *u8c, const struct utf8data *data, | ||
| 593 | const char *s, size_t len) | ||
| 594 | { | ||
| 595 | if (!data) | ||
| 596 | return -1; | ||
| 597 | if (!s) | ||
| 598 | return -1; | ||
| 599 | u8c->data = data; | ||
| 600 | u8c->s = s; | ||
| 601 | u8c->p = NULL; | ||
| 602 | u8c->ss = NULL; | ||
| 603 | u8c->sp = NULL; | ||
| 604 | u8c->len = len; | ||
| 605 | u8c->slen = 0; | ||
| 606 | u8c->ccc = STOPPER; | ||
| 607 | u8c->nccc = STOPPER; | ||
| 608 | /* Check we didn't clobber the maximum length. */ | ||
| 609 | if (u8c->len != len) | ||
| 610 | return -1; | ||
| 611 | /* The first byte of s may not be an utf8 continuation. */ | ||
| 612 | if (len > 0 && (*s & 0xC0) == 0x80) | ||
| 613 | return -1; | ||
| 614 | return 0; | ||
| 615 | } | ||
| 616 | EXPORT_SYMBOL(utf8ncursor); | ||
| 617 | |||
| 618 | /* | ||
| 619 | * Set up an utf8cursor for use by utf8byte(). | ||
| 620 | * | ||
| 621 | * u8c : pointer to cursor. | ||
| 622 | * data : const struct utf8data to use for normalization. | ||
| 623 | * s : NUL-terminated string. | ||
| 624 | * | ||
| 625 | * Returns -1 on error, 0 on success. | ||
| 626 | */ | ||
| 627 | int utf8cursor(struct utf8cursor *u8c, const struct utf8data *data, | ||
| 628 | const char *s) | ||
| 629 | { | ||
| 630 | return utf8ncursor(u8c, data, s, (unsigned int)-1); | ||
| 631 | } | ||
| 632 | EXPORT_SYMBOL(utf8cursor); | ||
| 633 | |||
| 634 | /* | ||
| 635 | * Get one byte from the normalized form of the string described by u8c. | ||
| 636 | * | ||
| 637 | * Returns the byte cast to an unsigned char on succes, and -1 on failure. | ||
| 638 | * | ||
| 639 | * The cursor keeps track of the location in the string in u8c->s. | ||
| 640 | * When a character is decomposed, the current location is stored in | ||
| 641 | * u8c->p, and u8c->s is set to the start of the decomposition. Note | ||
| 642 | * that bytes from a decomposition do not count against u8c->len. | ||
| 643 | * | ||
| 644 | * Characters are emitted if they match the current CCC in u8c->ccc. | ||
| 645 | * Hitting end-of-string while u8c->ccc == STOPPER means we're done, | ||
| 646 | * and the function returns 0 in that case. | ||
| 647 | * | ||
| 648 | * Sorting by CCC is done by repeatedly scanning the string. The | ||
| 649 | * values of u8c->s and u8c->p are stored in u8c->ss and u8c->sp at | ||
| 650 | * the start of the scan. The first pass finds the lowest CCC to be | ||
| 651 | * emitted and stores it in u8c->nccc, the second pass emits the | ||
| 652 | * characters with this CCC and finds the next lowest CCC. This limits | ||
| 653 | * the number of passes to 1 + the number of different CCCs in the | ||
| 654 | * sequence being scanned. | ||
| 655 | * | ||
| 656 | * Therefore: | ||
| 657 | * u8c->p != NULL -> a decomposition is being scanned. | ||
| 658 | * u8c->ss != NULL -> this is a repeating scan. | ||
| 659 | * u8c->ccc == -1 -> this is the first scan of a repeating scan. | ||
| 660 | */ | ||
| 661 | int utf8byte(struct utf8cursor *u8c) | ||
| 662 | { | ||
| 663 | utf8leaf_t *leaf; | ||
| 664 | int ccc; | ||
| 665 | |||
| 666 | for (;;) { | ||
| 667 | /* Check for the end of a decomposed character. */ | ||
| 668 | if (u8c->p && *u8c->s == '\0') { | ||
| 669 | u8c->s = u8c->p; | ||
| 670 | u8c->p = NULL; | ||
| 671 | } | ||
| 672 | |||
| 673 | /* Check for end-of-string. */ | ||
| 674 | if (!u8c->p && (u8c->len == 0 || *u8c->s == '\0')) { | ||
| 675 | /* There is no next byte. */ | ||
| 676 | if (u8c->ccc == STOPPER) | ||
| 677 | return 0; | ||
| 678 | /* End-of-string during a scan counts as a stopper. */ | ||
| 679 | ccc = STOPPER; | ||
| 680 | goto ccc_mismatch; | ||
| 681 | } else if ((*u8c->s & 0xC0) == 0x80) { | ||
| 682 | /* This is a continuation of the current character. */ | ||
| 683 | if (!u8c->p) | ||
| 684 | u8c->len--; | ||
| 685 | return (unsigned char)*u8c->s++; | ||
| 686 | } | ||
| 687 | |||
| 688 | /* Look up the data for the current character. */ | ||
| 689 | if (u8c->p) { | ||
| 690 | leaf = utf8lookup(u8c->data, u8c->hangul, u8c->s); | ||
| 691 | } else { | ||
| 692 | leaf = utf8nlookup(u8c->data, u8c->hangul, | ||
| 693 | u8c->s, u8c->len); | ||
| 694 | } | ||
| 695 | |||
| 696 | /* No leaf found implies that the input is a binary blob. */ | ||
| 697 | if (!leaf) | ||
| 698 | return -1; | ||
| 699 | |||
| 700 | ccc = LEAF_CCC(leaf); | ||
| 701 | /* Characters that are too new have CCC 0. */ | ||
| 702 | if (utf8agetab[LEAF_GEN(leaf)] > u8c->data->maxage) { | ||
| 703 | ccc = STOPPER; | ||
| 704 | } else if (ccc == DECOMPOSE) { | ||
| 705 | u8c->len -= utf8clen(u8c->s); | ||
| 706 | u8c->p = u8c->s + utf8clen(u8c->s); | ||
| 707 | u8c->s = LEAF_STR(leaf); | ||
| 708 | /* Empty decomposition implies CCC 0. */ | ||
| 709 | if (*u8c->s == '\0') { | ||
| 710 | if (u8c->ccc == STOPPER) | ||
| 711 | continue; | ||
| 712 | ccc = STOPPER; | ||
| 713 | goto ccc_mismatch; | ||
| 714 | } | ||
| 715 | |||
| 716 | leaf = utf8lookup(u8c->data, u8c->hangul, u8c->s); | ||
| 717 | ccc = LEAF_CCC(leaf); | ||
| 718 | } | ||
| 719 | |||
| 720 | /* | ||
| 721 | * If this is not a stopper, then see if it updates | ||
| 722 | * the next canonical class to be emitted. | ||
| 723 | */ | ||
| 724 | if (ccc != STOPPER && u8c->ccc < ccc && ccc < u8c->nccc) | ||
| 725 | u8c->nccc = ccc; | ||
| 726 | |||
| 727 | /* | ||
| 728 | * Return the current byte if this is the current | ||
| 729 | * combining class. | ||
| 730 | */ | ||
| 731 | if (ccc == u8c->ccc) { | ||
| 732 | if (!u8c->p) | ||
| 733 | u8c->len--; | ||
| 734 | return (unsigned char)*u8c->s++; | ||
| 735 | } | ||
| 736 | |||
| 737 | /* Current combining class mismatch. */ | ||
| 738 | ccc_mismatch: | ||
| 739 | if (u8c->nccc == STOPPER) { | ||
| 740 | /* | ||
| 741 | * Scan forward for the first canonical class | ||
| 742 | * to be emitted. Save the position from | ||
| 743 | * which to restart. | ||
| 744 | */ | ||
| 745 | u8c->ccc = MINCCC - 1; | ||
| 746 | u8c->nccc = ccc; | ||
| 747 | u8c->sp = u8c->p; | ||
| 748 | u8c->ss = u8c->s; | ||
| 749 | u8c->slen = u8c->len; | ||
| 750 | if (!u8c->p) | ||
| 751 | u8c->len -= utf8clen(u8c->s); | ||
| 752 | u8c->s += utf8clen(u8c->s); | ||
| 753 | } else if (ccc != STOPPER) { | ||
| 754 | /* Not a stopper, and not the ccc we're emitting. */ | ||
| 755 | if (!u8c->p) | ||
| 756 | u8c->len -= utf8clen(u8c->s); | ||
| 757 | u8c->s += utf8clen(u8c->s); | ||
| 758 | } else if (u8c->nccc != MAXCCC + 1) { | ||
| 759 | /* At a stopper, restart for next ccc. */ | ||
| 760 | u8c->ccc = u8c->nccc; | ||
| 761 | u8c->nccc = MAXCCC + 1; | ||
| 762 | u8c->s = u8c->ss; | ||
| 763 | u8c->p = u8c->sp; | ||
| 764 | u8c->len = u8c->slen; | ||
| 765 | } else { | ||
| 766 | /* All done, proceed from here. */ | ||
| 767 | u8c->ccc = STOPPER; | ||
| 768 | u8c->nccc = STOPPER; | ||
| 769 | u8c->sp = NULL; | ||
| 770 | u8c->ss = NULL; | ||
| 771 | u8c->slen = 0; | ||
| 772 | } | ||
| 773 | } | ||
| 774 | } | ||
| 775 | EXPORT_SYMBOL(utf8byte); | ||
| 776 | |||
| 777 | const struct utf8data *utf8nfdi(unsigned int maxage) | ||
| 778 | { | ||
| 779 | int i = ARRAY_SIZE(utf8nfdidata) - 1; | ||
| 780 | |||
| 781 | while (maxage < utf8nfdidata[i].maxage) | ||
| 782 | i--; | ||
| 783 | if (maxage > utf8nfdidata[i].maxage) | ||
| 784 | return NULL; | ||
| 785 | return &utf8nfdidata[i]; | ||
| 786 | } | ||
| 787 | EXPORT_SYMBOL(utf8nfdi); | ||
| 788 | |||
| 789 | const struct utf8data *utf8nfdicf(unsigned int maxage) | ||
| 790 | { | ||
| 791 | int i = ARRAY_SIZE(utf8nfdicfdata) - 1; | ||
| 792 | |||
| 793 | while (maxage < utf8nfdicfdata[i].maxage) | ||
| 794 | i--; | ||
| 795 | if (maxage > utf8nfdicfdata[i].maxage) | ||
| 796 | return NULL; | ||
| 797 | return &utf8nfdicfdata[i]; | ||
| 798 | } | ||
| 799 | EXPORT_SYMBOL(utf8nfdicf); | ||
diff --git a/fs/unicode/utf8-selftest.c b/fs/unicode/utf8-selftest.c new file mode 100644 index 000000000000..80752013fce0 --- /dev/null +++ b/fs/unicode/utf8-selftest.c | |||
| @@ -0,0 +1,320 @@ | |||
| 1 | /* | ||
| 2 | * Kernel module for testing utf-8 support. | ||
| 3 | * | ||
| 4 | * Copyright 2017 Collabora Ltd. | ||
| 5 | * | ||
| 6 | * This software is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2, as published by the Free Software Foundation, and | ||
| 8 | * may be copied, distributed, and modified under those terms. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
| 17 | |||
| 18 | #include <linux/module.h> | ||
| 19 | #include <linux/printk.h> | ||
| 20 | #include <linux/unicode.h> | ||
| 21 | #include <linux/dcache.h> | ||
| 22 | |||
| 23 | #include "utf8n.h" | ||
| 24 | |||
| 25 | unsigned int failed_tests; | ||
| 26 | unsigned int total_tests; | ||
| 27 | |||
| 28 | /* Tests will be based on this version. */ | ||
| 29 | #define latest_maj 12 | ||
| 30 | #define latest_min 1 | ||
| 31 | #define latest_rev 0 | ||
| 32 | |||
| 33 | #define _test(cond, func, line, fmt, ...) do { \ | ||
| 34 | total_tests++; \ | ||
| 35 | if (!cond) { \ | ||
| 36 | failed_tests++; \ | ||
| 37 | pr_err("test %s:%d Failed: %s%s", \ | ||
| 38 | func, line, #cond, (fmt?":":".")); \ | ||
| 39 | if (fmt) \ | ||
| 40 | pr_err(fmt, ##__VA_ARGS__); \ | ||
| 41 | } \ | ||
| 42 | } while (0) | ||
| 43 | #define test_f(cond, fmt, ...) _test(cond, __func__, __LINE__, fmt, ##__VA_ARGS__) | ||
| 44 | #define test(cond) _test(cond, __func__, __LINE__, "") | ||
| 45 | |||
| 46 | const static struct { | ||
| 47 | /* UTF-8 strings in this vector _must_ be NULL-terminated. */ | ||
| 48 | unsigned char str[10]; | ||
| 49 | unsigned char dec[10]; | ||
| 50 | } nfdi_test_data[] = { | ||
| 51 | /* Trivial sequence */ | ||
| 52 | { | ||
| 53 | /* "ABba" decomposes to itself */ | ||
| 54 | .str = "aBba", | ||
| 55 | .dec = "aBba", | ||
| 56 | }, | ||
| 57 | /* Simple equivalent sequences */ | ||
| 58 | { | ||
| 59 | /* 'VULGAR FRACTION ONE QUARTER' cannot decompose to | ||
| 60 | 'NUMBER 1' + 'FRACTION SLASH' + 'NUMBER 4' on | ||
| 61 | canonical decomposition */ | ||
| 62 | .str = {0xc2, 0xbc, 0x00}, | ||
| 63 | .dec = {0xc2, 0xbc, 0x00}, | ||
| 64 | }, | ||
| 65 | { | ||
| 66 | /* 'LATIN SMALL LETTER A WITH DIAERESIS' decomposes to | ||
| 67 | 'LETTER A' + 'COMBINING DIAERESIS' */ | ||
| 68 | .str = {0xc3, 0xa4, 0x00}, | ||
| 69 | .dec = {0x61, 0xcc, 0x88, 0x00}, | ||
| 70 | }, | ||
| 71 | { | ||
| 72 | /* 'LATIN SMALL LETTER LJ' can't decompose to | ||
| 73 | 'LETTER L' + 'LETTER J' on canonical decomposition */ | ||
| 74 | .str = {0xC7, 0x89, 0x00}, | ||
| 75 | .dec = {0xC7, 0x89, 0x00}, | ||
| 76 | }, | ||
| 77 | { | ||
| 78 | /* GREEK ANO TELEIA decomposes to MIDDLE DOT */ | ||
| 79 | .str = {0xCE, 0x87, 0x00}, | ||
| 80 | .dec = {0xC2, 0xB7, 0x00} | ||
| 81 | }, | ||
| 82 | /* Canonical ordering */ | ||
| 83 | { | ||
| 84 | /* A + 'COMBINING ACUTE ACCENT' + 'COMBINING OGONEK' decomposes | ||
| 85 | to A + 'COMBINING OGONEK' + 'COMBINING ACUTE ACCENT' */ | ||
| 86 | .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0}, | ||
| 87 | .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0}, | ||
| 88 | }, | ||
| 89 | { | ||
| 90 | /* 'LATIN SMALL LETTER A WITH DIAERESIS' + 'COMBINING OGONEK' | ||
| 91 | decomposes to | ||
| 92 | 'LETTER A' + 'COMBINING OGONEK' + 'COMBINING DIAERESIS' */ | ||
| 93 | .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00}, | ||
| 94 | |||
| 95 | .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00}, | ||
| 96 | }, | ||
| 97 | |||
| 98 | }; | ||
| 99 | |||
| 100 | const static struct { | ||
| 101 | /* UTF-8 strings in this vector _must_ be NULL-terminated. */ | ||
| 102 | unsigned char str[30]; | ||
| 103 | unsigned char ncf[30]; | ||
| 104 | } nfdicf_test_data[] = { | ||
| 105 | /* Trivial sequences */ | ||
| 106 | { | ||
| 107 | /* "ABba" folds to lowercase */ | ||
| 108 | .str = {0x41, 0x42, 0x62, 0x61, 0x00}, | ||
| 109 | .ncf = {0x61, 0x62, 0x62, 0x61, 0x00}, | ||
| 110 | }, | ||
| 111 | { | ||
| 112 | /* All ASCII folds to lower-case */ | ||
| 113 | .str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0.1", | ||
| 114 | .ncf = "abcdefghijklmnopqrstuvwxyz0.1", | ||
| 115 | }, | ||
| 116 | { | ||
| 117 | /* LATIN SMALL LETTER SHARP S folds to | ||
| 118 | LATIN SMALL LETTER S + LATIN SMALL LETTER S */ | ||
| 119 | .str = {0xc3, 0x9f, 0x00}, | ||
| 120 | .ncf = {0x73, 0x73, 0x00}, | ||
| 121 | }, | ||
| 122 | { | ||
| 123 | /* LATIN CAPITAL LETTER A WITH RING ABOVE folds to | ||
| 124 | LATIN SMALL LETTER A + COMBINING RING ABOVE */ | ||
| 125 | .str = {0xC3, 0x85, 0x00}, | ||
| 126 | .ncf = {0x61, 0xcc, 0x8a, 0x00}, | ||
| 127 | }, | ||
| 128 | /* Introduced by UTF-8.0.0. */ | ||
| 129 | /* Cherokee letters are interesting test-cases because they fold | ||
| 130 | to upper-case. Before 8.0.0, Cherokee lowercase were | ||
| 131 | undefined, thus, the folding from LC is not stable between | ||
| 132 | 7.0.0 -> 8.0.0, but it is from UC. */ | ||
| 133 | { | ||
| 134 | /* CHEROKEE SMALL LETTER A folds to CHEROKEE LETTER A */ | ||
| 135 | .str = {0xea, 0xad, 0xb0, 0x00}, | ||
| 136 | .ncf = {0xe1, 0x8e, 0xa0, 0x00}, | ||
| 137 | }, | ||
| 138 | { | ||
| 139 | /* CHEROKEE SMALL LETTER YE folds to CHEROKEE LETTER YE */ | ||
| 140 | .str = {0xe1, 0x8f, 0xb8, 0x00}, | ||
| 141 | .ncf = {0xe1, 0x8f, 0xb0, 0x00}, | ||
| 142 | }, | ||
| 143 | { | ||
| 144 | /* OLD HUNGARIAN CAPITAL LETTER AMB folds to | ||
| 145 | OLD HUNGARIAN SMALL LETTER AMB */ | ||
| 146 | .str = {0xf0, 0x90, 0xb2, 0x83, 0x00}, | ||
| 147 | .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00}, | ||
| 148 | }, | ||
| 149 | /* Introduced by UTF-9.0.0. */ | ||
| 150 | { | ||
| 151 | /* OSAGE CAPITAL LETTER CHA folds to | ||
| 152 | OSAGE SMALL LETTER CHA */ | ||
| 153 | .str = {0xf0, 0x90, 0x92, 0xb5, 0x00}, | ||
| 154 | .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00}, | ||
| 155 | }, | ||
| 156 | { | ||
| 157 | /* LATIN CAPITAL LETTER SMALL CAPITAL I folds to | ||
| 158 | LATIN LETTER SMALL CAPITAL I */ | ||
| 159 | .str = {0xea, 0x9e, 0xae, 0x00}, | ||
| 160 | .ncf = {0xc9, 0xaa, 0x00}, | ||
| 161 | }, | ||
| 162 | /* Introduced by UTF-11.0.0. */ | ||
| 163 | { | ||
| 164 | /* GEORGIAN SMALL LETTER AN folds to GEORGIAN MTAVRULI | ||
| 165 | CAPITAL LETTER AN */ | ||
| 166 | .str = {0xe1, 0xb2, 0x90, 0x00}, | ||
| 167 | .ncf = {0xe1, 0x83, 0x90, 0x00}, | ||
| 168 | } | ||
| 169 | }; | ||
| 170 | |||
| 171 | static void check_utf8_nfdi(void) | ||
| 172 | { | ||
| 173 | int i; | ||
| 174 | struct utf8cursor u8c; | ||
| 175 | const struct utf8data *data; | ||
| 176 | |||
| 177 | data = utf8nfdi(UNICODE_AGE(latest_maj, latest_min, latest_rev)); | ||
| 178 | if (!data) { | ||
| 179 | pr_err("%s: Unable to load utf8-%d.%d.%d. Skipping.\n", | ||
| 180 | __func__, latest_maj, latest_min, latest_rev); | ||
| 181 | return; | ||
| 182 | } | ||
| 183 | |||
| 184 | for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { | ||
| 185 | int len = strlen(nfdi_test_data[i].str); | ||
| 186 | int nlen = strlen(nfdi_test_data[i].dec); | ||
| 187 | int j = 0; | ||
| 188 | unsigned char c; | ||
| 189 | |||
| 190 | test((utf8len(data, nfdi_test_data[i].str) == nlen)); | ||
| 191 | test((utf8nlen(data, nfdi_test_data[i].str, len) == nlen)); | ||
| 192 | |||
| 193 | if (utf8cursor(&u8c, data, nfdi_test_data[i].str) < 0) | ||
| 194 | pr_err("can't create cursor\n"); | ||
| 195 | |||
| 196 | while ((c = utf8byte(&u8c)) > 0) { | ||
| 197 | test_f((c == nfdi_test_data[i].dec[j]), | ||
| 198 | "Unexpected byte 0x%x should be 0x%x\n", | ||
| 199 | c, nfdi_test_data[i].dec[j]); | ||
| 200 | j++; | ||
| 201 | } | ||
| 202 | |||
| 203 | test((j == nlen)); | ||
| 204 | } | ||
| 205 | } | ||
| 206 | |||
| 207 | static void check_utf8_nfdicf(void) | ||
| 208 | { | ||
| 209 | int i; | ||
| 210 | struct utf8cursor u8c; | ||
| 211 | const struct utf8data *data; | ||
| 212 | |||
| 213 | data = utf8nfdicf(UNICODE_AGE(latest_maj, latest_min, latest_rev)); | ||
| 214 | if (!data) { | ||
| 215 | pr_err("%s: Unable to load utf8-%d.%d.%d. Skipping.\n", | ||
| 216 | __func__, latest_maj, latest_min, latest_rev); | ||
| 217 | return; | ||
| 218 | } | ||
| 219 | |||
| 220 | for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { | ||
| 221 | int len = strlen(nfdicf_test_data[i].str); | ||
| 222 | int nlen = strlen(nfdicf_test_data[i].ncf); | ||
| 223 | int j = 0; | ||
| 224 | unsigned char c; | ||
| 225 | |||
| 226 | test((utf8len(data, nfdicf_test_data[i].str) == nlen)); | ||
| 227 | test((utf8nlen(data, nfdicf_test_data[i].str, len) == nlen)); | ||
| 228 | |||
| 229 | if (utf8cursor(&u8c, data, nfdicf_test_data[i].str) < 0) | ||
| 230 | pr_err("can't create cursor\n"); | ||
| 231 | |||
| 232 | while ((c = utf8byte(&u8c)) > 0) { | ||
| 233 | test_f((c == nfdicf_test_data[i].ncf[j]), | ||
| 234 | "Unexpected byte 0x%x should be 0x%x\n", | ||
| 235 | c, nfdicf_test_data[i].ncf[j]); | ||
| 236 | j++; | ||
| 237 | } | ||
| 238 | |||
| 239 | test((j == nlen)); | ||
| 240 | } | ||
| 241 | } | ||
| 242 | |||
| 243 | static void check_utf8_comparisons(void) | ||
| 244 | { | ||
| 245 | int i; | ||
| 246 | struct unicode_map *table = utf8_load("12.1.0"); | ||
| 247 | |||
| 248 | if (IS_ERR(table)) { | ||
| 249 | pr_err("%s: Unable to load utf8 %d.%d.%d. Skipping.\n", | ||
| 250 | __func__, latest_maj, latest_min, latest_rev); | ||
| 251 | return; | ||
| 252 | } | ||
| 253 | |||
| 254 | for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { | ||
| 255 | const struct qstr s1 = {.name = nfdi_test_data[i].str, | ||
| 256 | .len = sizeof(nfdi_test_data[i].str)}; | ||
| 257 | const struct qstr s2 = {.name = nfdi_test_data[i].dec, | ||
| 258 | .len = sizeof(nfdi_test_data[i].dec)}; | ||
| 259 | |||
| 260 | test_f(!utf8_strncmp(table, &s1, &s2), | ||
| 261 | "%s %s comparison mismatch\n", s1.name, s2.name); | ||
| 262 | } | ||
| 263 | |||
| 264 | for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { | ||
| 265 | const struct qstr s1 = {.name = nfdicf_test_data[i].str, | ||
| 266 | .len = sizeof(nfdicf_test_data[i].str)}; | ||
| 267 | const struct qstr s2 = {.name = nfdicf_test_data[i].ncf, | ||
| 268 | .len = sizeof(nfdicf_test_data[i].ncf)}; | ||
| 269 | |||
| 270 | test_f(!utf8_strncasecmp(table, &s1, &s2), | ||
| 271 | "%s %s comparison mismatch\n", s1.name, s2.name); | ||
| 272 | } | ||
| 273 | |||
| 274 | utf8_unload(table); | ||
| 275 | } | ||
| 276 | |||
| 277 | static void check_supported_versions(void) | ||
| 278 | { | ||
| 279 | /* Unicode 7.0.0 should be supported. */ | ||
| 280 | test(utf8version_is_supported(7, 0, 0)); | ||
| 281 | |||
| 282 | /* Unicode 9.0.0 should be supported. */ | ||
| 283 | test(utf8version_is_supported(9, 0, 0)); | ||
| 284 | |||
| 285 | /* Unicode 1x.0.0 (the latest version) should be supported. */ | ||
| 286 | test(utf8version_is_supported(latest_maj, latest_min, latest_rev)); | ||
| 287 | |||
| 288 | /* Next versions don't exist. */ | ||
| 289 | test(!utf8version_is_supported(13, 0, 0)); | ||
| 290 | test(!utf8version_is_supported(0, 0, 0)); | ||
| 291 | test(!utf8version_is_supported(-1, -1, -1)); | ||
| 292 | } | ||
| 293 | |||
| 294 | static int __init init_test_ucd(void) | ||
| 295 | { | ||
| 296 | failed_tests = 0; | ||
| 297 | total_tests = 0; | ||
| 298 | |||
| 299 | check_supported_versions(); | ||
| 300 | check_utf8_nfdi(); | ||
| 301 | check_utf8_nfdicf(); | ||
| 302 | check_utf8_comparisons(); | ||
| 303 | |||
| 304 | if (!failed_tests) | ||
| 305 | pr_info("All %u tests passed\n", total_tests); | ||
| 306 | else | ||
| 307 | pr_err("%u out of %u tests failed\n", failed_tests, | ||
| 308 | total_tests); | ||
| 309 | return 0; | ||
| 310 | } | ||
| 311 | |||
| 312 | static void __exit exit_test_ucd(void) | ||
| 313 | { | ||
| 314 | } | ||
| 315 | |||
| 316 | module_init(init_test_ucd); | ||
| 317 | module_exit(exit_test_ucd); | ||
| 318 | |||
| 319 | MODULE_AUTHOR("Gabriel Krisman Bertazi <krisman@collabora.co.uk>"); | ||
| 320 | MODULE_LICENSE("GPL"); | ||
diff --git a/fs/unicode/utf8data.h_shipped b/fs/unicode/utf8data.h_shipped new file mode 100644 index 000000000000..76e4f0e1b089 --- /dev/null +++ b/fs/unicode/utf8data.h_shipped | |||
| @@ -0,0 +1,4109 @@ | |||
| 1 | /* This file is generated code, do not edit. */ | ||
| 2 | #ifndef __INCLUDED_FROM_UTF8NORM_C__ | ||
| 3 | #error Only nls_utf8-norm.c should include this file. | ||
| 4 | #endif | ||
| 5 | |||
| 6 | static const unsigned int utf8vers = 0xc0100; | ||
| 7 | |||
| 8 | static const unsigned int utf8agetab[] = { | ||
| 9 | 0, | ||
| 10 | 0x10100, | ||
| 11 | 0x20000, | ||
| 12 | 0x20100, | ||
| 13 | 0x30000, | ||
| 14 | 0x30100, | ||
| 15 | 0x30200, | ||
| 16 | 0x40000, | ||
| 17 | 0x40100, | ||
| 18 | 0x50000, | ||
| 19 | 0x50100, | ||
| 20 | 0x50200, | ||
| 21 | 0x60000, | ||
| 22 | 0x60100, | ||
| 23 | 0x60200, | ||
| 24 | 0x60300, | ||
| 25 | 0x70000, | ||
| 26 | 0x80000, | ||
| 27 | 0x90000, | ||
| 28 | 0xa0000, | ||
| 29 | 0xb0000, | ||
| 30 | 0xc0000, | ||
| 31 | 0xc0100 | ||
| 32 | }; | ||
| 33 | |||
| 34 | static const struct utf8data utf8nfdicfdata[] = { | ||
| 35 | { 0, 0 }, | ||
| 36 | { 0x10100, 0 }, | ||
| 37 | { 0x20000, 0 }, | ||
| 38 | { 0x20100, 0 }, | ||
| 39 | { 0x30000, 0 }, | ||
| 40 | { 0x30100, 0 }, | ||
| 41 | { 0x30200, 1792 }, | ||
| 42 | { 0x40000, 3200 }, | ||
| 43 | { 0x40100, 3200 }, | ||
| 44 | { 0x50000, 3200 }, | ||
| 45 | { 0x50100, 3200 }, | ||
| 46 | { 0x50200, 3200 }, | ||
| 47 | { 0x60000, 3200 }, | ||
| 48 | { 0x60100, 3200 }, | ||
| 49 | { 0x60200, 3200 }, | ||
| 50 | { 0x60300, 3200 }, | ||
| 51 | { 0x70000, 3200 }, | ||
| 52 | { 0x80000, 3200 }, | ||
| 53 | { 0x90000, 3200 }, | ||
| 54 | { 0xa0000, 3200 }, | ||
| 55 | { 0xb0000, 3200 }, | ||
| 56 | { 0xc0000, 3200 }, | ||
| 57 | { 0xc0100, 3200 } | ||
| 58 | }; | ||
| 59 | |||
| 60 | static const struct utf8data utf8nfdidata[] = { | ||
| 61 | { 0, 896 }, | ||
| 62 | { 0x10100, 896 }, | ||
| 63 | { 0x20000, 896 }, | ||
| 64 | { 0x20100, 896 }, | ||
| 65 | { 0x30000, 896 }, | ||
| 66 | { 0x30100, 896 }, | ||
| 67 | { 0x30200, 2496 }, | ||
| 68 | { 0x40000, 20736 }, | ||
| 69 | { 0x40100, 20736 }, | ||
| 70 | { 0x50000, 20736 }, | ||
| 71 | { 0x50100, 20736 }, | ||
| 72 | { 0x50200, 20736 }, | ||
| 73 | { 0x60000, 20736 }, | ||
| 74 | { 0x60100, 20736 }, | ||
| 75 | { 0x60200, 20736 }, | ||
| 76 | { 0x60300, 20736 }, | ||
| 77 | { 0x70000, 20736 }, | ||
| 78 | { 0x80000, 20736 }, | ||
| 79 | { 0x90000, 20736 }, | ||
| 80 | { 0xa0000, 20736 }, | ||
| 81 | { 0xb0000, 20736 }, | ||
| 82 | { 0xc0000, 20736 }, | ||
| 83 | { 0xc0100, 20736 } | ||
| 84 | }; | ||
| 85 | |||
| 86 | static const unsigned char utf8data[64256] = { | ||
| 87 | /* nfdicf_30100 */ | ||
| 88 | 0xd7,0x07,0x66,0x84,0x0c,0x01,0x00,0xc6,0xd5,0x16,0xe4,0x99,0x1a,0xe3,0x63,0x15, | ||
| 89 | 0xe2,0x4c,0x0e,0xc1,0xe0,0x4e,0x0d,0xcf,0x86,0x65,0x2d,0x0d,0x01,0x00,0xd4,0xb8, | ||
| 90 | 0xd3,0x27,0xe2,0x89,0xa3,0xe1,0xce,0x35,0xe0,0x2c,0x22,0xcf,0x86,0xc5,0xe4,0x15, | ||
| 91 | 0x6d,0xe3,0x60,0x68,0xe2,0xf6,0x65,0xe1,0x29,0x65,0xe0,0xee,0x64,0xcf,0x86,0xe5, | ||
| 92 | 0xb3,0x64,0x64,0x96,0x64,0x0b,0x00,0xd2,0x0e,0xe1,0xb5,0x3c,0xe0,0xba,0xa3,0xcf, | ||
| 93 | 0x86,0xcf,0x06,0x01,0x00,0xd1,0x0c,0xe0,0x1e,0xa9,0xcf,0x86,0xcf,0x06,0x02,0xff, | ||
| 94 | 0xff,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x01, | ||
| 95 | 0x00,0xe4,0xe1,0x45,0xe3,0x3b,0x45,0xd2,0x06,0xcf,0x06,0x01,0x00,0xe1,0x87,0xad, | ||
| 96 | 0xd0,0x21,0xcf,0x86,0xe5,0x81,0xaa,0xe4,0x00,0xaa,0xe3,0xbf,0xa9,0xe2,0x9e,0xa9, | ||
| 97 | 0xe1,0x8d,0xa9,0x10,0x08,0x01,0xff,0xe8,0xb1,0x88,0x00,0x01,0xff,0xe6,0x9b,0xb4, | ||
| 98 | 0x00,0xcf,0x86,0xe5,0x63,0xac,0xd4,0x19,0xe3,0xa2,0xab,0xe2,0x81,0xab,0xe1,0x70, | ||
| 99 | 0xab,0x10,0x08,0x01,0xff,0xe9,0xb9,0xbf,0x00,0x01,0xff,0xe8,0xab,0x96,0x00,0xe3, | ||
| 100 | 0x09,0xac,0xe2,0xe8,0xab,0xe1,0xd7,0xab,0x10,0x08,0x01,0xff,0xe7,0xb8,0xb7,0x00, | ||
| 101 | 0x01,0xff,0xe9,0x9b,0xbb,0x00,0x83,0xe2,0x19,0xfa,0xe1,0xf2,0xf6,0xe0,0x6f,0xf5, | ||
| 102 | 0xcf,0x86,0xd5,0x31,0xc4,0xe3,0x54,0x4e,0xe2,0xf5,0x4c,0xe1,0xa4,0xcc,0xe0,0x9c, | ||
| 103 | 0x4b,0xcf,0x86,0xe5,0x8e,0x49,0xe4,0xaf,0x46,0xe3,0x11,0xbd,0xe2,0x68,0xbc,0xe1, | ||
| 104 | 0x43,0xbc,0xe0,0x1c,0xbc,0xcf,0x86,0xe5,0xe9,0xbb,0x94,0x07,0x63,0xd4,0xbb,0x07, | ||
| 105 | 0x00,0x07,0x00,0xe4,0xdb,0xf4,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd2,0x0b, | ||
| 106 | 0xe1,0xea,0xe1,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd1,0x0e,0xe0,0xd9,0xe2,0xcf,0x86, | ||
| 107 | 0xe5,0x9e,0xe2,0xcf,0x06,0x11,0x00,0xd0,0x0b,0xcf,0x86,0xe5,0xd9,0xe2,0xcf,0x06, | ||
| 108 | 0x13,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0x74,0xf4,0xe3,0x5d,0xf3, | ||
| 109 | 0xd2,0xa0,0xe1,0x13,0xe7,0xd0,0x21,0xcf,0x86,0xe5,0x14,0xe4,0xe4,0x90,0xe3,0xe3, | ||
| 110 | 0x4e,0xe3,0xe2,0x2d,0xe3,0xe1,0x1b,0xe3,0x10,0x08,0x05,0xff,0xe4,0xb8,0xbd,0x00, | ||
| 111 | 0x05,0xff,0xe4,0xb8,0xb8,0x00,0xcf,0x86,0xd5,0x1c,0xe4,0x70,0xe5,0xe3,0x2f,0xe5, | ||
| 112 | 0xe2,0x0e,0xe5,0xe1,0xfd,0xe4,0x10,0x08,0x05,0xff,0xe5,0x92,0xa2,0x00,0x05,0xff, | ||
| 113 | 0xe5,0x93,0xb6,0x00,0xd4,0x34,0xd3,0x18,0xe2,0xf7,0xe5,0xe1,0xe6,0xe5,0x10,0x09, | ||
| 114 | 0x05,0xff,0xf0,0xa1,0x9a,0xa8,0x00,0x05,0xff,0xf0,0xa1,0x9b,0xaa,0x00,0xe2,0x17, | ||
| 115 | 0xe6,0x91,0x11,0x10,0x09,0x05,0xff,0xf0,0xa1,0x8d,0xaa,0x00,0x05,0xff,0xe5,0xac, | ||
| 116 | 0x88,0x00,0x05,0xff,0xe5,0xac,0xbe,0x00,0xe3,0x5d,0xe6,0xd2,0x14,0xe1,0x2c,0xe6, | ||
| 117 | 0x10,0x08,0x05,0xff,0xe5,0xaf,0xb3,0x00,0x05,0xff,0xf0,0xa1,0xac,0x98,0x00,0xe1, | ||
| 118 | 0x38,0xe6,0x10,0x08,0x05,0xff,0xe5,0xbc,0xb3,0x00,0x05,0xff,0xe5,0xb0,0xa2,0x00, | ||
| 119 | 0xd1,0xd5,0xd0,0x6a,0xcf,0x86,0xe5,0x8d,0xeb,0xd4,0x19,0xe3,0xc6,0xea,0xe2,0xa4, | ||
| 120 | 0xea,0xe1,0x93,0xea,0x10,0x08,0x05,0xff,0xe6,0xb4,0xbe,0x00,0x05,0xff,0xe6,0xb5, | ||
| 121 | 0xb7,0x00,0xd3,0x18,0xe2,0x10,0xeb,0xe1,0xff,0xea,0x10,0x09,0x05,0xff,0xf0,0xa3, | ||
| 122 | 0xbd,0x9e,0x00,0x05,0xff,0xf0,0xa3,0xbe,0x8e,0x00,0xd2,0x13,0xe1,0x28,0xeb,0x10, | ||
| 123 | 0x08,0x05,0xff,0xe7,0x81,0xbd,0x00,0x05,0xff,0xe7,0x81,0xb7,0x00,0xd1,0x11,0x10, | ||
| 124 | 0x08,0x05,0xff,0xe7,0x85,0x85,0x00,0x05,0xff,0xf0,0xa4,0x89,0xa3,0x00,0x10,0x08, | ||
| 125 | 0x05,0xff,0xe7,0x86,0x9c,0x00,0x05,0xff,0xe4,0x8e,0xab,0x00,0xcf,0x86,0xe5,0x2a, | ||
| 126 | 0xed,0xd4,0x1a,0xe3,0x62,0xec,0xe2,0x48,0xec,0xe1,0x35,0xec,0x10,0x08,0x05,0xff, | ||
| 127 | 0xe7,0x9b,0xb4,0x00,0x05,0xff,0xf0,0xa5,0x83,0xb3,0x00,0xd3,0x16,0xe2,0xaa,0xec, | ||
| 128 | 0xe1,0x98,0xec,0x10,0x08,0x05,0xff,0xe7,0xa3,0x8c,0x00,0x05,0xff,0xe4,0x83,0xa3, | ||
| 129 | 0x00,0xd2,0x13,0xe1,0xc6,0xec,0x10,0x08,0x05,0xff,0xe4,0x84,0xaf,0x00,0x05,0xff, | ||
| 130 | 0xe7,0xa9,0x80,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0xa5,0xbc,0x00,0x05, | ||
| 131 | 0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x05, | ||
| 132 | 0xff,0xe7,0xaa,0xae,0x00,0xe0,0xdc,0xef,0xcf,0x86,0xd5,0x1d,0xe4,0x51,0xee,0xe3, | ||
| 133 | 0x0d,0xee,0xe2,0xeb,0xed,0xe1,0xda,0xed,0x10,0x09,0x05,0xff,0xf0,0xa3,0x8d,0x9f, | ||
| 134 | 0x00,0x05,0xff,0xe4,0x8f,0x95,0x00,0xd4,0x19,0xe3,0xf8,0xee,0xe2,0xd4,0xee,0xe1, | ||
| 135 | 0xc3,0xee,0x10,0x08,0x05,0xff,0xe8,0x8d,0x93,0x00,0x05,0xff,0xe8,0x8f,0x8a,0x00, | ||
| 136 | 0xd3,0x18,0xe2,0x43,0xef,0xe1,0x32,0xef,0x10,0x09,0x05,0xff,0xf0,0xa6,0xbe,0xb1, | ||
| 137 | 0x00,0x05,0xff,0xf0,0xa7,0x83,0x92,0x00,0xd2,0x13,0xe1,0x5b,0xef,0x10,0x08,0x05, | ||
| 138 | 0xff,0xe8,0x9a,0x88,0x00,0x05,0xff,0xe8,0x9c,0x8e,0x00,0xd1,0x10,0x10,0x08,0x05, | ||
| 139 | 0xff,0xe8,0x9c,0xa8,0x00,0x05,0xff,0xe8,0x9d,0xab,0x00,0x10,0x08,0x05,0xff,0xe8, | ||
| 140 | 0x9e,0x86,0x00,0x05,0xff,0xe4,0xb5,0x97,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 141 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 142 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 143 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 144 | /* nfdi_30100 */ | ||
| 145 | 0x57,0x04,0x01,0x00,0xc6,0xd5,0x16,0xe4,0xc2,0x59,0xe3,0xfb,0x54,0xe2,0x74,0x4f, | ||
| 146 | 0xc1,0xe0,0xa0,0x4d,0xcf,0x86,0x65,0x84,0x4d,0x01,0x00,0xd4,0xb8,0xd3,0x27,0xe2, | ||
| 147 | 0x0c,0xa0,0xe1,0xdf,0x8d,0xe0,0x39,0x71,0xcf,0x86,0xc5,0xe4,0x98,0x69,0xe3,0xe3, | ||
| 148 | 0x64,0xe2,0x79,0x62,0xe1,0xac,0x61,0xe0,0x71,0x61,0xcf,0x86,0xe5,0x36,0x61,0x64, | ||
| 149 | 0x19,0x61,0x0b,0x00,0xd2,0x0e,0xe1,0xc2,0xa0,0xe0,0x3d,0xa0,0xcf,0x86,0xcf,0x06, | ||
| 150 | 0x01,0x00,0xd1,0x0c,0xe0,0xa1,0xa5,0xcf,0x86,0xcf,0x06,0x02,0xff,0xff,0xd0,0x08, | ||
| 151 | 0xcf,0x86,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x01,0x00,0xe4,0x9e, | ||
| 152 | 0xb6,0xe3,0x18,0xae,0xd2,0x06,0xcf,0x06,0x01,0x00,0xe1,0x0a,0xaa,0xd0,0x21,0xcf, | ||
| 153 | 0x86,0xe5,0x04,0xa7,0xe4,0x83,0xa6,0xe3,0x42,0xa6,0xe2,0x21,0xa6,0xe1,0x10,0xa6, | ||
| 154 | 0x10,0x08,0x01,0xff,0xe8,0xb1,0x88,0x00,0x01,0xff,0xe6,0x9b,0xb4,0x00,0xcf,0x86, | ||
| 155 | 0xe5,0xe6,0xa8,0xd4,0x19,0xe3,0x25,0xa8,0xe2,0x04,0xa8,0xe1,0xf3,0xa7,0x10,0x08, | ||
| 156 | 0x01,0xff,0xe9,0xb9,0xbf,0x00,0x01,0xff,0xe8,0xab,0x96,0x00,0xe3,0x8c,0xa8,0xe2, | ||
| 157 | 0x6b,0xa8,0xe1,0x5a,0xa8,0x10,0x08,0x01,0xff,0xe7,0xb8,0xb7,0x00,0x01,0xff,0xe9, | ||
| 158 | 0x9b,0xbb,0x00,0x83,0xe2,0x9c,0xf6,0xe1,0x75,0xf3,0xe0,0xf2,0xf1,0xcf,0x86,0xd5, | ||
| 159 | 0x31,0xc4,0xe3,0x6d,0xcc,0xe2,0x46,0xca,0xe1,0x27,0xc9,0xe0,0xb7,0xbf,0xcf,0x86, | ||
| 160 | 0xe5,0xaa,0xbb,0xe4,0xa3,0xba,0xe3,0x94,0xb9,0xe2,0xeb,0xb8,0xe1,0xc6,0xb8,0xe0, | ||
| 161 | 0x9f,0xb8,0xcf,0x86,0xe5,0x6c,0xb8,0x94,0x07,0x63,0x57,0xb8,0x07,0x00,0x07,0x00, | ||
| 162 | 0xe4,0x5e,0xf1,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd2,0x0b,0xe1,0x6d,0xde, | ||
| 163 | 0xcf,0x86,0xcf,0x06,0x05,0x00,0xd1,0x0e,0xe0,0x5c,0xdf,0xcf,0x86,0xe5,0x21,0xdf, | ||
| 164 | 0xcf,0x06,0x11,0x00,0xd0,0x0b,0xcf,0x86,0xe5,0x5c,0xdf,0xcf,0x06,0x13,0x00,0xcf, | ||
| 165 | 0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0xf7,0xf0,0xe3,0xe0,0xef,0xd2,0xa0,0xe1, | ||
| 166 | 0x96,0xe3,0xd0,0x21,0xcf,0x86,0xe5,0x97,0xe0,0xe4,0x13,0xe0,0xe3,0xd1,0xdf,0xe2, | ||
| 167 | 0xb0,0xdf,0xe1,0x9e,0xdf,0x10,0x08,0x05,0xff,0xe4,0xb8,0xbd,0x00,0x05,0xff,0xe4, | ||
| 168 | 0xb8,0xb8,0x00,0xcf,0x86,0xd5,0x1c,0xe4,0xf3,0xe1,0xe3,0xb2,0xe1,0xe2,0x91,0xe1, | ||
| 169 | 0xe1,0x80,0xe1,0x10,0x08,0x05,0xff,0xe5,0x92,0xa2,0x00,0x05,0xff,0xe5,0x93,0xb6, | ||
| 170 | 0x00,0xd4,0x34,0xd3,0x18,0xe2,0x7a,0xe2,0xe1,0x69,0xe2,0x10,0x09,0x05,0xff,0xf0, | ||
| 171 | 0xa1,0x9a,0xa8,0x00,0x05,0xff,0xf0,0xa1,0x9b,0xaa,0x00,0xe2,0x9a,0xe2,0x91,0x11, | ||
| 172 | 0x10,0x09,0x05,0xff,0xf0,0xa1,0x8d,0xaa,0x00,0x05,0xff,0xe5,0xac,0x88,0x00,0x05, | ||
| 173 | 0xff,0xe5,0xac,0xbe,0x00,0xe3,0xe0,0xe2,0xd2,0x14,0xe1,0xaf,0xe2,0x10,0x08,0x05, | ||
| 174 | 0xff,0xe5,0xaf,0xb3,0x00,0x05,0xff,0xf0,0xa1,0xac,0x98,0x00,0xe1,0xbb,0xe2,0x10, | ||
| 175 | 0x08,0x05,0xff,0xe5,0xbc,0xb3,0x00,0x05,0xff,0xe5,0xb0,0xa2,0x00,0xd1,0xd5,0xd0, | ||
| 176 | 0x6a,0xcf,0x86,0xe5,0x10,0xe8,0xd4,0x19,0xe3,0x49,0xe7,0xe2,0x27,0xe7,0xe1,0x16, | ||
| 177 | 0xe7,0x10,0x08,0x05,0xff,0xe6,0xb4,0xbe,0x00,0x05,0xff,0xe6,0xb5,0xb7,0x00,0xd3, | ||
| 178 | 0x18,0xe2,0x93,0xe7,0xe1,0x82,0xe7,0x10,0x09,0x05,0xff,0xf0,0xa3,0xbd,0x9e,0x00, | ||
| 179 | 0x05,0xff,0xf0,0xa3,0xbe,0x8e,0x00,0xd2,0x13,0xe1,0xab,0xe7,0x10,0x08,0x05,0xff, | ||
| 180 | 0xe7,0x81,0xbd,0x00,0x05,0xff,0xe7,0x81,0xb7,0x00,0xd1,0x11,0x10,0x08,0x05,0xff, | ||
| 181 | 0xe7,0x85,0x85,0x00,0x05,0xff,0xf0,0xa4,0x89,0xa3,0x00,0x10,0x08,0x05,0xff,0xe7, | ||
| 182 | 0x86,0x9c,0x00,0x05,0xff,0xe4,0x8e,0xab,0x00,0xcf,0x86,0xe5,0xad,0xe9,0xd4,0x1a, | ||
| 183 | 0xe3,0xe5,0xe8,0xe2,0xcb,0xe8,0xe1,0xb8,0xe8,0x10,0x08,0x05,0xff,0xe7,0x9b,0xb4, | ||
| 184 | 0x00,0x05,0xff,0xf0,0xa5,0x83,0xb3,0x00,0xd3,0x16,0xe2,0x2d,0xe9,0xe1,0x1b,0xe9, | ||
| 185 | 0x10,0x08,0x05,0xff,0xe7,0xa3,0x8c,0x00,0x05,0xff,0xe4,0x83,0xa3,0x00,0xd2,0x13, | ||
| 186 | 0xe1,0x49,0xe9,0x10,0x08,0x05,0xff,0xe4,0x84,0xaf,0x00,0x05,0xff,0xe7,0xa9,0x80, | ||
| 187 | 0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0xa5,0xbc,0x00,0x05,0xff,0xf0,0xa5, | ||
| 188 | 0xaa,0xa7,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x05,0xff,0xe7,0xaa, | ||
| 189 | 0xae,0x00,0xe0,0x5f,0xec,0xcf,0x86,0xd5,0x1d,0xe4,0xd4,0xea,0xe3,0x90,0xea,0xe2, | ||
| 190 | 0x6e,0xea,0xe1,0x5d,0xea,0x10,0x09,0x05,0xff,0xf0,0xa3,0x8d,0x9f,0x00,0x05,0xff, | ||
| 191 | 0xe4,0x8f,0x95,0x00,0xd4,0x19,0xe3,0x7b,0xeb,0xe2,0x57,0xeb,0xe1,0x46,0xeb,0x10, | ||
| 192 | 0x08,0x05,0xff,0xe8,0x8d,0x93,0x00,0x05,0xff,0xe8,0x8f,0x8a,0x00,0xd3,0x18,0xe2, | ||
| 193 | 0xc6,0xeb,0xe1,0xb5,0xeb,0x10,0x09,0x05,0xff,0xf0,0xa6,0xbe,0xb1,0x00,0x05,0xff, | ||
| 194 | 0xf0,0xa7,0x83,0x92,0x00,0xd2,0x13,0xe1,0xde,0xeb,0x10,0x08,0x05,0xff,0xe8,0x9a, | ||
| 195 | 0x88,0x00,0x05,0xff,0xe8,0x9c,0x8e,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x9c, | ||
| 196 | 0xa8,0x00,0x05,0xff,0xe8,0x9d,0xab,0x00,0x10,0x08,0x05,0xff,0xe8,0x9e,0x86,0x00, | ||
| 197 | 0x05,0xff,0xe4,0xb5,0x97,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 198 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 199 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 200 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 201 | /* nfdicf_30200 */ | ||
| 202 | 0xd7,0x07,0x66,0x84,0x05,0x01,0x00,0xc6,0xd5,0x16,0xe4,0x99,0x13,0xe3,0x63,0x0e, | ||
| 203 | 0xe2,0x4c,0x07,0xc1,0xe0,0x4e,0x06,0xcf,0x86,0x65,0x2d,0x06,0x01,0x00,0xd4,0x2a, | ||
| 204 | 0xe3,0xd0,0x35,0xe2,0x88,0x9c,0xe1,0xcd,0x2e,0xe0,0x2b,0x1b,0xcf,0x86,0xc5,0xe4, | ||
| 205 | 0x14,0x66,0xe3,0x5f,0x61,0xe2,0xf5,0x5e,0xe1,0x28,0x5e,0xe0,0xed,0x5d,0xcf,0x86, | ||
| 206 | 0xe5,0xb2,0x5d,0x64,0x95,0x5d,0x0b,0x00,0x83,0xe2,0xa7,0xf3,0xe1,0x80,0xf0,0xe0, | ||
| 207 | 0xfd,0xee,0xcf,0x86,0xd5,0x31,0xc4,0xe3,0xe2,0x47,0xe2,0x83,0x46,0xe1,0x32,0xc6, | ||
| 208 | 0xe0,0x2a,0x45,0xcf,0x86,0xe5,0x1c,0x43,0xe4,0x3d,0x40,0xe3,0x9f,0xb6,0xe2,0xf6, | ||
| 209 | 0xb5,0xe1,0xd1,0xb5,0xe0,0xaa,0xb5,0xcf,0x86,0xe5,0x77,0xb5,0x94,0x07,0x63,0x62, | ||
| 210 | 0xb5,0x07,0x00,0x07,0x00,0xe4,0x69,0xee,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00, | ||
| 211 | 0xd2,0x0b,0xe1,0x78,0xdb,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd1,0x0e,0xe0,0x67,0xdc, | ||
| 212 | 0xcf,0x86,0xe5,0x2c,0xdc,0xcf,0x06,0x11,0x00,0xd0,0x0b,0xcf,0x86,0xe5,0x67,0xdc, | ||
| 213 | 0xcf,0x06,0x13,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0x02,0xee,0xe3, | ||
| 214 | 0xeb,0xec,0xd2,0xa0,0xe1,0xa1,0xe0,0xd0,0x21,0xcf,0x86,0xe5,0xa2,0xdd,0xe4,0x1e, | ||
| 215 | 0xdd,0xe3,0xdc,0xdc,0xe2,0xbb,0xdc,0xe1,0xa9,0xdc,0x10,0x08,0x05,0xff,0xe4,0xb8, | ||
| 216 | 0xbd,0x00,0x05,0xff,0xe4,0xb8,0xb8,0x00,0xcf,0x86,0xd5,0x1c,0xe4,0xfe,0xde,0xe3, | ||
| 217 | 0xbd,0xde,0xe2,0x9c,0xde,0xe1,0x8b,0xde,0x10,0x08,0x05,0xff,0xe5,0x92,0xa2,0x00, | ||
| 218 | 0x05,0xff,0xe5,0x93,0xb6,0x00,0xd4,0x34,0xd3,0x18,0xe2,0x85,0xdf,0xe1,0x74,0xdf, | ||
| 219 | 0x10,0x09,0x05,0xff,0xf0,0xa1,0x9a,0xa8,0x00,0x05,0xff,0xf0,0xa1,0x9b,0xaa,0x00, | ||
| 220 | 0xe2,0xa5,0xdf,0x91,0x11,0x10,0x09,0x05,0xff,0xf0,0xa1,0x8d,0xaa,0x00,0x05,0xff, | ||
| 221 | 0xe5,0xac,0x88,0x00,0x05,0xff,0xe5,0xac,0xbe,0x00,0xe3,0xeb,0xdf,0xd2,0x14,0xe1, | ||
| 222 | 0xba,0xdf,0x10,0x08,0x05,0xff,0xe5,0xaf,0xb3,0x00,0x05,0xff,0xf0,0xa1,0xac,0x98, | ||
| 223 | 0x00,0xe1,0xc6,0xdf,0x10,0x08,0x05,0xff,0xe5,0xbc,0xb3,0x00,0x05,0xff,0xe5,0xb0, | ||
| 224 | 0xa2,0x00,0xd1,0xd5,0xd0,0x6a,0xcf,0x86,0xe5,0x1b,0xe5,0xd4,0x19,0xe3,0x54,0xe4, | ||
| 225 | 0xe2,0x32,0xe4,0xe1,0x21,0xe4,0x10,0x08,0x05,0xff,0xe6,0xb4,0xbe,0x00,0x05,0xff, | ||
| 226 | 0xe6,0xb5,0xb7,0x00,0xd3,0x18,0xe2,0x9e,0xe4,0xe1,0x8d,0xe4,0x10,0x09,0x05,0xff, | ||
| 227 | 0xf0,0xa3,0xbd,0x9e,0x00,0x05,0xff,0xf0,0xa3,0xbe,0x8e,0x00,0xd2,0x13,0xe1,0xb6, | ||
| 228 | 0xe4,0x10,0x08,0x05,0xff,0xe7,0x81,0xbd,0x00,0x05,0xff,0xe7,0x81,0xb7,0x00,0xd1, | ||
| 229 | 0x11,0x10,0x08,0x05,0xff,0xe7,0x85,0x85,0x00,0x05,0xff,0xf0,0xa4,0x89,0xa3,0x00, | ||
| 230 | 0x10,0x08,0x05,0xff,0xe7,0x86,0x9c,0x00,0x05,0xff,0xe4,0x8e,0xab,0x00,0xcf,0x86, | ||
| 231 | 0xe5,0xb8,0xe6,0xd4,0x1a,0xe3,0xf0,0xe5,0xe2,0xd6,0xe5,0xe1,0xc3,0xe5,0x10,0x08, | ||
| 232 | 0x05,0xff,0xe7,0x9b,0xb4,0x00,0x05,0xff,0xf0,0xa5,0x83,0xb3,0x00,0xd3,0x16,0xe2, | ||
| 233 | 0x38,0xe6,0xe1,0x26,0xe6,0x10,0x08,0x05,0xff,0xe7,0xa3,0x8c,0x00,0x05,0xff,0xe4, | ||
| 234 | 0x83,0xa3,0x00,0xd2,0x13,0xe1,0x54,0xe6,0x10,0x08,0x05,0xff,0xe4,0x84,0xaf,0x00, | ||
| 235 | 0x05,0xff,0xe7,0xa9,0x80,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0xa5,0xbc, | ||
| 236 | 0x00,0x05,0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0xaa,0xa7, | ||
| 237 | 0x00,0x05,0xff,0xe7,0xaa,0xae,0x00,0xe0,0x6a,0xe9,0xcf,0x86,0xd5,0x1d,0xe4,0xdf, | ||
| 238 | 0xe7,0xe3,0x9b,0xe7,0xe2,0x79,0xe7,0xe1,0x68,0xe7,0x10,0x09,0x05,0xff,0xf0,0xa3, | ||
| 239 | 0x8d,0x9f,0x00,0x05,0xff,0xe4,0x8f,0x95,0x00,0xd4,0x19,0xe3,0x86,0xe8,0xe2,0x62, | ||
| 240 | 0xe8,0xe1,0x51,0xe8,0x10,0x08,0x05,0xff,0xe8,0x8d,0x93,0x00,0x05,0xff,0xe8,0x8f, | ||
| 241 | 0x8a,0x00,0xd3,0x18,0xe2,0xd1,0xe8,0xe1,0xc0,0xe8,0x10,0x09,0x05,0xff,0xf0,0xa6, | ||
| 242 | 0xbe,0xb1,0x00,0x05,0xff,0xf0,0xa7,0x83,0x92,0x00,0xd2,0x13,0xe1,0xe9,0xe8,0x10, | ||
| 243 | 0x08,0x05,0xff,0xe8,0x9a,0x88,0x00,0x05,0xff,0xe8,0x9c,0x8e,0x00,0xd1,0x10,0x10, | ||
| 244 | 0x08,0x05,0xff,0xe8,0x9c,0xa8,0x00,0x05,0xff,0xe8,0x9d,0xab,0x00,0x10,0x08,0x05, | ||
| 245 | 0xff,0xe8,0x9e,0x86,0x00,0x05,0xff,0xe4,0xb5,0x97,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 246 | /* nfdi_30200 */ | ||
| 247 | 0x57,0x04,0x01,0x00,0xc6,0xd5,0x16,0xe4,0x82,0x53,0xe3,0xbb,0x4e,0xe2,0x34,0x49, | ||
| 248 | 0xc1,0xe0,0x60,0x47,0xcf,0x86,0x65,0x44,0x47,0x01,0x00,0xd4,0x2a,0xe3,0x1c,0x9a, | ||
| 249 | 0xe2,0xcb,0x99,0xe1,0x9e,0x87,0xe0,0xf8,0x6a,0xcf,0x86,0xc5,0xe4,0x57,0x63,0xe3, | ||
| 250 | 0xa2,0x5e,0xe2,0x38,0x5c,0xe1,0x6b,0x5b,0xe0,0x30,0x5b,0xcf,0x86,0xe5,0xf5,0x5a, | ||
| 251 | 0x64,0xd8,0x5a,0x0b,0x00,0x83,0xe2,0xea,0xf0,0xe1,0xc3,0xed,0xe0,0x40,0xec,0xcf, | ||
| 252 | 0x86,0xd5,0x31,0xc4,0xe3,0xbb,0xc6,0xe2,0x94,0xc4,0xe1,0x75,0xc3,0xe0,0x05,0xba, | ||
| 253 | 0xcf,0x86,0xe5,0xf8,0xb5,0xe4,0xf1,0xb4,0xe3,0xe2,0xb3,0xe2,0x39,0xb3,0xe1,0x14, | ||
| 254 | 0xb3,0xe0,0xed,0xb2,0xcf,0x86,0xe5,0xba,0xb2,0x94,0x07,0x63,0xa5,0xb2,0x07,0x00, | ||
| 255 | 0x07,0x00,0xe4,0xac,0xeb,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd2,0x0b,0xe1, | ||
| 256 | 0xbb,0xd8,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd1,0x0e,0xe0,0xaa,0xd9,0xcf,0x86,0xe5, | ||
| 257 | 0x6f,0xd9,0xcf,0x06,0x11,0x00,0xd0,0x0b,0xcf,0x86,0xe5,0xaa,0xd9,0xcf,0x06,0x13, | ||
| 258 | 0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0x45,0xeb,0xe3,0x2e,0xea,0xd2, | ||
| 259 | 0xa0,0xe1,0xe4,0xdd,0xd0,0x21,0xcf,0x86,0xe5,0xe5,0xda,0xe4,0x61,0xda,0xe3,0x1f, | ||
| 260 | 0xda,0xe2,0xfe,0xd9,0xe1,0xec,0xd9,0x10,0x08,0x05,0xff,0xe4,0xb8,0xbd,0x00,0x05, | ||
| 261 | 0xff,0xe4,0xb8,0xb8,0x00,0xcf,0x86,0xd5,0x1c,0xe4,0x41,0xdc,0xe3,0x00,0xdc,0xe2, | ||
| 262 | 0xdf,0xdb,0xe1,0xce,0xdb,0x10,0x08,0x05,0xff,0xe5,0x92,0xa2,0x00,0x05,0xff,0xe5, | ||
| 263 | 0x93,0xb6,0x00,0xd4,0x34,0xd3,0x18,0xe2,0xc8,0xdc,0xe1,0xb7,0xdc,0x10,0x09,0x05, | ||
| 264 | 0xff,0xf0,0xa1,0x9a,0xa8,0x00,0x05,0xff,0xf0,0xa1,0x9b,0xaa,0x00,0xe2,0xe8,0xdc, | ||
| 265 | 0x91,0x11,0x10,0x09,0x05,0xff,0xf0,0xa1,0x8d,0xaa,0x00,0x05,0xff,0xe5,0xac,0x88, | ||
| 266 | 0x00,0x05,0xff,0xe5,0xac,0xbe,0x00,0xe3,0x2e,0xdd,0xd2,0x14,0xe1,0xfd,0xdc,0x10, | ||
| 267 | 0x08,0x05,0xff,0xe5,0xaf,0xb3,0x00,0x05,0xff,0xf0,0xa1,0xac,0x98,0x00,0xe1,0x09, | ||
| 268 | 0xdd,0x10,0x08,0x05,0xff,0xe5,0xbc,0xb3,0x00,0x05,0xff,0xe5,0xb0,0xa2,0x00,0xd1, | ||
| 269 | 0xd5,0xd0,0x6a,0xcf,0x86,0xe5,0x5e,0xe2,0xd4,0x19,0xe3,0x97,0xe1,0xe2,0x75,0xe1, | ||
| 270 | 0xe1,0x64,0xe1,0x10,0x08,0x05,0xff,0xe6,0xb4,0xbe,0x00,0x05,0xff,0xe6,0xb5,0xb7, | ||
| 271 | 0x00,0xd3,0x18,0xe2,0xe1,0xe1,0xe1,0xd0,0xe1,0x10,0x09,0x05,0xff,0xf0,0xa3,0xbd, | ||
| 272 | 0x9e,0x00,0x05,0xff,0xf0,0xa3,0xbe,0x8e,0x00,0xd2,0x13,0xe1,0xf9,0xe1,0x10,0x08, | ||
| 273 | 0x05,0xff,0xe7,0x81,0xbd,0x00,0x05,0xff,0xe7,0x81,0xb7,0x00,0xd1,0x11,0x10,0x08, | ||
| 274 | 0x05,0xff,0xe7,0x85,0x85,0x00,0x05,0xff,0xf0,0xa4,0x89,0xa3,0x00,0x10,0x08,0x05, | ||
| 275 | 0xff,0xe7,0x86,0x9c,0x00,0x05,0xff,0xe4,0x8e,0xab,0x00,0xcf,0x86,0xe5,0xfb,0xe3, | ||
| 276 | 0xd4,0x1a,0xe3,0x33,0xe3,0xe2,0x19,0xe3,0xe1,0x06,0xe3,0x10,0x08,0x05,0xff,0xe7, | ||
| 277 | 0x9b,0xb4,0x00,0x05,0xff,0xf0,0xa5,0x83,0xb3,0x00,0xd3,0x16,0xe2,0x7b,0xe3,0xe1, | ||
| 278 | 0x69,0xe3,0x10,0x08,0x05,0xff,0xe7,0xa3,0x8c,0x00,0x05,0xff,0xe4,0x83,0xa3,0x00, | ||
| 279 | 0xd2,0x13,0xe1,0x97,0xe3,0x10,0x08,0x05,0xff,0xe4,0x84,0xaf,0x00,0x05,0xff,0xe7, | ||
| 280 | 0xa9,0x80,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0xa5,0xbc,0x00,0x05,0xff, | ||
| 281 | 0xf0,0xa5,0xaa,0xa7,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x05,0xff, | ||
| 282 | 0xe7,0xaa,0xae,0x00,0xe0,0xad,0xe6,0xcf,0x86,0xd5,0x1d,0xe4,0x22,0xe5,0xe3,0xde, | ||
| 283 | 0xe4,0xe2,0xbc,0xe4,0xe1,0xab,0xe4,0x10,0x09,0x05,0xff,0xf0,0xa3,0x8d,0x9f,0x00, | ||
| 284 | 0x05,0xff,0xe4,0x8f,0x95,0x00,0xd4,0x19,0xe3,0xc9,0xe5,0xe2,0xa5,0xe5,0xe1,0x94, | ||
| 285 | 0xe5,0x10,0x08,0x05,0xff,0xe8,0x8d,0x93,0x00,0x05,0xff,0xe8,0x8f,0x8a,0x00,0xd3, | ||
| 286 | 0x18,0xe2,0x14,0xe6,0xe1,0x03,0xe6,0x10,0x09,0x05,0xff,0xf0,0xa6,0xbe,0xb1,0x00, | ||
| 287 | 0x05,0xff,0xf0,0xa7,0x83,0x92,0x00,0xd2,0x13,0xe1,0x2c,0xe6,0x10,0x08,0x05,0xff, | ||
| 288 | 0xe8,0x9a,0x88,0x00,0x05,0xff,0xe8,0x9c,0x8e,0x00,0xd1,0x10,0x10,0x08,0x05,0xff, | ||
| 289 | 0xe8,0x9c,0xa8,0x00,0x05,0xff,0xe8,0x9d,0xab,0x00,0x10,0x08,0x05,0xff,0xe8,0x9e, | ||
| 290 | 0x86,0x00,0x05,0xff,0xe4,0xb5,0x97,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 291 | /* nfdicf_c0100 */ | ||
| 292 | 0xd7,0xb0,0x56,0x04,0x01,0x00,0x95,0xa8,0xd4,0x5e,0xd3,0x2e,0xd2,0x16,0xd1,0x0a, | ||
| 293 | 0x10,0x04,0x01,0x00,0x01,0xff,0x61,0x00,0x10,0x06,0x01,0xff,0x62,0x00,0x01,0xff, | ||
| 294 | 0x63,0x00,0xd1,0x0c,0x10,0x06,0x01,0xff,0x64,0x00,0x01,0xff,0x65,0x00,0x10,0x06, | ||
| 295 | 0x01,0xff,0x66,0x00,0x01,0xff,0x67,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x06,0x01,0xff, | ||
| 296 | 0x68,0x00,0x01,0xff,0x69,0x00,0x10,0x06,0x01,0xff,0x6a,0x00,0x01,0xff,0x6b,0x00, | ||
| 297 | 0xd1,0x0c,0x10,0x06,0x01,0xff,0x6c,0x00,0x01,0xff,0x6d,0x00,0x10,0x06,0x01,0xff, | ||
| 298 | 0x6e,0x00,0x01,0xff,0x6f,0x00,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x06,0x01,0xff, | ||
| 299 | 0x70,0x00,0x01,0xff,0x71,0x00,0x10,0x06,0x01,0xff,0x72,0x00,0x01,0xff,0x73,0x00, | ||
| 300 | 0xd1,0x0c,0x10,0x06,0x01,0xff,0x74,0x00,0x01,0xff,0x75,0x00,0x10,0x06,0x01,0xff, | ||
| 301 | 0x76,0x00,0x01,0xff,0x77,0x00,0x92,0x16,0xd1,0x0c,0x10,0x06,0x01,0xff,0x78,0x00, | ||
| 302 | 0x01,0xff,0x79,0x00,0x10,0x06,0x01,0xff,0x7a,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 303 | 0xc6,0xe5,0xf9,0x14,0xe4,0x6f,0x0d,0xe3,0x39,0x08,0xe2,0x22,0x01,0xc1,0xd0,0x24, | ||
| 304 | 0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x07,0x63,0xd8,0x43,0x01,0x00,0x93,0x13,0x52, | ||
| 305 | 0x04,0x01,0x00,0x91,0x0b,0x10,0x04,0x01,0x00,0x01,0xff,0xce,0xbc,0x00,0x01,0x00, | ||
| 306 | 0x01,0x00,0xcf,0x86,0xe5,0xb3,0x44,0xd4,0x7f,0xd3,0x3f,0xd2,0x20,0xd1,0x10,0x10, | ||
| 307 | 0x08,0x01,0xff,0x61,0xcc,0x80,0x00,0x01,0xff,0x61,0xcc,0x81,0x00,0x10,0x08,0x01, | ||
| 308 | 0xff,0x61,0xcc,0x82,0x00,0x01,0xff,0x61,0xcc,0x83,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 309 | 0xff,0x61,0xcc,0x88,0x00,0x01,0xff,0x61,0xcc,0x8a,0x00,0x10,0x07,0x01,0xff,0xc3, | ||
| 310 | 0xa6,0x00,0x01,0xff,0x63,0xcc,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 311 | 0x65,0xcc,0x80,0x00,0x01,0xff,0x65,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x65,0xcc, | ||
| 312 | 0x82,0x00,0x01,0xff,0x65,0xcc,0x88,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc, | ||
| 313 | 0x80,0x00,0x01,0xff,0x69,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x69,0xcc,0x82,0x00, | ||
| 314 | 0x01,0xff,0x69,0xcc,0x88,0x00,0xd3,0x3b,0xd2,0x1f,0xd1,0x0f,0x10,0x07,0x01,0xff, | ||
| 315 | 0xc3,0xb0,0x00,0x01,0xff,0x6e,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x80, | ||
| 316 | 0x00,0x01,0xff,0x6f,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x82, | ||
| 317 | 0x00,0x01,0xff,0x6f,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x88,0x00,0x01, | ||
| 318 | 0x00,0xd2,0x1f,0xd1,0x0f,0x10,0x07,0x01,0xff,0xc3,0xb8,0x00,0x01,0xff,0x75,0xcc, | ||
| 319 | 0x80,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0x81,0x00,0x01,0xff,0x75,0xcc,0x82,0x00, | ||
| 320 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc,0x88,0x00,0x01,0xff,0x79,0xcc,0x81,0x00, | ||
| 321 | 0x10,0x07,0x01,0xff,0xc3,0xbe,0x00,0x01,0xff,0x73,0x73,0x00,0xe1,0xd4,0x03,0xe0, | ||
| 322 | 0xeb,0x01,0xcf,0x86,0xd5,0xfb,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 323 | 0x01,0xff,0x61,0xcc,0x84,0x00,0x01,0xff,0x61,0xcc,0x84,0x00,0x10,0x08,0x01,0xff, | ||
| 324 | 0x61,0xcc,0x86,0x00,0x01,0xff,0x61,0xcc,0x86,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 325 | 0x61,0xcc,0xa8,0x00,0x01,0xff,0x61,0xcc,0xa8,0x00,0x10,0x08,0x01,0xff,0x63,0xcc, | ||
| 326 | 0x81,0x00,0x01,0xff,0x63,0xcc,0x81,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 327 | 0x63,0xcc,0x82,0x00,0x01,0xff,0x63,0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x63,0xcc, | ||
| 328 | 0x87,0x00,0x01,0xff,0x63,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x63,0xcc, | ||
| 329 | 0x8c,0x00,0x01,0xff,0x63,0xcc,0x8c,0x00,0x10,0x08,0x01,0xff,0x64,0xcc,0x8c,0x00, | ||
| 330 | 0x01,0xff,0x64,0xcc,0x8c,0x00,0xd3,0x3b,0xd2,0x1b,0xd1,0x0b,0x10,0x07,0x01,0xff, | ||
| 331 | 0xc4,0x91,0x00,0x01,0x00,0x10,0x08,0x01,0xff,0x65,0xcc,0x84,0x00,0x01,0xff,0x65, | ||
| 332 | 0xcc,0x84,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x65,0xcc,0x86,0x00,0x01,0xff,0x65, | ||
| 333 | 0xcc,0x86,0x00,0x10,0x08,0x01,0xff,0x65,0xcc,0x87,0x00,0x01,0xff,0x65,0xcc,0x87, | ||
| 334 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x65,0xcc,0xa8,0x00,0x01,0xff,0x65, | ||
| 335 | 0xcc,0xa8,0x00,0x10,0x08,0x01,0xff,0x65,0xcc,0x8c,0x00,0x01,0xff,0x65,0xcc,0x8c, | ||
| 336 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x67,0xcc,0x82,0x00,0x01,0xff,0x67,0xcc,0x82, | ||
| 337 | 0x00,0x10,0x08,0x01,0xff,0x67,0xcc,0x86,0x00,0x01,0xff,0x67,0xcc,0x86,0x00,0xd4, | ||
| 338 | 0x7b,0xd3,0x3b,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x67,0xcc,0x87,0x00,0x01, | ||
| 339 | 0xff,0x67,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x67,0xcc,0xa7,0x00,0x01,0xff,0x67, | ||
| 340 | 0xcc,0xa7,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x68,0xcc,0x82,0x00,0x01,0xff,0x68, | ||
| 341 | 0xcc,0x82,0x00,0x10,0x07,0x01,0xff,0xc4,0xa7,0x00,0x01,0x00,0xd2,0x20,0xd1,0x10, | ||
| 342 | 0x10,0x08,0x01,0xff,0x69,0xcc,0x83,0x00,0x01,0xff,0x69,0xcc,0x83,0x00,0x10,0x08, | ||
| 343 | 0x01,0xff,0x69,0xcc,0x84,0x00,0x01,0xff,0x69,0xcc,0x84,0x00,0xd1,0x10,0x10,0x08, | ||
| 344 | 0x01,0xff,0x69,0xcc,0x86,0x00,0x01,0xff,0x69,0xcc,0x86,0x00,0x10,0x08,0x01,0xff, | ||
| 345 | 0x69,0xcc,0xa8,0x00,0x01,0xff,0x69,0xcc,0xa8,0x00,0xd3,0x37,0xd2,0x17,0xd1,0x0c, | ||
| 346 | 0x10,0x08,0x01,0xff,0x69,0xcc,0x87,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xc4,0xb3, | ||
| 347 | 0x00,0x01,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6a,0xcc,0x82,0x00,0x01,0xff,0x6a, | ||
| 348 | 0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x6b,0xcc,0xa7,0x00,0x01,0xff,0x6b,0xcc,0xa7, | ||
| 349 | 0x00,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x6c,0xcc,0x81,0x00,0x10, | ||
| 350 | 0x08,0x01,0xff,0x6c,0xcc,0x81,0x00,0x01,0xff,0x6c,0xcc,0xa7,0x00,0xd1,0x10,0x10, | ||
| 351 | 0x08,0x01,0xff,0x6c,0xcc,0xa7,0x00,0x01,0xff,0x6c,0xcc,0x8c,0x00,0x10,0x08,0x01, | ||
| 352 | 0xff,0x6c,0xcc,0x8c,0x00,0x01,0xff,0xc5,0x80,0x00,0xcf,0x86,0xd5,0xed,0xd4,0x72, | ||
| 353 | 0xd3,0x37,0xd2,0x17,0xd1,0x0b,0x10,0x04,0x01,0x00,0x01,0xff,0xc5,0x82,0x00,0x10, | ||
| 354 | 0x04,0x01,0x00,0x01,0xff,0x6e,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6e, | ||
| 355 | 0xcc,0x81,0x00,0x01,0xff,0x6e,0xcc,0xa7,0x00,0x10,0x08,0x01,0xff,0x6e,0xcc,0xa7, | ||
| 356 | 0x00,0x01,0xff,0x6e,0xcc,0x8c,0x00,0xd2,0x1b,0xd1,0x10,0x10,0x08,0x01,0xff,0x6e, | ||
| 357 | 0xcc,0x8c,0x00,0x01,0xff,0xca,0xbc,0x6e,0x00,0x10,0x07,0x01,0xff,0xc5,0x8b,0x00, | ||
| 358 | 0x01,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x84,0x00,0x01,0xff,0x6f,0xcc, | ||
| 359 | 0x84,0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x86,0x00,0x01,0xff,0x6f,0xcc,0x86,0x00, | ||
| 360 | 0xd3,0x3b,0xd2,0x1b,0xd1,0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x8b,0x00,0x01,0xff, | ||
| 361 | 0x6f,0xcc,0x8b,0x00,0x10,0x07,0x01,0xff,0xc5,0x93,0x00,0x01,0x00,0xd1,0x10,0x10, | ||
| 362 | 0x08,0x01,0xff,0x72,0xcc,0x81,0x00,0x01,0xff,0x72,0xcc,0x81,0x00,0x10,0x08,0x01, | ||
| 363 | 0xff,0x72,0xcc,0xa7,0x00,0x01,0xff,0x72,0xcc,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10, | ||
| 364 | 0x08,0x01,0xff,0x72,0xcc,0x8c,0x00,0x01,0xff,0x72,0xcc,0x8c,0x00,0x10,0x08,0x01, | ||
| 365 | 0xff,0x73,0xcc,0x81,0x00,0x01,0xff,0x73,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 366 | 0xff,0x73,0xcc,0x82,0x00,0x01,0xff,0x73,0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x73, | ||
| 367 | 0xcc,0xa7,0x00,0x01,0xff,0x73,0xcc,0xa7,0x00,0xd4,0x7b,0xd3,0x3b,0xd2,0x20,0xd1, | ||
| 368 | 0x10,0x10,0x08,0x01,0xff,0x73,0xcc,0x8c,0x00,0x01,0xff,0x73,0xcc,0x8c,0x00,0x10, | ||
| 369 | 0x08,0x01,0xff,0x74,0xcc,0xa7,0x00,0x01,0xff,0x74,0xcc,0xa7,0x00,0xd1,0x10,0x10, | ||
| 370 | 0x08,0x01,0xff,0x74,0xcc,0x8c,0x00,0x01,0xff,0x74,0xcc,0x8c,0x00,0x10,0x07,0x01, | ||
| 371 | 0xff,0xc5,0xa7,0x00,0x01,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc, | ||
| 372 | 0x83,0x00,0x01,0xff,0x75,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0x84,0x00, | ||
| 373 | 0x01,0xff,0x75,0xcc,0x84,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc,0x86,0x00, | ||
| 374 | 0x01,0xff,0x75,0xcc,0x86,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0x8a,0x00,0x01,0xff, | ||
| 375 | 0x75,0xcc,0x8a,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc, | ||
| 376 | 0x8b,0x00,0x01,0xff,0x75,0xcc,0x8b,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0xa8,0x00, | ||
| 377 | 0x01,0xff,0x75,0xcc,0xa8,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0x82,0x00, | ||
| 378 | 0x01,0xff,0x77,0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x79,0xcc,0x82,0x00,0x01,0xff, | ||
| 379 | 0x79,0xcc,0x82,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x79,0xcc,0x88,0x00, | ||
| 380 | 0x01,0xff,0x7a,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x7a,0xcc,0x81,0x00,0x01,0xff, | ||
| 381 | 0x7a,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x7a,0xcc,0x87,0x00,0x01,0xff, | ||
| 382 | 0x7a,0xcc,0x8c,0x00,0x10,0x08,0x01,0xff,0x7a,0xcc,0x8c,0x00,0x01,0xff,0x73,0x00, | ||
| 383 | 0xe0,0x65,0x01,0xcf,0x86,0xd5,0xb4,0xd4,0x5a,0xd3,0x2f,0xd2,0x16,0xd1,0x0b,0x10, | ||
| 384 | 0x04,0x01,0x00,0x01,0xff,0xc9,0x93,0x00,0x10,0x07,0x01,0xff,0xc6,0x83,0x00,0x01, | ||
| 385 | 0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xc6,0x85,0x00,0x01,0x00,0x10,0x07,0x01,0xff, | ||
| 386 | 0xc9,0x94,0x00,0x01,0xff,0xc6,0x88,0x00,0xd2,0x19,0xd1,0x0b,0x10,0x04,0x01,0x00, | ||
| 387 | 0x01,0xff,0xc9,0x96,0x00,0x10,0x07,0x01,0xff,0xc9,0x97,0x00,0x01,0xff,0xc6,0x8c, | ||
| 388 | 0x00,0x51,0x04,0x01,0x00,0x10,0x07,0x01,0xff,0xc7,0x9d,0x00,0x01,0xff,0xc9,0x99, | ||
| 389 | 0x00,0xd3,0x32,0xd2,0x19,0xd1,0x0e,0x10,0x07,0x01,0xff,0xc9,0x9b,0x00,0x01,0xff, | ||
| 390 | 0xc6,0x92,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xc9,0xa0,0x00,0xd1,0x0b,0x10,0x07, | ||
| 391 | 0x01,0xff,0xc9,0xa3,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xc9,0xa9,0x00,0x01,0xff, | ||
| 392 | 0xc9,0xa8,0x00,0xd2,0x0f,0x91,0x0b,0x10,0x07,0x01,0xff,0xc6,0x99,0x00,0x01,0x00, | ||
| 393 | 0x01,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xc9,0xaf,0x00,0x01,0xff,0xc9,0xb2,0x00, | ||
| 394 | 0x10,0x04,0x01,0x00,0x01,0xff,0xc9,0xb5,0x00,0xd4,0x5d,0xd3,0x34,0xd2,0x1b,0xd1, | ||
| 395 | 0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x9b,0x00,0x01,0xff,0x6f,0xcc,0x9b,0x00,0x10, | ||
| 396 | 0x07,0x01,0xff,0xc6,0xa3,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xc6,0xa5, | ||
| 397 | 0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xca,0x80,0x00,0x01,0xff,0xc6,0xa8,0x00,0xd2, | ||
| 398 | 0x0f,0x91,0x0b,0x10,0x04,0x01,0x00,0x01,0xff,0xca,0x83,0x00,0x01,0x00,0xd1,0x0b, | ||
| 399 | 0x10,0x07,0x01,0xff,0xc6,0xad,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xca,0x88,0x00, | ||
| 400 | 0x01,0xff,0x75,0xcc,0x9b,0x00,0xd3,0x33,0xd2,0x1d,0xd1,0x0f,0x10,0x08,0x01,0xff, | ||
| 401 | 0x75,0xcc,0x9b,0x00,0x01,0xff,0xca,0x8a,0x00,0x10,0x07,0x01,0xff,0xca,0x8b,0x00, | ||
| 402 | 0x01,0xff,0xc6,0xb4,0x00,0xd1,0x0b,0x10,0x04,0x01,0x00,0x01,0xff,0xc6,0xb6,0x00, | ||
| 403 | 0x10,0x04,0x01,0x00,0x01,0xff,0xca,0x92,0x00,0xd2,0x0f,0x91,0x0b,0x10,0x07,0x01, | ||
| 404 | 0xff,0xc6,0xb9,0x00,0x01,0x00,0x01,0x00,0x91,0x0b,0x10,0x07,0x01,0xff,0xc6,0xbd, | ||
| 405 | 0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0xd4,0xd4,0x44,0xd3,0x16,0x52,0x04,0x01, | ||
| 406 | 0x00,0x51,0x07,0x01,0xff,0xc7,0x86,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xc7,0x89, | ||
| 407 | 0x00,0xd2,0x12,0x91,0x0b,0x10,0x07,0x01,0xff,0xc7,0x89,0x00,0x01,0x00,0x01,0xff, | ||
| 408 | 0xc7,0x8c,0x00,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x61,0xcc,0x8c,0x00,0x10, | ||
| 409 | 0x08,0x01,0xff,0x61,0xcc,0x8c,0x00,0x01,0xff,0x69,0xcc,0x8c,0x00,0xd3,0x46,0xd2, | ||
| 410 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc,0x8c,0x00,0x01,0xff,0x6f,0xcc,0x8c, | ||
| 411 | 0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x8c,0x00,0x01,0xff,0x75,0xcc,0x8c,0x00,0xd1, | ||
| 412 | 0x12,0x10,0x08,0x01,0xff,0x75,0xcc,0x8c,0x00,0x01,0xff,0x75,0xcc,0x88,0xcc,0x84, | ||
| 413 | 0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88,0xcc,0x84,0x00,0x01,0xff,0x75,0xcc,0x88, | ||
| 414 | 0xcc,0x81,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88,0xcc,0x81, | ||
| 415 | 0x00,0x01,0xff,0x75,0xcc,0x88,0xcc,0x8c,0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88, | ||
| 416 | 0xcc,0x8c,0x00,0x01,0xff,0x75,0xcc,0x88,0xcc,0x80,0x00,0xd1,0x0e,0x10,0x0a,0x01, | ||
| 417 | 0xff,0x75,0xcc,0x88,0xcc,0x80,0x00,0x01,0x00,0x10,0x0a,0x01,0xff,0x61,0xcc,0x88, | ||
| 418 | 0xcc,0x84,0x00,0x01,0xff,0x61,0xcc,0x88,0xcc,0x84,0x00,0xd4,0x87,0xd3,0x41,0xd2, | ||
| 419 | 0x26,0xd1,0x14,0x10,0x0a,0x01,0xff,0x61,0xcc,0x87,0xcc,0x84,0x00,0x01,0xff,0x61, | ||
| 420 | 0xcc,0x87,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xc3,0xa6,0xcc,0x84,0x00,0x01,0xff, | ||
| 421 | 0xc3,0xa6,0xcc,0x84,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xc7,0xa5,0x00,0x01,0x00, | ||
| 422 | 0x10,0x08,0x01,0xff,0x67,0xcc,0x8c,0x00,0x01,0xff,0x67,0xcc,0x8c,0x00,0xd2,0x20, | ||
| 423 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x6b,0xcc,0x8c,0x00,0x01,0xff,0x6b,0xcc,0x8c,0x00, | ||
| 424 | 0x10,0x08,0x01,0xff,0x6f,0xcc,0xa8,0x00,0x01,0xff,0x6f,0xcc,0xa8,0x00,0xd1,0x14, | ||
| 425 | 0x10,0x0a,0x01,0xff,0x6f,0xcc,0xa8,0xcc,0x84,0x00,0x01,0xff,0x6f,0xcc,0xa8,0xcc, | ||
| 426 | 0x84,0x00,0x10,0x09,0x01,0xff,0xca,0x92,0xcc,0x8c,0x00,0x01,0xff,0xca,0x92,0xcc, | ||
| 427 | 0x8c,0x00,0xd3,0x38,0xd2,0x1a,0xd1,0x0f,0x10,0x08,0x01,0xff,0x6a,0xcc,0x8c,0x00, | ||
| 428 | 0x01,0xff,0xc7,0xb3,0x00,0x10,0x07,0x01,0xff,0xc7,0xb3,0x00,0x01,0x00,0xd1,0x10, | ||
| 429 | 0x10,0x08,0x01,0xff,0x67,0xcc,0x81,0x00,0x01,0xff,0x67,0xcc,0x81,0x00,0x10,0x07, | ||
| 430 | 0x04,0xff,0xc6,0x95,0x00,0x04,0xff,0xc6,0xbf,0x00,0xd2,0x24,0xd1,0x10,0x10,0x08, | ||
| 431 | 0x04,0xff,0x6e,0xcc,0x80,0x00,0x04,0xff,0x6e,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff, | ||
| 432 | 0x61,0xcc,0x8a,0xcc,0x81,0x00,0x01,0xff,0x61,0xcc,0x8a,0xcc,0x81,0x00,0xd1,0x12, | ||
| 433 | 0x10,0x09,0x01,0xff,0xc3,0xa6,0xcc,0x81,0x00,0x01,0xff,0xc3,0xa6,0xcc,0x81,0x00, | ||
| 434 | 0x10,0x09,0x01,0xff,0xc3,0xb8,0xcc,0x81,0x00,0x01,0xff,0xc3,0xb8,0xcc,0x81,0x00, | ||
| 435 | 0xe2,0x31,0x02,0xe1,0xc3,0x44,0xe0,0xc8,0x01,0xcf,0x86,0xd5,0xfb,0xd4,0x80,0xd3, | ||
| 436 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x61,0xcc,0x8f,0x00,0x01,0xff,0x61, | ||
| 437 | 0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x61,0xcc,0x91,0x00,0x01,0xff,0x61,0xcc,0x91, | ||
| 438 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x65,0xcc,0x8f,0x00,0x01,0xff,0x65,0xcc,0x8f, | ||
| 439 | 0x00,0x10,0x08,0x01,0xff,0x65,0xcc,0x91,0x00,0x01,0xff,0x65,0xcc,0x91,0x00,0xd2, | ||
| 440 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc,0x8f,0x00,0x01,0xff,0x69,0xcc,0x8f, | ||
| 441 | 0x00,0x10,0x08,0x01,0xff,0x69,0xcc,0x91,0x00,0x01,0xff,0x69,0xcc,0x91,0x00,0xd1, | ||
| 442 | 0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x8f,0x00,0x01,0xff,0x6f,0xcc,0x8f,0x00,0x10, | ||
| 443 | 0x08,0x01,0xff,0x6f,0xcc,0x91,0x00,0x01,0xff,0x6f,0xcc,0x91,0x00,0xd3,0x40,0xd2, | ||
| 444 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x72,0xcc,0x8f,0x00,0x01,0xff,0x72,0xcc,0x8f, | ||
| 445 | 0x00,0x10,0x08,0x01,0xff,0x72,0xcc,0x91,0x00,0x01,0xff,0x72,0xcc,0x91,0x00,0xd1, | ||
| 446 | 0x10,0x10,0x08,0x01,0xff,0x75,0xcc,0x8f,0x00,0x01,0xff,0x75,0xcc,0x8f,0x00,0x10, | ||
| 447 | 0x08,0x01,0xff,0x75,0xcc,0x91,0x00,0x01,0xff,0x75,0xcc,0x91,0x00,0xd2,0x20,0xd1, | ||
| 448 | 0x10,0x10,0x08,0x04,0xff,0x73,0xcc,0xa6,0x00,0x04,0xff,0x73,0xcc,0xa6,0x00,0x10, | ||
| 449 | 0x08,0x04,0xff,0x74,0xcc,0xa6,0x00,0x04,0xff,0x74,0xcc,0xa6,0x00,0xd1,0x0b,0x10, | ||
| 450 | 0x07,0x04,0xff,0xc8,0x9d,0x00,0x04,0x00,0x10,0x08,0x04,0xff,0x68,0xcc,0x8c,0x00, | ||
| 451 | 0x04,0xff,0x68,0xcc,0x8c,0x00,0xd4,0x79,0xd3,0x31,0xd2,0x16,0xd1,0x0b,0x10,0x07, | ||
| 452 | 0x06,0xff,0xc6,0x9e,0x00,0x07,0x00,0x10,0x07,0x04,0xff,0xc8,0xa3,0x00,0x04,0x00, | ||
| 453 | 0xd1,0x0b,0x10,0x07,0x04,0xff,0xc8,0xa5,0x00,0x04,0x00,0x10,0x08,0x04,0xff,0x61, | ||
| 454 | 0xcc,0x87,0x00,0x04,0xff,0x61,0xcc,0x87,0x00,0xd2,0x24,0xd1,0x10,0x10,0x08,0x04, | ||
| 455 | 0xff,0x65,0xcc,0xa7,0x00,0x04,0xff,0x65,0xcc,0xa7,0x00,0x10,0x0a,0x04,0xff,0x6f, | ||
| 456 | 0xcc,0x88,0xcc,0x84,0x00,0x04,0xff,0x6f,0xcc,0x88,0xcc,0x84,0x00,0xd1,0x14,0x10, | ||
| 457 | 0x0a,0x04,0xff,0x6f,0xcc,0x83,0xcc,0x84,0x00,0x04,0xff,0x6f,0xcc,0x83,0xcc,0x84, | ||
| 458 | 0x00,0x10,0x08,0x04,0xff,0x6f,0xcc,0x87,0x00,0x04,0xff,0x6f,0xcc,0x87,0x00,0xd3, | ||
| 459 | 0x27,0xe2,0x21,0x43,0xd1,0x14,0x10,0x0a,0x04,0xff,0x6f,0xcc,0x87,0xcc,0x84,0x00, | ||
| 460 | 0x04,0xff,0x6f,0xcc,0x87,0xcc,0x84,0x00,0x10,0x08,0x04,0xff,0x79,0xcc,0x84,0x00, | ||
| 461 | 0x04,0xff,0x79,0xcc,0x84,0x00,0xd2,0x13,0x51,0x04,0x08,0x00,0x10,0x08,0x08,0xff, | ||
| 462 | 0xe2,0xb1,0xa5,0x00,0x08,0xff,0xc8,0xbc,0x00,0xd1,0x0b,0x10,0x04,0x08,0x00,0x08, | ||
| 463 | 0xff,0xc6,0x9a,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1,0xa6,0x00,0x08,0x00,0xcf,0x86, | ||
| 464 | 0x95,0x5f,0x94,0x5b,0xd3,0x2f,0xd2,0x16,0xd1,0x0b,0x10,0x04,0x08,0x00,0x08,0xff, | ||
| 465 | 0xc9,0x82,0x00,0x10,0x04,0x09,0x00,0x09,0xff,0xc6,0x80,0x00,0xd1,0x0e,0x10,0x07, | ||
| 466 | 0x09,0xff,0xca,0x89,0x00,0x09,0xff,0xca,0x8c,0x00,0x10,0x07,0x09,0xff,0xc9,0x87, | ||
| 467 | 0x00,0x09,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x09,0xff,0xc9,0x89,0x00,0x09,0x00, | ||
| 468 | 0x10,0x07,0x09,0xff,0xc9,0x8b,0x00,0x09,0x00,0xd1,0x0b,0x10,0x07,0x09,0xff,0xc9, | ||
| 469 | 0x8d,0x00,0x09,0x00,0x10,0x07,0x09,0xff,0xc9,0x8f,0x00,0x09,0x00,0x01,0x00,0x01, | ||
| 470 | 0x00,0xd1,0x8b,0xd0,0x0c,0xcf,0x86,0xe5,0x10,0x43,0x64,0xef,0x42,0x01,0xe6,0xcf, | ||
| 471 | 0x86,0xd5,0x2a,0xe4,0x99,0x43,0xe3,0x7f,0x43,0xd2,0x11,0xe1,0x5e,0x43,0x10,0x07, | ||
| 472 | 0x01,0xff,0xcc,0x80,0x00,0x01,0xff,0xcc,0x81,0x00,0xe1,0x65,0x43,0x10,0x09,0x01, | ||
| 473 | 0xff,0xcc,0x88,0xcc,0x81,0x00,0x01,0xff,0xce,0xb9,0x00,0xd4,0x0f,0x93,0x0b,0x92, | ||
| 474 | 0x07,0x61,0xab,0x43,0x01,0xea,0x06,0xe6,0x06,0xe6,0xd3,0x2c,0xd2,0x16,0xd1,0x0b, | ||
| 475 | 0x10,0x07,0x0a,0xff,0xcd,0xb1,0x00,0x0a,0x00,0x10,0x07,0x0a,0xff,0xcd,0xb3,0x00, | ||
| 476 | 0x0a,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xca,0xb9,0x00,0x01,0x00,0x10,0x07,0x0a, | ||
| 477 | 0xff,0xcd,0xb7,0x00,0x0a,0x00,0xd2,0x07,0x61,0x97,0x43,0x00,0x00,0x51,0x04,0x09, | ||
| 478 | 0x00,0x10,0x06,0x01,0xff,0x3b,0x00,0x10,0xff,0xcf,0xb3,0x00,0xe0,0x31,0x01,0xcf, | ||
| 479 | 0x86,0xd5,0xd3,0xd4,0x5f,0xd3,0x21,0x52,0x04,0x00,0x00,0xd1,0x0d,0x10,0x04,0x01, | ||
| 480 | 0x00,0x01,0xff,0xc2,0xa8,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x81, | ||
| 481 | 0x00,0x01,0xff,0xc2,0xb7,0x00,0xd2,0x1f,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb5, | ||
| 482 | 0xcc,0x81,0x00,0x01,0xff,0xce,0xb7,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce,0xb9, | ||
| 483 | 0xcc,0x81,0x00,0x00,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xce,0xbf,0xcc,0x81,0x00, | ||
| 484 | 0x00,0x00,0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x81,0x00,0x01,0xff,0xcf,0x89,0xcc, | ||
| 485 | 0x81,0x00,0xd3,0x3c,0xd2,0x20,0xd1,0x12,0x10,0x0b,0x01,0xff,0xce,0xb9,0xcc,0x88, | ||
| 486 | 0xcc,0x81,0x00,0x01,0xff,0xce,0xb1,0x00,0x10,0x07,0x01,0xff,0xce,0xb2,0x00,0x01, | ||
| 487 | 0xff,0xce,0xb3,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xce,0xb4,0x00,0x01,0xff,0xce, | ||
| 488 | 0xb5,0x00,0x10,0x07,0x01,0xff,0xce,0xb6,0x00,0x01,0xff,0xce,0xb7,0x00,0xd2,0x1c, | ||
| 489 | 0xd1,0x0e,0x10,0x07,0x01,0xff,0xce,0xb8,0x00,0x01,0xff,0xce,0xb9,0x00,0x10,0x07, | ||
| 490 | 0x01,0xff,0xce,0xba,0x00,0x01,0xff,0xce,0xbb,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff, | ||
| 491 | 0xce,0xbc,0x00,0x01,0xff,0xce,0xbd,0x00,0x10,0x07,0x01,0xff,0xce,0xbe,0x00,0x01, | ||
| 492 | 0xff,0xce,0xbf,0x00,0xe4,0x85,0x43,0xd3,0x35,0xd2,0x19,0xd1,0x0e,0x10,0x07,0x01, | ||
| 493 | 0xff,0xcf,0x80,0x00,0x01,0xff,0xcf,0x81,0x00,0x10,0x04,0x00,0x00,0x01,0xff,0xcf, | ||
| 494 | 0x83,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xcf,0x84,0x00,0x01,0xff,0xcf,0x85,0x00, | ||
| 495 | 0x10,0x07,0x01,0xff,0xcf,0x86,0x00,0x01,0xff,0xcf,0x87,0x00,0xe2,0x2b,0x43,0xd1, | ||
| 496 | 0x0e,0x10,0x07,0x01,0xff,0xcf,0x88,0x00,0x01,0xff,0xcf,0x89,0x00,0x10,0x09,0x01, | ||
| 497 | 0xff,0xce,0xb9,0xcc,0x88,0x00,0x01,0xff,0xcf,0x85,0xcc,0x88,0x00,0xcf,0x86,0xd5, | ||
| 498 | 0x94,0xd4,0x3c,0xd3,0x13,0x92,0x0f,0x51,0x04,0x01,0x00,0x10,0x07,0x01,0xff,0xcf, | ||
| 499 | 0x83,0x00,0x01,0x00,0x01,0x00,0xd2,0x07,0x61,0x3a,0x43,0x01,0x00,0xd1,0x12,0x10, | ||
| 500 | 0x09,0x01,0xff,0xce,0xbf,0xcc,0x81,0x00,0x01,0xff,0xcf,0x85,0xcc,0x81,0x00,0x10, | ||
| 501 | 0x09,0x01,0xff,0xcf,0x89,0xcc,0x81,0x00,0x0a,0xff,0xcf,0x97,0x00,0xd3,0x2c,0xd2, | ||
| 502 | 0x11,0xe1,0x46,0x43,0x10,0x07,0x01,0xff,0xce,0xb2,0x00,0x01,0xff,0xce,0xb8,0x00, | ||
| 503 | 0xd1,0x10,0x10,0x09,0x01,0xff,0xcf,0x92,0xcc,0x88,0x00,0x01,0xff,0xcf,0x86,0x00, | ||
| 504 | 0x10,0x07,0x01,0xff,0xcf,0x80,0x00,0x04,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x06, | ||
| 505 | 0xff,0xcf,0x99,0x00,0x06,0x00,0x10,0x07,0x01,0xff,0xcf,0x9b,0x00,0x04,0x00,0xd1, | ||
| 506 | 0x0b,0x10,0x07,0x01,0xff,0xcf,0x9d,0x00,0x04,0x00,0x10,0x07,0x01,0xff,0xcf,0x9f, | ||
| 507 | 0x00,0x04,0x00,0xd4,0x58,0xd3,0x2c,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xcf, | ||
| 508 | 0xa1,0x00,0x04,0x00,0x10,0x07,0x01,0xff,0xcf,0xa3,0x00,0x01,0x00,0xd1,0x0b,0x10, | ||
| 509 | 0x07,0x01,0xff,0xcf,0xa5,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xcf,0xa7,0x00,0x01, | ||
| 510 | 0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xcf,0xa9,0x00,0x01,0x00,0x10,0x07, | ||
| 511 | 0x01,0xff,0xcf,0xab,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xcf,0xad,0x00, | ||
| 512 | 0x01,0x00,0x10,0x07,0x01,0xff,0xcf,0xaf,0x00,0x01,0x00,0xd3,0x2b,0xd2,0x12,0x91, | ||
| 513 | 0x0e,0x10,0x07,0x01,0xff,0xce,0xba,0x00,0x01,0xff,0xcf,0x81,0x00,0x01,0x00,0xd1, | ||
| 514 | 0x0e,0x10,0x07,0x05,0xff,0xce,0xb8,0x00,0x05,0xff,0xce,0xb5,0x00,0x10,0x04,0x06, | ||
| 515 | 0x00,0x07,0xff,0xcf,0xb8,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x04,0x07,0x00,0x07,0xff, | ||
| 516 | 0xcf,0xb2,0x00,0x10,0x07,0x07,0xff,0xcf,0xbb,0x00,0x07,0x00,0xd1,0x0b,0x10,0x04, | ||
| 517 | 0x08,0x00,0x08,0xff,0xcd,0xbb,0x00,0x10,0x07,0x08,0xff,0xcd,0xbc,0x00,0x08,0xff, | ||
| 518 | 0xcd,0xbd,0x00,0xe3,0xed,0x46,0xe2,0x3d,0x05,0xe1,0x27,0x02,0xe0,0x66,0x01,0xcf, | ||
| 519 | 0x86,0xd5,0xf0,0xd4,0x7e,0xd3,0x40,0xd2,0x22,0xd1,0x12,0x10,0x09,0x04,0xff,0xd0, | ||
| 520 | 0xb5,0xcc,0x80,0x00,0x01,0xff,0xd0,0xb5,0xcc,0x88,0x00,0x10,0x07,0x01,0xff,0xd1, | ||
| 521 | 0x92,0x00,0x01,0xff,0xd0,0xb3,0xcc,0x81,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd1, | ||
| 522 | 0x94,0x00,0x01,0xff,0xd1,0x95,0x00,0x10,0x07,0x01,0xff,0xd1,0x96,0x00,0x01,0xff, | ||
| 523 | 0xd1,0x96,0xcc,0x88,0x00,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd1,0x98,0x00, | ||
| 524 | 0x01,0xff,0xd1,0x99,0x00,0x10,0x07,0x01,0xff,0xd1,0x9a,0x00,0x01,0xff,0xd1,0x9b, | ||
| 525 | 0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd0,0xba,0xcc,0x81,0x00,0x04,0xff,0xd0,0xb8, | ||
| 526 | 0xcc,0x80,0x00,0x10,0x09,0x01,0xff,0xd1,0x83,0xcc,0x86,0x00,0x01,0xff,0xd1,0x9f, | ||
| 527 | 0x00,0xd3,0x38,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd0,0xb0,0x00,0x01,0xff, | ||
| 528 | 0xd0,0xb1,0x00,0x10,0x07,0x01,0xff,0xd0,0xb2,0x00,0x01,0xff,0xd0,0xb3,0x00,0xd1, | ||
| 529 | 0x0e,0x10,0x07,0x01,0xff,0xd0,0xb4,0x00,0x01,0xff,0xd0,0xb5,0x00,0x10,0x07,0x01, | ||
| 530 | 0xff,0xd0,0xb6,0x00,0x01,0xff,0xd0,0xb7,0x00,0xd2,0x1e,0xd1,0x10,0x10,0x07,0x01, | ||
| 531 | 0xff,0xd0,0xb8,0x00,0x01,0xff,0xd0,0xb8,0xcc,0x86,0x00,0x10,0x07,0x01,0xff,0xd0, | ||
| 532 | 0xba,0x00,0x01,0xff,0xd0,0xbb,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd0,0xbc,0x00, | ||
| 533 | 0x01,0xff,0xd0,0xbd,0x00,0x10,0x07,0x01,0xff,0xd0,0xbe,0x00,0x01,0xff,0xd0,0xbf, | ||
| 534 | 0x00,0xe4,0x25,0x42,0xd3,0x38,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd1,0x80, | ||
| 535 | 0x00,0x01,0xff,0xd1,0x81,0x00,0x10,0x07,0x01,0xff,0xd1,0x82,0x00,0x01,0xff,0xd1, | ||
| 536 | 0x83,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd1,0x84,0x00,0x01,0xff,0xd1,0x85,0x00, | ||
| 537 | 0x10,0x07,0x01,0xff,0xd1,0x86,0x00,0x01,0xff,0xd1,0x87,0x00,0xd2,0x1c,0xd1,0x0e, | ||
| 538 | 0x10,0x07,0x01,0xff,0xd1,0x88,0x00,0x01,0xff,0xd1,0x89,0x00,0x10,0x07,0x01,0xff, | ||
| 539 | 0xd1,0x8a,0x00,0x01,0xff,0xd1,0x8b,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd1,0x8c, | ||
| 540 | 0x00,0x01,0xff,0xd1,0x8d,0x00,0x10,0x07,0x01,0xff,0xd1,0x8e,0x00,0x01,0xff,0xd1, | ||
| 541 | 0x8f,0x00,0xcf,0x86,0xd5,0x07,0x64,0xcf,0x41,0x01,0x00,0xd4,0x58,0xd3,0x2c,0xd2, | ||
| 542 | 0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd1,0xa1,0x00,0x01,0x00,0x10,0x07,0x01,0xff, | ||
| 543 | 0xd1,0xa3,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd1,0xa5,0x00,0x01,0x00, | ||
| 544 | 0x10,0x07,0x01,0xff,0xd1,0xa7,0x00,0x01,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01, | ||
| 545 | 0xff,0xd1,0xa9,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd1,0xab,0x00,0x01,0x00,0xd1, | ||
| 546 | 0x0b,0x10,0x07,0x01,0xff,0xd1,0xad,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd1,0xaf, | ||
| 547 | 0x00,0x01,0x00,0xd3,0x33,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd1,0xb1,0x00, | ||
| 548 | 0x01,0x00,0x10,0x07,0x01,0xff,0xd1,0xb3,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01, | ||
| 549 | 0xff,0xd1,0xb5,0x00,0x01,0x00,0x10,0x09,0x01,0xff,0xd1,0xb5,0xcc,0x8f,0x00,0x01, | ||
| 550 | 0xff,0xd1,0xb5,0xcc,0x8f,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd1,0xb9, | ||
| 551 | 0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd1,0xbb,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07, | ||
| 552 | 0x01,0xff,0xd1,0xbd,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd1,0xbf,0x00,0x01,0x00, | ||
| 553 | 0xe0,0x41,0x01,0xcf,0x86,0xd5,0x8e,0xd4,0x36,0xd3,0x11,0xe2,0x91,0x41,0xe1,0x88, | ||
| 554 | 0x41,0x10,0x07,0x01,0xff,0xd2,0x81,0x00,0x01,0x00,0xd2,0x0f,0x51,0x04,0x04,0x00, | ||
| 555 | 0x10,0x07,0x06,0xff,0xd2,0x8b,0x00,0x06,0x00,0xd1,0x0b,0x10,0x07,0x04,0xff,0xd2, | ||
| 556 | 0x8d,0x00,0x04,0x00,0x10,0x07,0x04,0xff,0xd2,0x8f,0x00,0x04,0x00,0xd3,0x2c,0xd2, | ||
| 557 | 0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2,0x91,0x00,0x01,0x00,0x10,0x07,0x01,0xff, | ||
| 558 | 0xd2,0x93,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2,0x95,0x00,0x01,0x00, | ||
| 559 | 0x10,0x07,0x01,0xff,0xd2,0x97,0x00,0x01,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01, | ||
| 560 | 0xff,0xd2,0x99,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0x9b,0x00,0x01,0x00,0xd1, | ||
| 561 | 0x0b,0x10,0x07,0x01,0xff,0xd2,0x9d,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0x9f, | ||
| 562 | 0x00,0x01,0x00,0xd4,0x58,0xd3,0x2c,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2, | ||
| 563 | 0xa1,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xa3,0x00,0x01,0x00,0xd1,0x0b,0x10, | ||
| 564 | 0x07,0x01,0xff,0xd2,0xa5,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xa7,0x00,0x01, | ||
| 565 | 0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2,0xa9,0x00,0x01,0x00,0x10,0x07, | ||
| 566 | 0x01,0xff,0xd2,0xab,0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2,0xad,0x00, | ||
| 567 | 0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xaf,0x00,0x01,0x00,0xd3,0x2c,0xd2,0x16,0xd1, | ||
| 568 | 0x0b,0x10,0x07,0x01,0xff,0xd2,0xb1,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xb3, | ||
| 569 | 0x00,0x01,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2,0xb5,0x00,0x01,0x00,0x10,0x07, | ||
| 570 | 0x01,0xff,0xd2,0xb7,0x00,0x01,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd2, | ||
| 571 | 0xb9,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xbb,0x00,0x01,0x00,0xd1,0x0b,0x10, | ||
| 572 | 0x07,0x01,0xff,0xd2,0xbd,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xd2,0xbf,0x00,0x01, | ||
| 573 | 0x00,0xcf,0x86,0xd5,0xdc,0xd4,0x5a,0xd3,0x36,0xd2,0x20,0xd1,0x10,0x10,0x07,0x01, | ||
| 574 | 0xff,0xd3,0x8f,0x00,0x01,0xff,0xd0,0xb6,0xcc,0x86,0x00,0x10,0x09,0x01,0xff,0xd0, | ||
| 575 | 0xb6,0xcc,0x86,0x00,0x01,0xff,0xd3,0x84,0x00,0xd1,0x0b,0x10,0x04,0x01,0x00,0x06, | ||
| 576 | 0xff,0xd3,0x86,0x00,0x10,0x04,0x06,0x00,0x01,0xff,0xd3,0x88,0x00,0xd2,0x16,0xd1, | ||
| 577 | 0x0b,0x10,0x04,0x01,0x00,0x06,0xff,0xd3,0x8a,0x00,0x10,0x04,0x06,0x00,0x01,0xff, | ||
| 578 | 0xd3,0x8c,0x00,0xe1,0x69,0x40,0x10,0x04,0x01,0x00,0x06,0xff,0xd3,0x8e,0x00,0xd3, | ||
| 579 | 0x41,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd0,0xb0,0xcc,0x86,0x00,0x01,0xff, | ||
| 580 | 0xd0,0xb0,0xcc,0x86,0x00,0x10,0x09,0x01,0xff,0xd0,0xb0,0xcc,0x88,0x00,0x01,0xff, | ||
| 581 | 0xd0,0xb0,0xcc,0x88,0x00,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd3,0x95,0x00,0x01,0x00, | ||
| 582 | 0x10,0x09,0x01,0xff,0xd0,0xb5,0xcc,0x86,0x00,0x01,0xff,0xd0,0xb5,0xcc,0x86,0x00, | ||
| 583 | 0xd2,0x1d,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd3,0x99,0x00,0x01,0x00,0x10,0x09,0x01, | ||
| 584 | 0xff,0xd3,0x99,0xcc,0x88,0x00,0x01,0xff,0xd3,0x99,0xcc,0x88,0x00,0xd1,0x12,0x10, | ||
| 585 | 0x09,0x01,0xff,0xd0,0xb6,0xcc,0x88,0x00,0x01,0xff,0xd0,0xb6,0xcc,0x88,0x00,0x10, | ||
| 586 | 0x09,0x01,0xff,0xd0,0xb7,0xcc,0x88,0x00,0x01,0xff,0xd0,0xb7,0xcc,0x88,0x00,0xd4, | ||
| 587 | 0x82,0xd3,0x41,0xd2,0x1d,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd3,0xa1,0x00,0x01,0x00, | ||
| 588 | 0x10,0x09,0x01,0xff,0xd0,0xb8,0xcc,0x84,0x00,0x01,0xff,0xd0,0xb8,0xcc,0x84,0x00, | ||
| 589 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xd0,0xb8,0xcc,0x88,0x00,0x01,0xff,0xd0,0xb8,0xcc, | ||
| 590 | 0x88,0x00,0x10,0x09,0x01,0xff,0xd0,0xbe,0xcc,0x88,0x00,0x01,0xff,0xd0,0xbe,0xcc, | ||
| 591 | 0x88,0x00,0xd2,0x1d,0xd1,0x0b,0x10,0x07,0x01,0xff,0xd3,0xa9,0x00,0x01,0x00,0x10, | ||
| 592 | 0x09,0x01,0xff,0xd3,0xa9,0xcc,0x88,0x00,0x01,0xff,0xd3,0xa9,0xcc,0x88,0x00,0xd1, | ||
| 593 | 0x12,0x10,0x09,0x04,0xff,0xd1,0x8d,0xcc,0x88,0x00,0x04,0xff,0xd1,0x8d,0xcc,0x88, | ||
| 594 | 0x00,0x10,0x09,0x01,0xff,0xd1,0x83,0xcc,0x84,0x00,0x01,0xff,0xd1,0x83,0xcc,0x84, | ||
| 595 | 0x00,0xd3,0x41,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd1,0x83,0xcc,0x88,0x00, | ||
| 596 | 0x01,0xff,0xd1,0x83,0xcc,0x88,0x00,0x10,0x09,0x01,0xff,0xd1,0x83,0xcc,0x8b,0x00, | ||
| 597 | 0x01,0xff,0xd1,0x83,0xcc,0x8b,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd1,0x87,0xcc, | ||
| 598 | 0x88,0x00,0x01,0xff,0xd1,0x87,0xcc,0x88,0x00,0x10,0x07,0x08,0xff,0xd3,0xb7,0x00, | ||
| 599 | 0x08,0x00,0xd2,0x1d,0xd1,0x12,0x10,0x09,0x01,0xff,0xd1,0x8b,0xcc,0x88,0x00,0x01, | ||
| 600 | 0xff,0xd1,0x8b,0xcc,0x88,0x00,0x10,0x07,0x09,0xff,0xd3,0xbb,0x00,0x09,0x00,0xd1, | ||
| 601 | 0x0b,0x10,0x07,0x09,0xff,0xd3,0xbd,0x00,0x09,0x00,0x10,0x07,0x09,0xff,0xd3,0xbf, | ||
| 602 | 0x00,0x09,0x00,0xe1,0x26,0x02,0xe0,0x78,0x01,0xcf,0x86,0xd5,0xb0,0xd4,0x58,0xd3, | ||
| 603 | 0x2c,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x06,0xff,0xd4,0x81,0x00,0x06,0x00,0x10,0x07, | ||
| 604 | 0x06,0xff,0xd4,0x83,0x00,0x06,0x00,0xd1,0x0b,0x10,0x07,0x06,0xff,0xd4,0x85,0x00, | ||
| 605 | 0x06,0x00,0x10,0x07,0x06,0xff,0xd4,0x87,0x00,0x06,0x00,0xd2,0x16,0xd1,0x0b,0x10, | ||
| 606 | 0x07,0x06,0xff,0xd4,0x89,0x00,0x06,0x00,0x10,0x07,0x06,0xff,0xd4,0x8b,0x00,0x06, | ||
| 607 | 0x00,0xd1,0x0b,0x10,0x07,0x06,0xff,0xd4,0x8d,0x00,0x06,0x00,0x10,0x07,0x06,0xff, | ||
| 608 | 0xd4,0x8f,0x00,0x06,0x00,0xd3,0x2c,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x09,0xff,0xd4, | ||
| 609 | 0x91,0x00,0x09,0x00,0x10,0x07,0x09,0xff,0xd4,0x93,0x00,0x09,0x00,0xd1,0x0b,0x10, | ||
| 610 | 0x07,0x0a,0xff,0xd4,0x95,0x00,0x0a,0x00,0x10,0x07,0x0a,0xff,0xd4,0x97,0x00,0x0a, | ||
| 611 | 0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x0a,0xff,0xd4,0x99,0x00,0x0a,0x00,0x10,0x07, | ||
| 612 | 0x0a,0xff,0xd4,0x9b,0x00,0x0a,0x00,0xd1,0x0b,0x10,0x07,0x0a,0xff,0xd4,0x9d,0x00, | ||
| 613 | 0x0a,0x00,0x10,0x07,0x0a,0xff,0xd4,0x9f,0x00,0x0a,0x00,0xd4,0x58,0xd3,0x2c,0xd2, | ||
| 614 | 0x16,0xd1,0x0b,0x10,0x07,0x0a,0xff,0xd4,0xa1,0x00,0x0a,0x00,0x10,0x07,0x0a,0xff, | ||
| 615 | 0xd4,0xa3,0x00,0x0a,0x00,0xd1,0x0b,0x10,0x07,0x0b,0xff,0xd4,0xa5,0x00,0x0b,0x00, | ||
| 616 | 0x10,0x07,0x0c,0xff,0xd4,0xa7,0x00,0x0c,0x00,0xd2,0x16,0xd1,0x0b,0x10,0x07,0x10, | ||
| 617 | 0xff,0xd4,0xa9,0x00,0x10,0x00,0x10,0x07,0x10,0xff,0xd4,0xab,0x00,0x10,0x00,0xd1, | ||
| 618 | 0x0b,0x10,0x07,0x10,0xff,0xd4,0xad,0x00,0x10,0x00,0x10,0x07,0x10,0xff,0xd4,0xaf, | ||
| 619 | 0x00,0x10,0x00,0xd3,0x35,0xd2,0x19,0xd1,0x0b,0x10,0x04,0x00,0x00,0x01,0xff,0xd5, | ||
| 620 | 0xa1,0x00,0x10,0x07,0x01,0xff,0xd5,0xa2,0x00,0x01,0xff,0xd5,0xa3,0x00,0xd1,0x0e, | ||
| 621 | 0x10,0x07,0x01,0xff,0xd5,0xa4,0x00,0x01,0xff,0xd5,0xa5,0x00,0x10,0x07,0x01,0xff, | ||
| 622 | 0xd5,0xa6,0x00,0x01,0xff,0xd5,0xa7,0x00,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff, | ||
| 623 | 0xd5,0xa8,0x00,0x01,0xff,0xd5,0xa9,0x00,0x10,0x07,0x01,0xff,0xd5,0xaa,0x00,0x01, | ||
| 624 | 0xff,0xd5,0xab,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd5,0xac,0x00,0x01,0xff,0xd5, | ||
| 625 | 0xad,0x00,0x10,0x07,0x01,0xff,0xd5,0xae,0x00,0x01,0xff,0xd5,0xaf,0x00,0xcf,0x86, | ||
| 626 | 0xe5,0x08,0x3f,0xd4,0x70,0xd3,0x38,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd5, | ||
| 627 | 0xb0,0x00,0x01,0xff,0xd5,0xb1,0x00,0x10,0x07,0x01,0xff,0xd5,0xb2,0x00,0x01,0xff, | ||
| 628 | 0xd5,0xb3,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd5,0xb4,0x00,0x01,0xff,0xd5,0xb5, | ||
| 629 | 0x00,0x10,0x07,0x01,0xff,0xd5,0xb6,0x00,0x01,0xff,0xd5,0xb7,0x00,0xd2,0x1c,0xd1, | ||
| 630 | 0x0e,0x10,0x07,0x01,0xff,0xd5,0xb8,0x00,0x01,0xff,0xd5,0xb9,0x00,0x10,0x07,0x01, | ||
| 631 | 0xff,0xd5,0xba,0x00,0x01,0xff,0xd5,0xbb,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd5, | ||
| 632 | 0xbc,0x00,0x01,0xff,0xd5,0xbd,0x00,0x10,0x07,0x01,0xff,0xd5,0xbe,0x00,0x01,0xff, | ||
| 633 | 0xd5,0xbf,0x00,0xe3,0x87,0x3e,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd6,0x80, | ||
| 634 | 0x00,0x01,0xff,0xd6,0x81,0x00,0x10,0x07,0x01,0xff,0xd6,0x82,0x00,0x01,0xff,0xd6, | ||
| 635 | 0x83,0x00,0xd1,0x0e,0x10,0x07,0x01,0xff,0xd6,0x84,0x00,0x01,0xff,0xd6,0x85,0x00, | ||
| 636 | 0x10,0x07,0x01,0xff,0xd6,0x86,0x00,0x00,0x00,0xe0,0x2f,0x3f,0xcf,0x86,0xe5,0xc0, | ||
| 637 | 0x3e,0xe4,0x97,0x3e,0xe3,0x76,0x3e,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10, | ||
| 638 | 0x04,0x01,0x00,0x01,0xff,0xd5,0xa5,0xd6,0x82,0x00,0xe4,0x3e,0x25,0xe3,0xc3,0x1a, | ||
| 639 | 0xe2,0x7b,0x81,0xe1,0xc0,0x13,0xd0,0x1e,0xcf,0x86,0xc5,0xe4,0x08,0x4b,0xe3,0x53, | ||
| 640 | 0x46,0xe2,0xe9,0x43,0xe1,0x1c,0x43,0xe0,0xe1,0x42,0xcf,0x86,0xe5,0xa6,0x42,0x64, | ||
| 641 | 0x89,0x42,0x0b,0x00,0xcf,0x86,0xe5,0xfa,0x01,0xe4,0x03,0x56,0xe3,0x76,0x01,0xe2, | ||
| 642 | 0x8e,0x53,0xd1,0x0c,0xe0,0xef,0x52,0xcf,0x86,0x65,0x8d,0x52,0x04,0x00,0xe0,0x0d, | ||
| 643 | 0x01,0xcf,0x86,0xd5,0x0a,0xe4,0x10,0x53,0x63,0xff,0x52,0x0a,0x00,0xd4,0x80,0xd3, | ||
| 644 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x80,0x00,0x01,0xff,0xe2, | ||
| 645 | 0xb4,0x81,0x00,0x10,0x08,0x01,0xff,0xe2,0xb4,0x82,0x00,0x01,0xff,0xe2,0xb4,0x83, | ||
| 646 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x84,0x00,0x01,0xff,0xe2,0xb4,0x85, | ||
| 647 | 0x00,0x10,0x08,0x01,0xff,0xe2,0xb4,0x86,0x00,0x01,0xff,0xe2,0xb4,0x87,0x00,0xd2, | ||
| 648 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x88,0x00,0x01,0xff,0xe2,0xb4,0x89, | ||
| 649 | 0x00,0x10,0x08,0x01,0xff,0xe2,0xb4,0x8a,0x00,0x01,0xff,0xe2,0xb4,0x8b,0x00,0xd1, | ||
| 650 | 0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x8c,0x00,0x01,0xff,0xe2,0xb4,0x8d,0x00,0x10, | ||
| 651 | 0x08,0x01,0xff,0xe2,0xb4,0x8e,0x00,0x01,0xff,0xe2,0xb4,0x8f,0x00,0xd3,0x40,0xd2, | ||
| 652 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x90,0x00,0x01,0xff,0xe2,0xb4,0x91, | ||
| 653 | 0x00,0x10,0x08,0x01,0xff,0xe2,0xb4,0x92,0x00,0x01,0xff,0xe2,0xb4,0x93,0x00,0xd1, | ||
| 654 | 0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x94,0x00,0x01,0xff,0xe2,0xb4,0x95,0x00,0x10, | ||
| 655 | 0x08,0x01,0xff,0xe2,0xb4,0x96,0x00,0x01,0xff,0xe2,0xb4,0x97,0x00,0xd2,0x20,0xd1, | ||
| 656 | 0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0x98,0x00,0x01,0xff,0xe2,0xb4,0x99,0x00,0x10, | ||
| 657 | 0x08,0x01,0xff,0xe2,0xb4,0x9a,0x00,0x01,0xff,0xe2,0xb4,0x9b,0x00,0xd1,0x10,0x10, | ||
| 658 | 0x08,0x01,0xff,0xe2,0xb4,0x9c,0x00,0x01,0xff,0xe2,0xb4,0x9d,0x00,0x10,0x08,0x01, | ||
| 659 | 0xff,0xe2,0xb4,0x9e,0x00,0x01,0xff,0xe2,0xb4,0x9f,0x00,0xcf,0x86,0xe5,0x42,0x52, | ||
| 660 | 0x94,0x50,0xd3,0x3c,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0xa0,0x00, | ||
| 661 | 0x01,0xff,0xe2,0xb4,0xa1,0x00,0x10,0x08,0x01,0xff,0xe2,0xb4,0xa2,0x00,0x01,0xff, | ||
| 662 | 0xe2,0xb4,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0xb4,0xa4,0x00,0x01,0xff, | ||
| 663 | 0xe2,0xb4,0xa5,0x00,0x10,0x04,0x00,0x00,0x0d,0xff,0xe2,0xb4,0xa7,0x00,0x52,0x04, | ||
| 664 | 0x00,0x00,0x91,0x0c,0x10,0x04,0x00,0x00,0x0d,0xff,0xe2,0xb4,0xad,0x00,0x00,0x00, | ||
| 665 | 0x01,0x00,0xd2,0x1b,0xe1,0xfc,0x52,0xe0,0xad,0x52,0xcf,0x86,0x95,0x0f,0x94,0x0b, | ||
| 666 | 0x93,0x07,0x62,0x92,0x52,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0xd1,0x13,0xe0, | ||
| 667 | 0xd3,0x53,0xcf,0x86,0x95,0x0a,0xe4,0xa8,0x53,0x63,0x97,0x53,0x04,0x00,0x04,0x00, | ||
| 668 | 0xd0,0x0d,0xcf,0x86,0x95,0x07,0x64,0x22,0x54,0x08,0x00,0x04,0x00,0xcf,0x86,0x55, | ||
| 669 | 0x04,0x04,0x00,0x54,0x04,0x04,0x00,0xd3,0x07,0x62,0x2f,0x54,0x04,0x00,0xd2,0x20, | ||
| 670 | 0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8f,0xb0,0x00,0x11,0xff,0xe1,0x8f,0xb1,0x00, | ||
| 671 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0xb2,0x00,0x11,0xff,0xe1,0x8f,0xb3,0x00,0x91,0x10, | ||
| 672 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0xb4,0x00,0x11,0xff,0xe1,0x8f,0xb5,0x00,0x00,0x00, | ||
| 673 | 0xd4,0x1c,0xe3,0xe0,0x56,0xe2,0x17,0x56,0xe1,0xda,0x55,0xe0,0xbb,0x55,0xcf,0x86, | ||
| 674 | 0x95,0x0a,0xe4,0xa4,0x55,0x63,0x88,0x55,0x04,0x00,0x04,0x00,0xe3,0xd2,0x01,0xe2, | ||
| 675 | 0x2b,0x5a,0xd1,0x0c,0xe0,0x4c,0x59,0xcf,0x86,0x65,0x25,0x59,0x0a,0x00,0xe0,0x9c, | ||
| 676 | 0x59,0xcf,0x86,0xd5,0xc5,0xd4,0x45,0xd3,0x31,0xd2,0x1c,0xd1,0x0e,0x10,0x07,0x12, | ||
| 677 | 0xff,0xd0,0xb2,0x00,0x12,0xff,0xd0,0xb4,0x00,0x10,0x07,0x12,0xff,0xd0,0xbe,0x00, | ||
| 678 | 0x12,0xff,0xd1,0x81,0x00,0x51,0x07,0x12,0xff,0xd1,0x82,0x00,0x10,0x07,0x12,0xff, | ||
| 679 | 0xd1,0x8a,0x00,0x12,0xff,0xd1,0xa3,0x00,0x92,0x10,0x91,0x0c,0x10,0x08,0x12,0xff, | ||
| 680 | 0xea,0x99,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 681 | 0x10,0x08,0x14,0xff,0xe1,0x83,0x90,0x00,0x14,0xff,0xe1,0x83,0x91,0x00,0x10,0x08, | ||
| 682 | 0x14,0xff,0xe1,0x83,0x92,0x00,0x14,0xff,0xe1,0x83,0x93,0x00,0xd1,0x10,0x10,0x08, | ||
| 683 | 0x14,0xff,0xe1,0x83,0x94,0x00,0x14,0xff,0xe1,0x83,0x95,0x00,0x10,0x08,0x14,0xff, | ||
| 684 | 0xe1,0x83,0x96,0x00,0x14,0xff,0xe1,0x83,0x97,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 685 | 0x14,0xff,0xe1,0x83,0x98,0x00,0x14,0xff,0xe1,0x83,0x99,0x00,0x10,0x08,0x14,0xff, | ||
| 686 | 0xe1,0x83,0x9a,0x00,0x14,0xff,0xe1,0x83,0x9b,0x00,0xd1,0x10,0x10,0x08,0x14,0xff, | ||
| 687 | 0xe1,0x83,0x9c,0x00,0x14,0xff,0xe1,0x83,0x9d,0x00,0x10,0x08,0x14,0xff,0xe1,0x83, | ||
| 688 | 0x9e,0x00,0x14,0xff,0xe1,0x83,0x9f,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 689 | 0x10,0x08,0x14,0xff,0xe1,0x83,0xa0,0x00,0x14,0xff,0xe1,0x83,0xa1,0x00,0x10,0x08, | ||
| 690 | 0x14,0xff,0xe1,0x83,0xa2,0x00,0x14,0xff,0xe1,0x83,0xa3,0x00,0xd1,0x10,0x10,0x08, | ||
| 691 | 0x14,0xff,0xe1,0x83,0xa4,0x00,0x14,0xff,0xe1,0x83,0xa5,0x00,0x10,0x08,0x14,0xff, | ||
| 692 | 0xe1,0x83,0xa6,0x00,0x14,0xff,0xe1,0x83,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 693 | 0x14,0xff,0xe1,0x83,0xa8,0x00,0x14,0xff,0xe1,0x83,0xa9,0x00,0x10,0x08,0x14,0xff, | ||
| 694 | 0xe1,0x83,0xaa,0x00,0x14,0xff,0xe1,0x83,0xab,0x00,0xd1,0x10,0x10,0x08,0x14,0xff, | ||
| 695 | 0xe1,0x83,0xac,0x00,0x14,0xff,0xe1,0x83,0xad,0x00,0x10,0x08,0x14,0xff,0xe1,0x83, | ||
| 696 | 0xae,0x00,0x14,0xff,0xe1,0x83,0xaf,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 697 | 0x14,0xff,0xe1,0x83,0xb0,0x00,0x14,0xff,0xe1,0x83,0xb1,0x00,0x10,0x08,0x14,0xff, | ||
| 698 | 0xe1,0x83,0xb2,0x00,0x14,0xff,0xe1,0x83,0xb3,0x00,0xd1,0x10,0x10,0x08,0x14,0xff, | ||
| 699 | 0xe1,0x83,0xb4,0x00,0x14,0xff,0xe1,0x83,0xb5,0x00,0x10,0x08,0x14,0xff,0xe1,0x83, | ||
| 700 | 0xb6,0x00,0x14,0xff,0xe1,0x83,0xb7,0x00,0xd2,0x1c,0xd1,0x10,0x10,0x08,0x14,0xff, | ||
| 701 | 0xe1,0x83,0xb8,0x00,0x14,0xff,0xe1,0x83,0xb9,0x00,0x10,0x08,0x14,0xff,0xe1,0x83, | ||
| 702 | 0xba,0x00,0x00,0x00,0xd1,0x0c,0x10,0x04,0x00,0x00,0x14,0xff,0xe1,0x83,0xbd,0x00, | ||
| 703 | 0x10,0x08,0x14,0xff,0xe1,0x83,0xbe,0x00,0x14,0xff,0xe1,0x83,0xbf,0x00,0xe2,0x9d, | ||
| 704 | 0x08,0xe1,0x48,0x04,0xe0,0x1c,0x02,0xcf,0x86,0xe5,0x11,0x01,0xd4,0x84,0xd3,0x40, | ||
| 705 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x61,0xcc,0xa5,0x00,0x01,0xff,0x61,0xcc, | ||
| 706 | 0xa5,0x00,0x10,0x08,0x01,0xff,0x62,0xcc,0x87,0x00,0x01,0xff,0x62,0xcc,0x87,0x00, | ||
| 707 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x62,0xcc,0xa3,0x00,0x01,0xff,0x62,0xcc,0xa3,0x00, | ||
| 708 | 0x10,0x08,0x01,0xff,0x62,0xcc,0xb1,0x00,0x01,0xff,0x62,0xcc,0xb1,0x00,0xd2,0x24, | ||
| 709 | 0xd1,0x14,0x10,0x0a,0x01,0xff,0x63,0xcc,0xa7,0xcc,0x81,0x00,0x01,0xff,0x63,0xcc, | ||
| 710 | 0xa7,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x64,0xcc,0x87,0x00,0x01,0xff,0x64,0xcc, | ||
| 711 | 0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x64,0xcc,0xa3,0x00,0x01,0xff,0x64,0xcc, | ||
| 712 | 0xa3,0x00,0x10,0x08,0x01,0xff,0x64,0xcc,0xb1,0x00,0x01,0xff,0x64,0xcc,0xb1,0x00, | ||
| 713 | 0xd3,0x48,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x64,0xcc,0xa7,0x00,0x01,0xff, | ||
| 714 | 0x64,0xcc,0xa7,0x00,0x10,0x08,0x01,0xff,0x64,0xcc,0xad,0x00,0x01,0xff,0x64,0xcc, | ||
| 715 | 0xad,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x65,0xcc,0x84,0xcc,0x80,0x00,0x01,0xff, | ||
| 716 | 0x65,0xcc,0x84,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x65,0xcc,0x84,0xcc,0x81,0x00, | ||
| 717 | 0x01,0xff,0x65,0xcc,0x84,0xcc,0x81,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 718 | 0x65,0xcc,0xad,0x00,0x01,0xff,0x65,0xcc,0xad,0x00,0x10,0x08,0x01,0xff,0x65,0xcc, | ||
| 719 | 0xb0,0x00,0x01,0xff,0x65,0xcc,0xb0,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x65,0xcc, | ||
| 720 | 0xa7,0xcc,0x86,0x00,0x01,0xff,0x65,0xcc,0xa7,0xcc,0x86,0x00,0x10,0x08,0x01,0xff, | ||
| 721 | 0x66,0xcc,0x87,0x00,0x01,0xff,0x66,0xcc,0x87,0x00,0xd4,0x84,0xd3,0x40,0xd2,0x20, | ||
| 722 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x67,0xcc,0x84,0x00,0x01,0xff,0x67,0xcc,0x84,0x00, | ||
| 723 | 0x10,0x08,0x01,0xff,0x68,0xcc,0x87,0x00,0x01,0xff,0x68,0xcc,0x87,0x00,0xd1,0x10, | ||
| 724 | 0x10,0x08,0x01,0xff,0x68,0xcc,0xa3,0x00,0x01,0xff,0x68,0xcc,0xa3,0x00,0x10,0x08, | ||
| 725 | 0x01,0xff,0x68,0xcc,0x88,0x00,0x01,0xff,0x68,0xcc,0x88,0x00,0xd2,0x20,0xd1,0x10, | ||
| 726 | 0x10,0x08,0x01,0xff,0x68,0xcc,0xa7,0x00,0x01,0xff,0x68,0xcc,0xa7,0x00,0x10,0x08, | ||
| 727 | 0x01,0xff,0x68,0xcc,0xae,0x00,0x01,0xff,0x68,0xcc,0xae,0x00,0xd1,0x10,0x10,0x08, | ||
| 728 | 0x01,0xff,0x69,0xcc,0xb0,0x00,0x01,0xff,0x69,0xcc,0xb0,0x00,0x10,0x0a,0x01,0xff, | ||
| 729 | 0x69,0xcc,0x88,0xcc,0x81,0x00,0x01,0xff,0x69,0xcc,0x88,0xcc,0x81,0x00,0xd3,0x40, | ||
| 730 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x6b,0xcc,0x81,0x00,0x01,0xff,0x6b,0xcc, | ||
| 731 | 0x81,0x00,0x10,0x08,0x01,0xff,0x6b,0xcc,0xa3,0x00,0x01,0xff,0x6b,0xcc,0xa3,0x00, | ||
| 732 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x6b,0xcc,0xb1,0x00,0x01,0xff,0x6b,0xcc,0xb1,0x00, | ||
| 733 | 0x10,0x08,0x01,0xff,0x6c,0xcc,0xa3,0x00,0x01,0xff,0x6c,0xcc,0xa3,0x00,0xd2,0x24, | ||
| 734 | 0xd1,0x14,0x10,0x0a,0x01,0xff,0x6c,0xcc,0xa3,0xcc,0x84,0x00,0x01,0xff,0x6c,0xcc, | ||
| 735 | 0xa3,0xcc,0x84,0x00,0x10,0x08,0x01,0xff,0x6c,0xcc,0xb1,0x00,0x01,0xff,0x6c,0xcc, | ||
| 736 | 0xb1,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6c,0xcc,0xad,0x00,0x01,0xff,0x6c,0xcc, | ||
| 737 | 0xad,0x00,0x10,0x08,0x01,0xff,0x6d,0xcc,0x81,0x00,0x01,0xff,0x6d,0xcc,0x81,0x00, | ||
| 738 | 0xcf,0x86,0xe5,0x15,0x01,0xd4,0x88,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 739 | 0xff,0x6d,0xcc,0x87,0x00,0x01,0xff,0x6d,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x6d, | ||
| 740 | 0xcc,0xa3,0x00,0x01,0xff,0x6d,0xcc,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6e, | ||
| 741 | 0xcc,0x87,0x00,0x01,0xff,0x6e,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x6e,0xcc,0xa3, | ||
| 742 | 0x00,0x01,0xff,0x6e,0xcc,0xa3,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x6e, | ||
| 743 | 0xcc,0xb1,0x00,0x01,0xff,0x6e,0xcc,0xb1,0x00,0x10,0x08,0x01,0xff,0x6e,0xcc,0xad, | ||
| 744 | 0x00,0x01,0xff,0x6e,0xcc,0xad,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x83, | ||
| 745 | 0xcc,0x81,0x00,0x01,0xff,0x6f,0xcc,0x83,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x6f, | ||
| 746 | 0xcc,0x83,0xcc,0x88,0x00,0x01,0xff,0x6f,0xcc,0x83,0xcc,0x88,0x00,0xd3,0x48,0xd2, | ||
| 747 | 0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x84,0xcc,0x80,0x00,0x01,0xff,0x6f, | ||
| 748 | 0xcc,0x84,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x84,0xcc,0x81,0x00,0x01, | ||
| 749 | 0xff,0x6f,0xcc,0x84,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x70,0xcc,0x81, | ||
| 750 | 0x00,0x01,0xff,0x70,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x70,0xcc,0x87,0x00,0x01, | ||
| 751 | 0xff,0x70,0xcc,0x87,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x72,0xcc,0x87, | ||
| 752 | 0x00,0x01,0xff,0x72,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x72,0xcc,0xa3,0x00,0x01, | ||
| 753 | 0xff,0x72,0xcc,0xa3,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x72,0xcc,0xa3,0xcc,0x84, | ||
| 754 | 0x00,0x01,0xff,0x72,0xcc,0xa3,0xcc,0x84,0x00,0x10,0x08,0x01,0xff,0x72,0xcc,0xb1, | ||
| 755 | 0x00,0x01,0xff,0x72,0xcc,0xb1,0x00,0xd4,0x8c,0xd3,0x48,0xd2,0x20,0xd1,0x10,0x10, | ||
| 756 | 0x08,0x01,0xff,0x73,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x87,0x00,0x10,0x08,0x01, | ||
| 757 | 0xff,0x73,0xcc,0xa3,0x00,0x01,0xff,0x73,0xcc,0xa3,0x00,0xd1,0x14,0x10,0x0a,0x01, | ||
| 758 | 0xff,0x73,0xcc,0x81,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x81,0xcc,0x87,0x00,0x10, | ||
| 759 | 0x0a,0x01,0xff,0x73,0xcc,0x8c,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x8c,0xcc,0x87, | ||
| 760 | 0x00,0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff,0x73,0xcc,0xa3,0xcc,0x87,0x00,0x01, | ||
| 761 | 0xff,0x73,0xcc,0xa3,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x74,0xcc,0x87,0x00,0x01, | ||
| 762 | 0xff,0x74,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x74,0xcc,0xa3,0x00,0x01, | ||
| 763 | 0xff,0x74,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x74,0xcc,0xb1,0x00,0x01,0xff,0x74, | ||
| 764 | 0xcc,0xb1,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x74,0xcc,0xad, | ||
| 765 | 0x00,0x01,0xff,0x74,0xcc,0xad,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0xa4,0x00,0x01, | ||
| 766 | 0xff,0x75,0xcc,0xa4,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc,0xb0,0x00,0x01, | ||
| 767 | 0xff,0x75,0xcc,0xb0,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0xad,0x00,0x01,0xff,0x75, | ||
| 768 | 0xcc,0xad,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x75,0xcc,0x83,0xcc,0x81, | ||
| 769 | 0x00,0x01,0xff,0x75,0xcc,0x83,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x84, | ||
| 770 | 0xcc,0x88,0x00,0x01,0xff,0x75,0xcc,0x84,0xcc,0x88,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 771 | 0xff,0x76,0xcc,0x83,0x00,0x01,0xff,0x76,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x76, | ||
| 772 | 0xcc,0xa3,0x00,0x01,0xff,0x76,0xcc,0xa3,0x00,0xe0,0x11,0x02,0xcf,0x86,0xd5,0xe2, | ||
| 773 | 0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0x80,0x00, | ||
| 774 | 0x01,0xff,0x77,0xcc,0x80,0x00,0x10,0x08,0x01,0xff,0x77,0xcc,0x81,0x00,0x01,0xff, | ||
| 775 | 0x77,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0x88,0x00,0x01,0xff, | ||
| 776 | 0x77,0xcc,0x88,0x00,0x10,0x08,0x01,0xff,0x77,0xcc,0x87,0x00,0x01,0xff,0x77,0xcc, | ||
| 777 | 0x87,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0xa3,0x00,0x01,0xff, | ||
| 778 | 0x77,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x78,0xcc,0x87,0x00,0x01,0xff,0x78,0xcc, | ||
| 779 | 0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x78,0xcc,0x88,0x00,0x01,0xff,0x78,0xcc, | ||
| 780 | 0x88,0x00,0x10,0x08,0x01,0xff,0x79,0xcc,0x87,0x00,0x01,0xff,0x79,0xcc,0x87,0x00, | ||
| 781 | 0xd3,0x33,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x7a,0xcc,0x82,0x00,0x01,0xff, | ||
| 782 | 0x7a,0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x7a,0xcc,0xa3,0x00,0x01,0xff,0x7a,0xcc, | ||
| 783 | 0xa3,0x00,0xe1,0x12,0x59,0x10,0x08,0x01,0xff,0x7a,0xcc,0xb1,0x00,0x01,0xff,0x7a, | ||
| 784 | 0xcc,0xb1,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0x8a,0x00,0x01, | ||
| 785 | 0xff,0x79,0xcc,0x8a,0x00,0x10,0x08,0x01,0xff,0x61,0xca,0xbe,0x00,0x02,0xff,0x73, | ||
| 786 | 0xcc,0x87,0x00,0x51,0x04,0x0a,0x00,0x10,0x07,0x0a,0xff,0x73,0x73,0x00,0x0a,0x00, | ||
| 787 | 0xd4,0x98,0xd3,0x48,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x61,0xcc,0xa3,0x00, | ||
| 788 | 0x01,0xff,0x61,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x61,0xcc,0x89,0x00,0x01,0xff, | ||
| 789 | 0x61,0xcc,0x89,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x61,0xcc,0x82,0xcc,0x81,0x00, | ||
| 790 | 0x01,0xff,0x61,0xcc,0x82,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x61,0xcc,0x82,0xcc, | ||
| 791 | 0x80,0x00,0x01,0xff,0x61,0xcc,0x82,0xcc,0x80,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a, | ||
| 792 | 0x01,0xff,0x61,0xcc,0x82,0xcc,0x89,0x00,0x01,0xff,0x61,0xcc,0x82,0xcc,0x89,0x00, | ||
| 793 | 0x10,0x0a,0x01,0xff,0x61,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x61,0xcc,0x82,0xcc, | ||
| 794 | 0x83,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x61,0xcc,0xa3,0xcc,0x82,0x00,0x01,0xff, | ||
| 795 | 0x61,0xcc,0xa3,0xcc,0x82,0x00,0x10,0x0a,0x01,0xff,0x61,0xcc,0x86,0xcc,0x81,0x00, | ||
| 796 | 0x01,0xff,0x61,0xcc,0x86,0xcc,0x81,0x00,0xd3,0x50,0xd2,0x28,0xd1,0x14,0x10,0x0a, | ||
| 797 | 0x01,0xff,0x61,0xcc,0x86,0xcc,0x80,0x00,0x01,0xff,0x61,0xcc,0x86,0xcc,0x80,0x00, | ||
| 798 | 0x10,0x0a,0x01,0xff,0x61,0xcc,0x86,0xcc,0x89,0x00,0x01,0xff,0x61,0xcc,0x86,0xcc, | ||
| 799 | 0x89,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x61,0xcc,0x86,0xcc,0x83,0x00,0x01,0xff, | ||
| 800 | 0x61,0xcc,0x86,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x61,0xcc,0xa3,0xcc,0x86,0x00, | ||
| 801 | 0x01,0xff,0x61,0xcc,0xa3,0xcc,0x86,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 802 | 0x65,0xcc,0xa3,0x00,0x01,0xff,0x65,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x65,0xcc, | ||
| 803 | 0x89,0x00,0x01,0xff,0x65,0xcc,0x89,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x65,0xcc, | ||
| 804 | 0x83,0x00,0x01,0xff,0x65,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x65,0xcc,0x82,0xcc, | ||
| 805 | 0x81,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x81,0x00,0xcf,0x86,0xe5,0x31,0x01,0xd4, | ||
| 806 | 0x90,0xd3,0x50,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x65,0xcc,0x82,0xcc,0x80, | ||
| 807 | 0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x65,0xcc,0x82, | ||
| 808 | 0xcc,0x89,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x89,0x00,0xd1,0x14,0x10,0x0a,0x01, | ||
| 809 | 0xff,0x65,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x83,0x00,0x10, | ||
| 810 | 0x0a,0x01,0xff,0x65,0xcc,0xa3,0xcc,0x82,0x00,0x01,0xff,0x65,0xcc,0xa3,0xcc,0x82, | ||
| 811 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc,0x89,0x00,0x01,0xff,0x69, | ||
| 812 | 0xcc,0x89,0x00,0x10,0x08,0x01,0xff,0x69,0xcc,0xa3,0x00,0x01,0xff,0x69,0xcc,0xa3, | ||
| 813 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0xa3,0x00,0x01,0xff,0x6f,0xcc,0xa3, | ||
| 814 | 0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x89,0x00,0xd3, | ||
| 815 | 0x50,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x81,0x00,0x01, | ||
| 816 | 0xff,0x6f,0xcc,0x82,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x80, | ||
| 817 | 0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x80,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f, | ||
| 818 | 0xcc,0x82,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x89,0x00,0x10,0x0a,0x01, | ||
| 819 | 0xff,0x6f,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x83,0x00,0xd2, | ||
| 820 | 0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0xa3,0xcc,0x82,0x00,0x01,0xff,0x6f, | ||
| 821 | 0xcc,0xa3,0xcc,0x82,0x00,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x81,0x00,0x01, | ||
| 822 | 0xff,0x6f,0xcc,0x9b,0xcc,0x81,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x9b, | ||
| 823 | 0xcc,0x80,0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x6f, | ||
| 824 | 0xcc,0x9b,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x89,0x00,0xd4,0x98,0xd3, | ||
| 825 | 0x48,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x83,0x00,0x01, | ||
| 826 | 0xff,0x6f,0xcc,0x9b,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0xa3, | ||
| 827 | 0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x75, | ||
| 828 | 0xcc,0xa3,0x00,0x01,0xff,0x75,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0x89, | ||
| 829 | 0x00,0x01,0xff,0x75,0xcc,0x89,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x75, | ||
| 830 | 0xcc,0x9b,0xcc,0x81,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x81,0x00,0x10,0x0a,0x01, | ||
| 831 | 0xff,0x75,0xcc,0x9b,0xcc,0x80,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x80,0x00,0xd1, | ||
| 832 | 0x14,0x10,0x0a,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x89,0x00,0x01,0xff,0x75,0xcc,0x9b, | ||
| 833 | 0xcc,0x89,0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x83,0x00,0x01,0xff,0x75, | ||
| 834 | 0xcc,0x9b,0xcc,0x83,0x00,0xd3,0x44,0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff,0x75, | ||
| 835 | 0xcc,0x9b,0xcc,0xa3,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0xa3,0x00,0x10,0x08,0x01, | ||
| 836 | 0xff,0x79,0xcc,0x80,0x00,0x01,0xff,0x79,0xcc,0x80,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 837 | 0xff,0x79,0xcc,0xa3,0x00,0x01,0xff,0x79,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x79, | ||
| 838 | 0xcc,0x89,0x00,0x01,0xff,0x79,0xcc,0x89,0x00,0xd2,0x1c,0xd1,0x10,0x10,0x08,0x01, | ||
| 839 | 0xff,0x79,0xcc,0x83,0x00,0x01,0xff,0x79,0xcc,0x83,0x00,0x10,0x08,0x0a,0xff,0xe1, | ||
| 840 | 0xbb,0xbb,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xe1,0xbb,0xbd,0x00,0x0a, | ||
| 841 | 0x00,0x10,0x08,0x0a,0xff,0xe1,0xbb,0xbf,0x00,0x0a,0x00,0xe1,0xbf,0x02,0xe0,0xa1, | ||
| 842 | 0x01,0xcf,0x86,0xd5,0xc6,0xd4,0x6c,0xd3,0x18,0xe2,0x0e,0x59,0xe1,0xf7,0x58,0x10, | ||
| 843 | 0x09,0x01,0xff,0xce,0xb1,0xcc,0x93,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0x00,0xd2, | ||
| 844 | 0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x93,0x00,0x01,0xff,0xce,0xb1, | ||
| 845 | 0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff, | ||
| 846 | 0xce,0xb1,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc, | ||
| 847 | 0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01, | ||
| 848 | 0xff,0xce,0xb1,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcd,0x82, | ||
| 849 | 0x00,0xd3,0x18,0xe2,0x4a,0x59,0xe1,0x33,0x59,0x10,0x09,0x01,0xff,0xce,0xb5,0xcc, | ||
| 850 | 0x93,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94,0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01, | ||
| 851 | 0xff,0xce,0xb5,0xcc,0x93,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94,0x00,0x10,0x0b,0x01, | ||
| 852 | 0xff,0xce,0xb5,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94,0xcc,0x80, | ||
| 853 | 0x00,0x91,0x16,0x10,0x0b,0x01,0xff,0xce,0xb5,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff, | ||
| 854 | 0xce,0xb5,0xcc,0x94,0xcc,0x81,0x00,0x00,0x00,0xd4,0x6c,0xd3,0x18,0xe2,0x74,0x59, | ||
| 855 | 0xe1,0x5d,0x59,0x10,0x09,0x01,0xff,0xce,0xb7,0xcc,0x93,0x00,0x01,0xff,0xce,0xb7, | ||
| 856 | 0xcc,0x94,0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb7,0xcc,0x93,0x00, | ||
| 857 | 0x01,0xff,0xce,0xb7,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc, | ||
| 858 | 0x80,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01, | ||
| 859 | 0xff,0xce,0xb7,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x81, | ||
| 860 | 0x00,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xb7, | ||
| 861 | 0xcc,0x94,0xcd,0x82,0x00,0xd3,0x18,0xe2,0xb0,0x59,0xe1,0x99,0x59,0x10,0x09,0x01, | ||
| 862 | 0xff,0xce,0xb9,0xcc,0x93,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94,0x00,0xd2,0x28,0xd1, | ||
| 863 | 0x12,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x93,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94, | ||
| 864 | 0x00,0x10,0x0b,0x01,0xff,0xce,0xb9,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xb9, | ||
| 865 | 0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb9,0xcc,0x93,0xcc, | ||
| 866 | 0x81,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff,0xce, | ||
| 867 | 0xb9,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94,0xcd,0x82,0x00,0xcf, | ||
| 868 | 0x86,0xd5,0xac,0xd4,0x5a,0xd3,0x18,0xe2,0xed,0x59,0xe1,0xd6,0x59,0x10,0x09,0x01, | ||
| 869 | 0xff,0xce,0xbf,0xcc,0x93,0x00,0x01,0xff,0xce,0xbf,0xcc,0x94,0x00,0xd2,0x28,0xd1, | ||
| 870 | 0x12,0x10,0x09,0x01,0xff,0xce,0xbf,0xcc,0x93,0x00,0x01,0xff,0xce,0xbf,0xcc,0x94, | ||
| 871 | 0x00,0x10,0x0b,0x01,0xff,0xce,0xbf,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xbf, | ||
| 872 | 0xcc,0x94,0xcc,0x80,0x00,0x91,0x16,0x10,0x0b,0x01,0xff,0xce,0xbf,0xcc,0x93,0xcc, | ||
| 873 | 0x81,0x00,0x01,0xff,0xce,0xbf,0xcc,0x94,0xcc,0x81,0x00,0x00,0x00,0xd3,0x18,0xe2, | ||
| 874 | 0x17,0x5a,0xe1,0x00,0x5a,0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x93,0x00,0x01,0xff, | ||
| 875 | 0xcf,0x85,0xcc,0x94,0x00,0xd2,0x1c,0xd1,0x0d,0x10,0x04,0x00,0x00,0x01,0xff,0xcf, | ||
| 876 | 0x85,0xcc,0x94,0x00,0x10,0x04,0x00,0x00,0x01,0xff,0xcf,0x85,0xcc,0x94,0xcc,0x80, | ||
| 877 | 0x00,0xd1,0x0f,0x10,0x04,0x00,0x00,0x01,0xff,0xcf,0x85,0xcc,0x94,0xcc,0x81,0x00, | ||
| 878 | 0x10,0x04,0x00,0x00,0x01,0xff,0xcf,0x85,0xcc,0x94,0xcd,0x82,0x00,0xe4,0xd3,0x5a, | ||
| 879 | 0xd3,0x18,0xe2,0x52,0x5a,0xe1,0x3b,0x5a,0x10,0x09,0x01,0xff,0xcf,0x89,0xcc,0x93, | ||
| 880 | 0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff, | ||
| 881 | 0xcf,0x89,0xcc,0x93,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff, | ||
| 882 | 0xcf,0x89,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc,0x80,0x00, | ||
| 883 | 0xd1,0x16,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xcf, | ||
| 884 | 0x89,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcd,0x82, | ||
| 885 | 0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcd,0x82,0x00,0xe0,0xd9,0x02,0xcf,0x86,0xe5, | ||
| 886 | 0x91,0x01,0xd4,0xc8,0xd3,0x64,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb1, | ||
| 887 | 0xcc,0x93,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xce,0xb9,0x00,0x10,0x0d, | ||
| 888 | 0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xcc, | ||
| 889 | 0x94,0xcc,0x80,0xce,0xb9,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93, | ||
| 890 | 0xcc,0x81,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcc,0x81,0xce,0xb9,0x00, | ||
| 891 | 0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcd,0x82,0xce,0xb9,0x00,0x01,0xff,0xce, | ||
| 892 | 0xb1,0xcc,0x94,0xcd,0x82,0xce,0xb9,0x00,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff, | ||
| 893 | 0xce,0xb1,0xcc,0x93,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xce,0xb9,0x00, | ||
| 894 | 0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xce, | ||
| 895 | 0xb1,0xcc,0x94,0xcc,0x80,0xce,0xb9,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xce,0xb1, | ||
| 896 | 0xcc,0x93,0xcc,0x81,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcc,0x81,0xce, | ||
| 897 | 0xb9,0x00,0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcd,0x82,0xce,0xb9,0x00,0x01, | ||
| 898 | 0xff,0xce,0xb1,0xcc,0x94,0xcd,0x82,0xce,0xb9,0x00,0xd3,0x64,0xd2,0x30,0xd1,0x16, | ||
| 899 | 0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xcc, | ||
| 900 | 0x94,0xce,0xb9,0x00,0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x80,0xce,0xb9, | ||
| 901 | 0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x80,0xce,0xb9,0x00,0xd1,0x1a,0x10,0x0d, | ||
| 902 | 0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x81,0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xcc, | ||
| 903 | 0x94,0xcc,0x81,0xce,0xb9,0x00,0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcd,0x82, | ||
| 904 | 0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcd,0x82,0xce,0xb9,0x00,0xd2,0x30, | ||
| 905 | 0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xce,0xb9,0x00,0x01,0xff,0xce, | ||
| 906 | 0xb7,0xcc,0x94,0xce,0xb9,0x00,0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x80, | ||
| 907 | 0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x80,0xce,0xb9,0x00,0xd1,0x1a, | ||
| 908 | 0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x81,0xce,0xb9,0x00,0x01,0xff,0xce, | ||
| 909 | 0xb7,0xcc,0x94,0xcc,0x81,0xce,0xb9,0x00,0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93, | ||
| 910 | 0xcd,0x82,0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcd,0x82,0xce,0xb9,0x00, | ||
| 911 | 0xd4,0xc8,0xd3,0x64,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x93, | ||
| 912 | 0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xce,0xb9,0x00,0x10,0x0d,0x01,0xff, | ||
| 913 | 0xcf,0x89,0xcc,0x93,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc, | ||
| 914 | 0x80,0xce,0xb9,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x81, | ||
| 915 | 0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc,0x81,0xce,0xb9,0x00,0x10,0x0d, | ||
| 916 | 0x01,0xff,0xcf,0x89,0xcc,0x93,0xcd,0x82,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc, | ||
| 917 | 0x94,0xcd,0x82,0xce,0xb9,0x00,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff,0xcf,0x89, | ||
| 918 | 0xcc,0x93,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xce,0xb9,0x00,0x10,0x0d, | ||
| 919 | 0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc, | ||
| 920 | 0x94,0xcc,0x80,0xce,0xb9,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xcf,0x89,0xcc,0x93, | ||
| 921 | 0xcc,0x81,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc,0x81,0xce,0xb9,0x00, | ||
| 922 | 0x10,0x0d,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcd,0x82,0xce,0xb9,0x00,0x01,0xff,0xcf, | ||
| 923 | 0x89,0xcc,0x94,0xcd,0x82,0xce,0xb9,0x00,0xd3,0x49,0xd2,0x26,0xd1,0x12,0x10,0x09, | ||
| 924 | 0x01,0xff,0xce,0xb1,0xcc,0x86,0x00,0x01,0xff,0xce,0xb1,0xcc,0x84,0x00,0x10,0x0b, | ||
| 925 | 0x01,0xff,0xce,0xb1,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xce,0xb1,0xce,0xb9,0x00, | ||
| 926 | 0xd1,0x0f,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x81,0xce,0xb9,0x00,0x00,0x00,0x10, | ||
| 927 | 0x09,0x01,0xff,0xce,0xb1,0xcd,0x82,0x00,0x01,0xff,0xce,0xb1,0xcd,0x82,0xce,0xb9, | ||
| 928 | 0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x86,0x00,0x01,0xff, | ||
| 929 | 0xce,0xb1,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x80,0x00,0x01,0xff, | ||
| 930 | 0xce,0xb1,0xcc,0x81,0x00,0xe1,0xf3,0x5a,0x10,0x09,0x01,0xff,0xce,0xb1,0xce,0xb9, | ||
| 931 | 0x00,0x01,0x00,0xcf,0x86,0xd5,0xbd,0xd4,0x7e,0xd3,0x44,0xd2,0x21,0xd1,0x0d,0x10, | ||
| 932 | 0x04,0x01,0x00,0x01,0xff,0xc2,0xa8,0xcd,0x82,0x00,0x10,0x0b,0x01,0xff,0xce,0xb7, | ||
| 933 | 0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xce,0xb7,0xce,0xb9,0x00,0xd1,0x0f,0x10,0x0b, | ||
| 934 | 0x01,0xff,0xce,0xb7,0xcc,0x81,0xce,0xb9,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xce, | ||
| 935 | 0xb7,0xcd,0x82,0x00,0x01,0xff,0xce,0xb7,0xcd,0x82,0xce,0xb9,0x00,0xd2,0x24,0xd1, | ||
| 936 | 0x12,0x10,0x09,0x01,0xff,0xce,0xb5,0xcc,0x80,0x00,0x01,0xff,0xce,0xb5,0xcc,0x81, | ||
| 937 | 0x00,0x10,0x09,0x01,0xff,0xce,0xb7,0xcc,0x80,0x00,0x01,0xff,0xce,0xb7,0xcc,0x81, | ||
| 938 | 0x00,0xe1,0x02,0x5b,0x10,0x09,0x01,0xff,0xce,0xb7,0xce,0xb9,0x00,0x01,0xff,0xe1, | ||
| 939 | 0xbe,0xbf,0xcc,0x80,0x00,0xd3,0x18,0xe2,0x28,0x5b,0xe1,0x11,0x5b,0x10,0x09,0x01, | ||
| 940 | 0xff,0xce,0xb9,0xcc,0x86,0x00,0x01,0xff,0xce,0xb9,0xcc,0x84,0x00,0xe2,0x4c,0x5b, | ||
| 941 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x86,0x00,0x01,0xff,0xce,0xb9,0xcc, | ||
| 942 | 0x84,0x00,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x80,0x00,0x01,0xff,0xce,0xb9,0xcc, | ||
| 943 | 0x81,0x00,0xd4,0x51,0xd3,0x18,0xe2,0x6f,0x5b,0xe1,0x58,0x5b,0x10,0x09,0x01,0xff, | ||
| 944 | 0xcf,0x85,0xcc,0x86,0x00,0x01,0xff,0xcf,0x85,0xcc,0x84,0x00,0xd2,0x24,0xd1,0x12, | ||
| 945 | 0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x86,0x00,0x01,0xff,0xcf,0x85,0xcc,0x84,0x00, | ||
| 946 | 0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x80,0x00,0x01,0xff,0xcf,0x85,0xcc,0x81,0x00, | ||
| 947 | 0xe1,0x8f,0x5b,0x10,0x09,0x01,0xff,0xcf,0x81,0xcc,0x94,0x00,0x01,0xff,0xc2,0xa8, | ||
| 948 | 0xcc,0x80,0x00,0xd3,0x3b,0xd2,0x18,0x51,0x04,0x00,0x00,0x10,0x0b,0x01,0xff,0xcf, | ||
| 949 | 0x89,0xcc,0x80,0xce,0xb9,0x00,0x01,0xff,0xcf,0x89,0xce,0xb9,0x00,0xd1,0x0f,0x10, | ||
| 950 | 0x0b,0x01,0xff,0xcf,0x89,0xcc,0x81,0xce,0xb9,0x00,0x00,0x00,0x10,0x09,0x01,0xff, | ||
| 951 | 0xcf,0x89,0xcd,0x82,0x00,0x01,0xff,0xcf,0x89,0xcd,0x82,0xce,0xb9,0x00,0xd2,0x24, | ||
| 952 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xbf,0xcc,0x80,0x00,0x01,0xff,0xce,0xbf,0xcc, | ||
| 953 | 0x81,0x00,0x10,0x09,0x01,0xff,0xcf,0x89,0xcc,0x80,0x00,0x01,0xff,0xcf,0x89,0xcc, | ||
| 954 | 0x81,0x00,0xe1,0x99,0x5b,0x10,0x09,0x01,0xff,0xcf,0x89,0xce,0xb9,0x00,0x01,0xff, | ||
| 955 | 0xc2,0xb4,0x00,0xe0,0x0c,0x68,0xcf,0x86,0xe5,0x23,0x02,0xe4,0x25,0x01,0xe3,0x85, | ||
| 956 | 0x5e,0xd2,0x2a,0xe1,0x5f,0x5c,0xe0,0xdd,0x5b,0xcf,0x86,0xe5,0xbb,0x5b,0x94,0x1b, | ||
| 957 | 0xe3,0xa4,0x5b,0x92,0x14,0x91,0x10,0x10,0x08,0x01,0xff,0xe2,0x80,0x82,0x00,0x01, | ||
| 958 | 0xff,0xe2,0x80,0x83,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd1,0xd6,0xd0,0x46,0xcf, | ||
| 959 | 0x86,0x55,0x04,0x01,0x00,0xd4,0x29,0xd3,0x13,0x52,0x04,0x01,0x00,0x51,0x04,0x01, | ||
| 960 | 0x00,0x10,0x07,0x01,0xff,0xcf,0x89,0x00,0x01,0x00,0x92,0x12,0x51,0x04,0x01,0x00, | ||
| 961 | 0x10,0x06,0x01,0xff,0x6b,0x00,0x01,0xff,0x61,0xcc,0x8a,0x00,0x01,0x00,0xe3,0x25, | ||
| 962 | 0x5d,0x92,0x10,0x51,0x04,0x01,0x00,0x10,0x08,0x01,0xff,0xe2,0x85,0x8e,0x00,0x01, | ||
| 963 | 0x00,0x01,0x00,0xcf,0x86,0xd5,0x0a,0xe4,0x42,0x5d,0x63,0x2d,0x5d,0x06,0x00,0x94, | ||
| 964 | 0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x85,0xb0,0x00,0x01, | ||
| 965 | 0xff,0xe2,0x85,0xb1,0x00,0x10,0x08,0x01,0xff,0xe2,0x85,0xb2,0x00,0x01,0xff,0xe2, | ||
| 966 | 0x85,0xb3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x85,0xb4,0x00,0x01,0xff,0xe2, | ||
| 967 | 0x85,0xb5,0x00,0x10,0x08,0x01,0xff,0xe2,0x85,0xb6,0x00,0x01,0xff,0xe2,0x85,0xb7, | ||
| 968 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x85,0xb8,0x00,0x01,0xff,0xe2, | ||
| 969 | 0x85,0xb9,0x00,0x10,0x08,0x01,0xff,0xe2,0x85,0xba,0x00,0x01,0xff,0xe2,0x85,0xbb, | ||
| 970 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x85,0xbc,0x00,0x01,0xff,0xe2,0x85,0xbd, | ||
| 971 | 0x00,0x10,0x08,0x01,0xff,0xe2,0x85,0xbe,0x00,0x01,0xff,0xe2,0x85,0xbf,0x00,0x01, | ||
| 972 | 0x00,0xe0,0x34,0x5d,0xcf,0x86,0xe5,0x13,0x5d,0xe4,0xf2,0x5c,0xe3,0xe1,0x5c,0xe2, | ||
| 973 | 0xd4,0x5c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x04,0xff,0xe2,0x86,0x84,0x00, | ||
| 974 | 0xe3,0x23,0x61,0xe2,0xf0,0x60,0xd1,0x0c,0xe0,0x9d,0x60,0xcf,0x86,0x65,0x7e,0x60, | ||
| 975 | 0x01,0x00,0xd0,0x62,0xcf,0x86,0x55,0x04,0x01,0x00,0x54,0x04,0x01,0x00,0xd3,0x18, | ||
| 976 | 0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x08,0x01,0xff,0xe2,0x93,0x90,0x00, | ||
| 977 | 0x01,0xff,0xe2,0x93,0x91,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x93, | ||
| 978 | 0x92,0x00,0x01,0xff,0xe2,0x93,0x93,0x00,0x10,0x08,0x01,0xff,0xe2,0x93,0x94,0x00, | ||
| 979 | 0x01,0xff,0xe2,0x93,0x95,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe2,0x93,0x96,0x00, | ||
| 980 | 0x01,0xff,0xe2,0x93,0x97,0x00,0x10,0x08,0x01,0xff,0xe2,0x93,0x98,0x00,0x01,0xff, | ||
| 981 | 0xe2,0x93,0x99,0x00,0xcf,0x86,0xe5,0x57,0x60,0x94,0x80,0xd3,0x40,0xd2,0x20,0xd1, | ||
| 982 | 0x10,0x10,0x08,0x01,0xff,0xe2,0x93,0x9a,0x00,0x01,0xff,0xe2,0x93,0x9b,0x00,0x10, | ||
| 983 | 0x08,0x01,0xff,0xe2,0x93,0x9c,0x00,0x01,0xff,0xe2,0x93,0x9d,0x00,0xd1,0x10,0x10, | ||
| 984 | 0x08,0x01,0xff,0xe2,0x93,0x9e,0x00,0x01,0xff,0xe2,0x93,0x9f,0x00,0x10,0x08,0x01, | ||
| 985 | 0xff,0xe2,0x93,0xa0,0x00,0x01,0xff,0xe2,0x93,0xa1,0x00,0xd2,0x20,0xd1,0x10,0x10, | ||
| 986 | 0x08,0x01,0xff,0xe2,0x93,0xa2,0x00,0x01,0xff,0xe2,0x93,0xa3,0x00,0x10,0x08,0x01, | ||
| 987 | 0xff,0xe2,0x93,0xa4,0x00,0x01,0xff,0xe2,0x93,0xa5,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 988 | 0xff,0xe2,0x93,0xa6,0x00,0x01,0xff,0xe2,0x93,0xa7,0x00,0x10,0x08,0x01,0xff,0xe2, | ||
| 989 | 0x93,0xa8,0x00,0x01,0xff,0xe2,0x93,0xa9,0x00,0x01,0x00,0xd4,0x0c,0xe3,0x33,0x62, | ||
| 990 | 0xe2,0x2c,0x62,0xcf,0x06,0x04,0x00,0xe3,0x0c,0x65,0xe2,0xff,0x63,0xe1,0x2e,0x02, | ||
| 991 | 0xe0,0x84,0x01,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 992 | 0x10,0x08,0x08,0xff,0xe2,0xb0,0xb0,0x00,0x08,0xff,0xe2,0xb0,0xb1,0x00,0x10,0x08, | ||
| 993 | 0x08,0xff,0xe2,0xb0,0xb2,0x00,0x08,0xff,0xe2,0xb0,0xb3,0x00,0xd1,0x10,0x10,0x08, | ||
| 994 | 0x08,0xff,0xe2,0xb0,0xb4,0x00,0x08,0xff,0xe2,0xb0,0xb5,0x00,0x10,0x08,0x08,0xff, | ||
| 995 | 0xe2,0xb0,0xb6,0x00,0x08,0xff,0xe2,0xb0,0xb7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 996 | 0x08,0xff,0xe2,0xb0,0xb8,0x00,0x08,0xff,0xe2,0xb0,0xb9,0x00,0x10,0x08,0x08,0xff, | ||
| 997 | 0xe2,0xb0,0xba,0x00,0x08,0xff,0xe2,0xb0,0xbb,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 998 | 0xe2,0xb0,0xbc,0x00,0x08,0xff,0xe2,0xb0,0xbd,0x00,0x10,0x08,0x08,0xff,0xe2,0xb0, | ||
| 999 | 0xbe,0x00,0x08,0xff,0xe2,0xb0,0xbf,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 1000 | 0x08,0xff,0xe2,0xb1,0x80,0x00,0x08,0xff,0xe2,0xb1,0x81,0x00,0x10,0x08,0x08,0xff, | ||
| 1001 | 0xe2,0xb1,0x82,0x00,0x08,0xff,0xe2,0xb1,0x83,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 1002 | 0xe2,0xb1,0x84,0x00,0x08,0xff,0xe2,0xb1,0x85,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1003 | 0x86,0x00,0x08,0xff,0xe2,0xb1,0x87,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 1004 | 0xe2,0xb1,0x88,0x00,0x08,0xff,0xe2,0xb1,0x89,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1005 | 0x8a,0x00,0x08,0xff,0xe2,0xb1,0x8b,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1006 | 0x8c,0x00,0x08,0xff,0xe2,0xb1,0x8d,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1,0x8e,0x00, | ||
| 1007 | 0x08,0xff,0xe2,0xb1,0x8f,0x00,0x94,0x7c,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 1008 | 0x08,0xff,0xe2,0xb1,0x90,0x00,0x08,0xff,0xe2,0xb1,0x91,0x00,0x10,0x08,0x08,0xff, | ||
| 1009 | 0xe2,0xb1,0x92,0x00,0x08,0xff,0xe2,0xb1,0x93,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 1010 | 0xe2,0xb1,0x94,0x00,0x08,0xff,0xe2,0xb1,0x95,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1011 | 0x96,0x00,0x08,0xff,0xe2,0xb1,0x97,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 1012 | 0xe2,0xb1,0x98,0x00,0x08,0xff,0xe2,0xb1,0x99,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1013 | 0x9a,0x00,0x08,0xff,0xe2,0xb1,0x9b,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe2,0xb1, | ||
| 1014 | 0x9c,0x00,0x08,0xff,0xe2,0xb1,0x9d,0x00,0x10,0x08,0x08,0xff,0xe2,0xb1,0x9e,0x00, | ||
| 1015 | 0x00,0x00,0x08,0x00,0xcf,0x86,0xd5,0x07,0x64,0xef,0x61,0x08,0x00,0xd4,0x63,0xd3, | ||
| 1016 | 0x32,0xd2,0x1b,0xd1,0x0c,0x10,0x08,0x09,0xff,0xe2,0xb1,0xa1,0x00,0x09,0x00,0x10, | ||
| 1017 | 0x07,0x09,0xff,0xc9,0xab,0x00,0x09,0xff,0xe1,0xb5,0xbd,0x00,0xd1,0x0b,0x10,0x07, | ||
| 1018 | 0x09,0xff,0xc9,0xbd,0x00,0x09,0x00,0x10,0x04,0x09,0x00,0x09,0xff,0xe2,0xb1,0xa8, | ||
| 1019 | 0x00,0xd2,0x18,0xd1,0x0c,0x10,0x04,0x09,0x00,0x09,0xff,0xe2,0xb1,0xaa,0x00,0x10, | ||
| 1020 | 0x04,0x09,0x00,0x09,0xff,0xe2,0xb1,0xac,0x00,0xd1,0x0b,0x10,0x04,0x09,0x00,0x0a, | ||
| 1021 | 0xff,0xc9,0x91,0x00,0x10,0x07,0x0a,0xff,0xc9,0xb1,0x00,0x0a,0xff,0xc9,0x90,0x00, | ||
| 1022 | 0xd3,0x27,0xd2,0x17,0xd1,0x0b,0x10,0x07,0x0b,0xff,0xc9,0x92,0x00,0x0a,0x00,0x10, | ||
| 1023 | 0x08,0x0a,0xff,0xe2,0xb1,0xb3,0x00,0x0a,0x00,0x91,0x0c,0x10,0x04,0x09,0x00,0x09, | ||
| 1024 | 0xff,0xe2,0xb1,0xb6,0x00,0x09,0x00,0x52,0x04,0x0a,0x00,0x51,0x04,0x0a,0x00,0x10, | ||
| 1025 | 0x07,0x0b,0xff,0xc8,0xbf,0x00,0x0b,0xff,0xc9,0x80,0x00,0xe0,0x83,0x01,0xcf,0x86, | ||
| 1026 | 0xd5,0xc0,0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2, | ||
| 1027 | 0x81,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x83,0x00,0x08,0x00,0xd1,0x0c, | ||
| 1028 | 0x10,0x08,0x08,0xff,0xe2,0xb2,0x85,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2, | ||
| 1029 | 0x87,0x00,0x08,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0x89,0x00, | ||
| 1030 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x8b,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08, | ||
| 1031 | 0x08,0xff,0xe2,0xb2,0x8d,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x8f,0x00, | ||
| 1032 | 0x08,0x00,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0x91,0x00, | ||
| 1033 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x93,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08, | ||
| 1034 | 0x08,0xff,0xe2,0xb2,0x95,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x97,0x00, | ||
| 1035 | 0x08,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0x99,0x00,0x08,0x00, | ||
| 1036 | 0x10,0x08,0x08,0xff,0xe2,0xb2,0x9b,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08,0x08,0xff, | ||
| 1037 | 0xe2,0xb2,0x9d,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0x9f,0x00,0x08,0x00, | ||
| 1038 | 0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0xa1,0x00, | ||
| 1039 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0xa3,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08, | ||
| 1040 | 0x08,0xff,0xe2,0xb2,0xa5,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0xa7,0x00, | ||
| 1041 | 0x08,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0xa9,0x00,0x08,0x00, | ||
| 1042 | 0x10,0x08,0x08,0xff,0xe2,0xb2,0xab,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08,0x08,0xff, | ||
| 1043 | 0xe2,0xb2,0xad,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0xaf,0x00,0x08,0x00, | ||
| 1044 | 0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0xb1,0x00,0x08,0x00, | ||
| 1045 | 0x10,0x08,0x08,0xff,0xe2,0xb2,0xb3,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08,0x08,0xff, | ||
| 1046 | 0xe2,0xb2,0xb5,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0xb7,0x00,0x08,0x00, | ||
| 1047 | 0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2,0xb9,0x00,0x08,0x00,0x10,0x08, | ||
| 1048 | 0x08,0xff,0xe2,0xb2,0xbb,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb2, | ||
| 1049 | 0xbd,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb2,0xbf,0x00,0x08,0x00,0xcf,0x86, | ||
| 1050 | 0xd5,0xc0,0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb3, | ||
| 1051 | 0x81,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x83,0x00,0x08,0x00,0xd1,0x0c, | ||
| 1052 | 0x10,0x08,0x08,0xff,0xe2,0xb3,0x85,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3, | ||
| 1053 | 0x87,0x00,0x08,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb3,0x89,0x00, | ||
| 1054 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x8b,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08, | ||
| 1055 | 0x08,0xff,0xe2,0xb3,0x8d,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x8f,0x00, | ||
| 1056 | 0x08,0x00,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb3,0x91,0x00, | ||
| 1057 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x93,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08, | ||
| 1058 | 0x08,0xff,0xe2,0xb3,0x95,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x97,0x00, | ||
| 1059 | 0x08,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb3,0x99,0x00,0x08,0x00, | ||
| 1060 | 0x10,0x08,0x08,0xff,0xe2,0xb3,0x9b,0x00,0x08,0x00,0xd1,0x0c,0x10,0x08,0x08,0xff, | ||
| 1061 | 0xe2,0xb3,0x9d,0x00,0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0x9f,0x00,0x08,0x00, | ||
| 1062 | 0xd4,0x3b,0xd3,0x1c,0x92,0x18,0xd1,0x0c,0x10,0x08,0x08,0xff,0xe2,0xb3,0xa1,0x00, | ||
| 1063 | 0x08,0x00,0x10,0x08,0x08,0xff,0xe2,0xb3,0xa3,0x00,0x08,0x00,0x08,0x00,0xd2,0x10, | ||
| 1064 | 0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x0b,0xff,0xe2,0xb3,0xac,0x00,0xe1,0x3b, | ||
| 1065 | 0x5f,0x10,0x04,0x0b,0x00,0x0b,0xff,0xe2,0xb3,0xae,0x00,0xe3,0x40,0x5f,0x92,0x10, | ||
| 1066 | 0x51,0x04,0x0b,0xe6,0x10,0x08,0x0d,0xff,0xe2,0xb3,0xb3,0x00,0x0d,0x00,0x00,0x00, | ||
| 1067 | 0xe2,0x98,0x08,0xd1,0x0b,0xe0,0x11,0x67,0xcf,0x86,0xcf,0x06,0x01,0x00,0xe0,0x65, | ||
| 1068 | 0x6c,0xcf,0x86,0xe5,0xa7,0x05,0xd4,0x06,0xcf,0x06,0x04,0x00,0xd3,0x0c,0xe2,0xf8, | ||
| 1069 | 0x67,0xe1,0x8f,0x67,0xcf,0x06,0x04,0x00,0xe2,0xdb,0x01,0xe1,0x26,0x01,0xd0,0x09, | ||
| 1070 | 0xcf,0x86,0x65,0xf4,0x67,0x0a,0x00,0xcf,0x86,0xd5,0xc0,0xd4,0x60,0xd3,0x30,0xd2, | ||
| 1071 | 0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x81,0x00,0x0a,0x00,0x10,0x08,0x0a, | ||
| 1072 | 0xff,0xea,0x99,0x83,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x85, | ||
| 1073 | 0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x99,0x87,0x00,0x0a,0x00,0xd2,0x18,0xd1, | ||
| 1074 | 0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x89,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea, | ||
| 1075 | 0x99,0x8b,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x8d,0x00,0x0a, | ||
| 1076 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x99,0x8f,0x00,0x0a,0x00,0xd3,0x30,0xd2,0x18,0xd1, | ||
| 1077 | 0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x91,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea, | ||
| 1078 | 0x99,0x93,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x95,0x00,0x0a, | ||
| 1079 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x99,0x97,0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10, | ||
| 1080 | 0x08,0x0a,0xff,0xea,0x99,0x99,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x99,0x9b, | ||
| 1081 | 0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0x9d,0x00,0x0a,0x00,0x10, | ||
| 1082 | 0x08,0x0a,0xff,0xea,0x99,0x9f,0x00,0x0a,0x00,0xe4,0x5d,0x67,0xd3,0x30,0xd2,0x18, | ||
| 1083 | 0xd1,0x0c,0x10,0x08,0x0c,0xff,0xea,0x99,0xa1,0x00,0x0c,0x00,0x10,0x08,0x0a,0xff, | ||
| 1084 | 0xea,0x99,0xa3,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x99,0xa5,0x00, | ||
| 1085 | 0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x99,0xa7,0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c, | ||
| 1086 | 0x10,0x08,0x0a,0xff,0xea,0x99,0xa9,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x99, | ||
| 1087 | 0xab,0x00,0x0a,0x00,0xe1,0x0c,0x67,0x10,0x08,0x0a,0xff,0xea,0x99,0xad,0x00,0x0a, | ||
| 1088 | 0x00,0xe0,0x35,0x67,0xcf,0x86,0x95,0xab,0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c, | ||
| 1089 | 0x10,0x08,0x0a,0xff,0xea,0x9a,0x81,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9a, | ||
| 1090 | 0x83,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9a,0x85,0x00,0x0a,0x00, | ||
| 1091 | 0x10,0x08,0x0a,0xff,0xea,0x9a,0x87,0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08, | ||
| 1092 | 0x0a,0xff,0xea,0x9a,0x89,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9a,0x8b,0x00, | ||
| 1093 | 0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9a,0x8d,0x00,0x0a,0x00,0x10,0x08, | ||
| 1094 | 0x0a,0xff,0xea,0x9a,0x8f,0x00,0x0a,0x00,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08, | ||
| 1095 | 0x0a,0xff,0xea,0x9a,0x91,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9a,0x93,0x00, | ||
| 1096 | 0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9a,0x95,0x00,0x0a,0x00,0x10,0x08, | ||
| 1097 | 0x0a,0xff,0xea,0x9a,0x97,0x00,0x0a,0x00,0xe2,0x92,0x66,0xd1,0x0c,0x10,0x08,0x10, | ||
| 1098 | 0xff,0xea,0x9a,0x99,0x00,0x10,0x00,0x10,0x08,0x10,0xff,0xea,0x9a,0x9b,0x00,0x10, | ||
| 1099 | 0x00,0x0b,0x00,0xe1,0x10,0x02,0xd0,0xb9,0xcf,0x86,0xd5,0x07,0x64,0x9e,0x66,0x08, | ||
| 1100 | 0x00,0xd4,0x58,0xd3,0x28,0xd2,0x10,0x51,0x04,0x09,0x00,0x10,0x08,0x0a,0xff,0xea, | ||
| 1101 | 0x9c,0xa3,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9c,0xa5,0x00,0x0a, | ||
| 1102 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x9c,0xa7,0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10, | ||
| 1103 | 0x08,0x0a,0xff,0xea,0x9c,0xa9,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9c,0xab, | ||
| 1104 | 0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9c,0xad,0x00,0x0a,0x00,0x10, | ||
| 1105 | 0x08,0x0a,0xff,0xea,0x9c,0xaf,0x00,0x0a,0x00,0xd3,0x28,0xd2,0x10,0x51,0x04,0x0a, | ||
| 1106 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x9c,0xb3,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a, | ||
| 1107 | 0xff,0xea,0x9c,0xb5,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9c,0xb7,0x00,0x0a, | ||
| 1108 | 0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9c,0xb9,0x00,0x0a,0x00,0x10, | ||
| 1109 | 0x08,0x0a,0xff,0xea,0x9c,0xbb,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea, | ||
| 1110 | 0x9c,0xbd,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9c,0xbf,0x00,0x0a,0x00,0xcf, | ||
| 1111 | 0x86,0xd5,0xc0,0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea, | ||
| 1112 | 0x9d,0x81,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x83,0x00,0x0a,0x00,0xd1, | ||
| 1113 | 0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0x85,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea, | ||
| 1114 | 0x9d,0x87,0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0x89, | ||
| 1115 | 0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x8b,0x00,0x0a,0x00,0xd1,0x0c,0x10, | ||
| 1116 | 0x08,0x0a,0xff,0xea,0x9d,0x8d,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x8f, | ||
| 1117 | 0x00,0x0a,0x00,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0x91, | ||
| 1118 | 0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x93,0x00,0x0a,0x00,0xd1,0x0c,0x10, | ||
| 1119 | 0x08,0x0a,0xff,0xea,0x9d,0x95,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x97, | ||
| 1120 | 0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0x99,0x00,0x0a, | ||
| 1121 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x9b,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a, | ||
| 1122 | 0xff,0xea,0x9d,0x9d,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0x9f,0x00,0x0a, | ||
| 1123 | 0x00,0xd4,0x60,0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0xa1, | ||
| 1124 | 0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0xa3,0x00,0x0a,0x00,0xd1,0x0c,0x10, | ||
| 1125 | 0x08,0x0a,0xff,0xea,0x9d,0xa5,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0xa7, | ||
| 1126 | 0x00,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9d,0xa9,0x00,0x0a, | ||
| 1127 | 0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0xab,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a, | ||
| 1128 | 0xff,0xea,0x9d,0xad,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0xaf,0x00,0x0a, | ||
| 1129 | 0x00,0x53,0x04,0x0a,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x04,0x0a,0x00,0x0a,0xff,0xea, | ||
| 1130 | 0x9d,0xba,0x00,0x10,0x04,0x0a,0x00,0x0a,0xff,0xea,0x9d,0xbc,0x00,0xd1,0x0c,0x10, | ||
| 1131 | 0x04,0x0a,0x00,0x0a,0xff,0xe1,0xb5,0xb9,0x00,0x10,0x08,0x0a,0xff,0xea,0x9d,0xbf, | ||
| 1132 | 0x00,0x0a,0x00,0xe0,0x71,0x01,0xcf,0x86,0xd5,0xa6,0xd4,0x4e,0xd3,0x30,0xd2,0x18, | ||
| 1133 | 0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9e,0x81,0x00,0x0a,0x00,0x10,0x08,0x0a,0xff, | ||
| 1134 | 0xea,0x9e,0x83,0x00,0x0a,0x00,0xd1,0x0c,0x10,0x08,0x0a,0xff,0xea,0x9e,0x85,0x00, | ||
| 1135 | 0x0a,0x00,0x10,0x08,0x0a,0xff,0xea,0x9e,0x87,0x00,0x0a,0x00,0xd2,0x10,0x51,0x04, | ||
| 1136 | 0x0a,0x00,0x10,0x04,0x0a,0x00,0x0a,0xff,0xea,0x9e,0x8c,0x00,0xe1,0x9a,0x64,0x10, | ||
| 1137 | 0x04,0x0a,0x00,0x0c,0xff,0xc9,0xa5,0x00,0xd3,0x28,0xd2,0x18,0xd1,0x0c,0x10,0x08, | ||
| 1138 | 0x0c,0xff,0xea,0x9e,0x91,0x00,0x0c,0x00,0x10,0x08,0x0d,0xff,0xea,0x9e,0x93,0x00, | ||
| 1139 | 0x0d,0x00,0x51,0x04,0x10,0x00,0x10,0x08,0x10,0xff,0xea,0x9e,0x97,0x00,0x10,0x00, | ||
| 1140 | 0xd2,0x18,0xd1,0x0c,0x10,0x08,0x10,0xff,0xea,0x9e,0x99,0x00,0x10,0x00,0x10,0x08, | ||
| 1141 | 0x10,0xff,0xea,0x9e,0x9b,0x00,0x10,0x00,0xd1,0x0c,0x10,0x08,0x10,0xff,0xea,0x9e, | ||
| 1142 | 0x9d,0x00,0x10,0x00,0x10,0x08,0x10,0xff,0xea,0x9e,0x9f,0x00,0x10,0x00,0xd4,0x63, | ||
| 1143 | 0xd3,0x30,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x0c,0xff,0xea,0x9e,0xa1,0x00,0x0c,0x00, | ||
| 1144 | 0x10,0x08,0x0c,0xff,0xea,0x9e,0xa3,0x00,0x0c,0x00,0xd1,0x0c,0x10,0x08,0x0c,0xff, | ||
| 1145 | 0xea,0x9e,0xa5,0x00,0x0c,0x00,0x10,0x08,0x0c,0xff,0xea,0x9e,0xa7,0x00,0x0c,0x00, | ||
| 1146 | 0xd2,0x1a,0xd1,0x0c,0x10,0x08,0x0c,0xff,0xea,0x9e,0xa9,0x00,0x0c,0x00,0x10,0x07, | ||
| 1147 | 0x0d,0xff,0xc9,0xa6,0x00,0x10,0xff,0xc9,0x9c,0x00,0xd1,0x0e,0x10,0x07,0x10,0xff, | ||
| 1148 | 0xc9,0xa1,0x00,0x10,0xff,0xc9,0xac,0x00,0x10,0x07,0x12,0xff,0xc9,0xaa,0x00,0x14, | ||
| 1149 | 0x00,0xd3,0x35,0xd2,0x1d,0xd1,0x0e,0x10,0x07,0x10,0xff,0xca,0x9e,0x00,0x10,0xff, | ||
| 1150 | 0xca,0x87,0x00,0x10,0x07,0x11,0xff,0xca,0x9d,0x00,0x11,0xff,0xea,0xad,0x93,0x00, | ||
| 1151 | 0xd1,0x0c,0x10,0x08,0x11,0xff,0xea,0x9e,0xb5,0x00,0x11,0x00,0x10,0x08,0x11,0xff, | ||
| 1152 | 0xea,0x9e,0xb7,0x00,0x11,0x00,0xd2,0x18,0xd1,0x0c,0x10,0x08,0x14,0xff,0xea,0x9e, | ||
| 1153 | 0xb9,0x00,0x14,0x00,0x10,0x08,0x15,0xff,0xea,0x9e,0xbb,0x00,0x15,0x00,0xd1,0x0c, | ||
| 1154 | 0x10,0x08,0x15,0xff,0xea,0x9e,0xbd,0x00,0x15,0x00,0x10,0x08,0x15,0xff,0xea,0x9e, | ||
| 1155 | 0xbf,0x00,0x15,0x00,0xcf,0x86,0xe5,0xd4,0x63,0x94,0x2f,0x93,0x2b,0xd2,0x10,0x51, | ||
| 1156 | 0x04,0x00,0x00,0x10,0x08,0x15,0xff,0xea,0x9f,0x83,0x00,0x15,0x00,0xd1,0x0f,0x10, | ||
| 1157 | 0x08,0x15,0xff,0xea,0x9e,0x94,0x00,0x15,0xff,0xca,0x82,0x00,0x10,0x08,0x15,0xff, | ||
| 1158 | 0xe1,0xb6,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe4,0xb4,0x66,0xd3,0x1d,0xe2, | ||
| 1159 | 0x5b,0x64,0xe1,0x0a,0x64,0xe0,0xf7,0x63,0xcf,0x86,0xe5,0xd8,0x63,0x94,0x0b,0x93, | ||
| 1160 | 0x07,0x62,0xc3,0x63,0x08,0x00,0x08,0x00,0x08,0x00,0xd2,0x0f,0xe1,0x5a,0x65,0xe0, | ||
| 1161 | 0x27,0x65,0xcf,0x86,0x65,0x0c,0x65,0x0a,0x00,0xd1,0xab,0xd0,0x1a,0xcf,0x86,0xe5, | ||
| 1162 | 0x17,0x66,0xe4,0xfa,0x65,0xe3,0xe1,0x65,0xe2,0xd4,0x65,0x91,0x08,0x10,0x04,0x00, | ||
| 1163 | 0x00,0x0c,0x00,0x0c,0x00,0xcf,0x86,0x55,0x04,0x10,0x00,0xd4,0x0b,0x93,0x07,0x62, | ||
| 1164 | 0x27,0x66,0x11,0x00,0x00,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x11,0xff, | ||
| 1165 | 0xe1,0x8e,0xa0,0x00,0x11,0xff,0xe1,0x8e,0xa1,0x00,0x10,0x08,0x11,0xff,0xe1,0x8e, | ||
| 1166 | 0xa2,0x00,0x11,0xff,0xe1,0x8e,0xa3,0x00,0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e, | ||
| 1167 | 0xa4,0x00,0x11,0xff,0xe1,0x8e,0xa5,0x00,0x10,0x08,0x11,0xff,0xe1,0x8e,0xa6,0x00, | ||
| 1168 | 0x11,0xff,0xe1,0x8e,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e, | ||
| 1169 | 0xa8,0x00,0x11,0xff,0xe1,0x8e,0xa9,0x00,0x10,0x08,0x11,0xff,0xe1,0x8e,0xaa,0x00, | ||
| 1170 | 0x11,0xff,0xe1,0x8e,0xab,0x00,0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e,0xac,0x00, | ||
| 1171 | 0x11,0xff,0xe1,0x8e,0xad,0x00,0x10,0x08,0x11,0xff,0xe1,0x8e,0xae,0x00,0x11,0xff, | ||
| 1172 | 0xe1,0x8e,0xaf,0x00,0xe0,0xb2,0x65,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40, | ||
| 1173 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e,0xb0,0x00,0x11,0xff,0xe1,0x8e, | ||
| 1174 | 0xb1,0x00,0x10,0x08,0x11,0xff,0xe1,0x8e,0xb2,0x00,0x11,0xff,0xe1,0x8e,0xb3,0x00, | ||
| 1175 | 0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e,0xb4,0x00,0x11,0xff,0xe1,0x8e,0xb5,0x00, | ||
| 1176 | 0x10,0x08,0x11,0xff,0xe1,0x8e,0xb6,0x00,0x11,0xff,0xe1,0x8e,0xb7,0x00,0xd2,0x20, | ||
| 1177 | 0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8e,0xb8,0x00,0x11,0xff,0xe1,0x8e,0xb9,0x00, | ||
| 1178 | 0x10,0x08,0x11,0xff,0xe1,0x8e,0xba,0x00,0x11,0xff,0xe1,0x8e,0xbb,0x00,0xd1,0x10, | ||
| 1179 | 0x10,0x08,0x11,0xff,0xe1,0x8e,0xbc,0x00,0x11,0xff,0xe1,0x8e,0xbd,0x00,0x10,0x08, | ||
| 1180 | 0x11,0xff,0xe1,0x8e,0xbe,0x00,0x11,0xff,0xe1,0x8e,0xbf,0x00,0xd3,0x40,0xd2,0x20, | ||
| 1181 | 0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8f,0x80,0x00,0x11,0xff,0xe1,0x8f,0x81,0x00, | ||
| 1182 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x82,0x00,0x11,0xff,0xe1,0x8f,0x83,0x00,0xd1,0x10, | ||
| 1183 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x84,0x00,0x11,0xff,0xe1,0x8f,0x85,0x00,0x10,0x08, | ||
| 1184 | 0x11,0xff,0xe1,0x8f,0x86,0x00,0x11,0xff,0xe1,0x8f,0x87,0x00,0xd2,0x20,0xd1,0x10, | ||
| 1185 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x88,0x00,0x11,0xff,0xe1,0x8f,0x89,0x00,0x10,0x08, | ||
| 1186 | 0x11,0xff,0xe1,0x8f,0x8a,0x00,0x11,0xff,0xe1,0x8f,0x8b,0x00,0xd1,0x10,0x10,0x08, | ||
| 1187 | 0x11,0xff,0xe1,0x8f,0x8c,0x00,0x11,0xff,0xe1,0x8f,0x8d,0x00,0x10,0x08,0x11,0xff, | ||
| 1188 | 0xe1,0x8f,0x8e,0x00,0x11,0xff,0xe1,0x8f,0x8f,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20, | ||
| 1189 | 0xd1,0x10,0x10,0x08,0x11,0xff,0xe1,0x8f,0x90,0x00,0x11,0xff,0xe1,0x8f,0x91,0x00, | ||
| 1190 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x92,0x00,0x11,0xff,0xe1,0x8f,0x93,0x00,0xd1,0x10, | ||
| 1191 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x94,0x00,0x11,0xff,0xe1,0x8f,0x95,0x00,0x10,0x08, | ||
| 1192 | 0x11,0xff,0xe1,0x8f,0x96,0x00,0x11,0xff,0xe1,0x8f,0x97,0x00,0xd2,0x20,0xd1,0x10, | ||
| 1193 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0x98,0x00,0x11,0xff,0xe1,0x8f,0x99,0x00,0x10,0x08, | ||
| 1194 | 0x11,0xff,0xe1,0x8f,0x9a,0x00,0x11,0xff,0xe1,0x8f,0x9b,0x00,0xd1,0x10,0x10,0x08, | ||
| 1195 | 0x11,0xff,0xe1,0x8f,0x9c,0x00,0x11,0xff,0xe1,0x8f,0x9d,0x00,0x10,0x08,0x11,0xff, | ||
| 1196 | 0xe1,0x8f,0x9e,0x00,0x11,0xff,0xe1,0x8f,0x9f,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 1197 | 0x10,0x08,0x11,0xff,0xe1,0x8f,0xa0,0x00,0x11,0xff,0xe1,0x8f,0xa1,0x00,0x10,0x08, | ||
| 1198 | 0x11,0xff,0xe1,0x8f,0xa2,0x00,0x11,0xff,0xe1,0x8f,0xa3,0x00,0xd1,0x10,0x10,0x08, | ||
| 1199 | 0x11,0xff,0xe1,0x8f,0xa4,0x00,0x11,0xff,0xe1,0x8f,0xa5,0x00,0x10,0x08,0x11,0xff, | ||
| 1200 | 0xe1,0x8f,0xa6,0x00,0x11,0xff,0xe1,0x8f,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 1201 | 0x11,0xff,0xe1,0x8f,0xa8,0x00,0x11,0xff,0xe1,0x8f,0xa9,0x00,0x10,0x08,0x11,0xff, | ||
| 1202 | 0xe1,0x8f,0xaa,0x00,0x11,0xff,0xe1,0x8f,0xab,0x00,0xd1,0x10,0x10,0x08,0x11,0xff, | ||
| 1203 | 0xe1,0x8f,0xac,0x00,0x11,0xff,0xe1,0x8f,0xad,0x00,0x10,0x08,0x11,0xff,0xe1,0x8f, | ||
| 1204 | 0xae,0x00,0x11,0xff,0xe1,0x8f,0xaf,0x00,0xd1,0x0c,0xe0,0xeb,0x63,0xcf,0x86,0xcf, | ||
| 1205 | 0x06,0x02,0xff,0xff,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x06, | ||
| 1206 | 0xcf,0x06,0x01,0x00,0xd4,0xae,0xd3,0x09,0xe2,0x54,0x64,0xcf,0x06,0x01,0x00,0xd2, | ||
| 1207 | 0x27,0xe1,0x1f,0x70,0xe0,0x26,0x6e,0xcf,0x86,0xe5,0x3f,0x6d,0xe4,0xce,0x6c,0xe3, | ||
| 1208 | 0x99,0x6c,0xe2,0x78,0x6c,0xe1,0x67,0x6c,0x10,0x08,0x01,0xff,0xe5,0x88,0x87,0x00, | ||
| 1209 | 0x01,0xff,0xe5,0xba,0xa6,0x00,0xe1,0x74,0x74,0xe0,0xe8,0x73,0xcf,0x86,0xe5,0x22, | ||
| 1210 | 0x73,0xd4,0x3b,0x93,0x37,0xd2,0x1d,0xd1,0x0e,0x10,0x07,0x01,0xff,0x66,0x66,0x00, | ||
| 1211 | 0x01,0xff,0x66,0x69,0x00,0x10,0x07,0x01,0xff,0x66,0x6c,0x00,0x01,0xff,0x66,0x66, | ||
| 1212 | 0x69,0x00,0xd1,0x0f,0x10,0x08,0x01,0xff,0x66,0x66,0x6c,0x00,0x01,0xff,0x73,0x74, | ||
| 1213 | 0x00,0x10,0x07,0x01,0xff,0x73,0x74,0x00,0x00,0x00,0x00,0x00,0xe3,0xc8,0x72,0xd2, | ||
| 1214 | 0x11,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0xff,0xd5,0xb4,0xd5,0xb6,0x00, | ||
| 1215 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xd5,0xb4,0xd5,0xa5,0x00,0x01,0xff,0xd5,0xb4,0xd5, | ||
| 1216 | 0xab,0x00,0x10,0x09,0x01,0xff,0xd5,0xbe,0xd5,0xb6,0x00,0x01,0xff,0xd5,0xb4,0xd5, | ||
| 1217 | 0xad,0x00,0xd3,0x09,0xe2,0x40,0x74,0xcf,0x06,0x01,0x00,0xd2,0x13,0xe1,0x30,0x75, | ||
| 1218 | 0xe0,0xc1,0x74,0xcf,0x86,0xe5,0x9e,0x74,0x64,0x8d,0x74,0x06,0xff,0x00,0xe1,0x96, | ||
| 1219 | 0x75,0xe0,0x63,0x75,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 1220 | 0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x7c, | ||
| 1221 | 0xd3,0x3c,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0xef,0xbd,0x81,0x00, | ||
| 1222 | 0x10,0x08,0x01,0xff,0xef,0xbd,0x82,0x00,0x01,0xff,0xef,0xbd,0x83,0x00,0xd1,0x10, | ||
| 1223 | 0x10,0x08,0x01,0xff,0xef,0xbd,0x84,0x00,0x01,0xff,0xef,0xbd,0x85,0x00,0x10,0x08, | ||
| 1224 | 0x01,0xff,0xef,0xbd,0x86,0x00,0x01,0xff,0xef,0xbd,0x87,0x00,0xd2,0x20,0xd1,0x10, | ||
| 1225 | 0x10,0x08,0x01,0xff,0xef,0xbd,0x88,0x00,0x01,0xff,0xef,0xbd,0x89,0x00,0x10,0x08, | ||
| 1226 | 0x01,0xff,0xef,0xbd,0x8a,0x00,0x01,0xff,0xef,0xbd,0x8b,0x00,0xd1,0x10,0x10,0x08, | ||
| 1227 | 0x01,0xff,0xef,0xbd,0x8c,0x00,0x01,0xff,0xef,0xbd,0x8d,0x00,0x10,0x08,0x01,0xff, | ||
| 1228 | 0xef,0xbd,0x8e,0x00,0x01,0xff,0xef,0xbd,0x8f,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 1229 | 0x10,0x08,0x01,0xff,0xef,0xbd,0x90,0x00,0x01,0xff,0xef,0xbd,0x91,0x00,0x10,0x08, | ||
| 1230 | 0x01,0xff,0xef,0xbd,0x92,0x00,0x01,0xff,0xef,0xbd,0x93,0x00,0xd1,0x10,0x10,0x08, | ||
| 1231 | 0x01,0xff,0xef,0xbd,0x94,0x00,0x01,0xff,0xef,0xbd,0x95,0x00,0x10,0x08,0x01,0xff, | ||
| 1232 | 0xef,0xbd,0x96,0x00,0x01,0xff,0xef,0xbd,0x97,0x00,0x92,0x1c,0xd1,0x10,0x10,0x08, | ||
| 1233 | 0x01,0xff,0xef,0xbd,0x98,0x00,0x01,0xff,0xef,0xbd,0x99,0x00,0x10,0x08,0x01,0xff, | ||
| 1234 | 0xef,0xbd,0x9a,0x00,0x01,0x00,0x01,0x00,0x83,0xe2,0x87,0xb3,0xe1,0x60,0xb0,0xe0, | ||
| 1235 | 0xdd,0xae,0xcf,0x86,0xe5,0x81,0x9b,0xc4,0xe3,0xc1,0x07,0xe2,0x62,0x06,0xe1,0x11, | ||
| 1236 | 0x86,0xe0,0x09,0x05,0xcf,0x86,0xe5,0xfb,0x02,0xd4,0x1c,0xe3,0x7f,0x76,0xe2,0xd6, | ||
| 1237 | 0x75,0xe1,0xb1,0x75,0xe0,0x8a,0x75,0xcf,0x86,0xe5,0x57,0x75,0x94,0x07,0x63,0x42, | ||
| 1238 | 0x75,0x07,0x00,0x07,0x00,0xe3,0x2b,0x78,0xe2,0xf0,0x77,0xe1,0x77,0x01,0xe0,0x88, | ||
| 1239 | 0x77,0xcf,0x86,0xe5,0x21,0x01,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09, | ||
| 1240 | 0x05,0xff,0xf0,0x90,0x90,0xa8,0x00,0x05,0xff,0xf0,0x90,0x90,0xa9,0x00,0x10,0x09, | ||
| 1241 | 0x05,0xff,0xf0,0x90,0x90,0xaa,0x00,0x05,0xff,0xf0,0x90,0x90,0xab,0x00,0xd1,0x12, | ||
| 1242 | 0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xac,0x00,0x05,0xff,0xf0,0x90,0x90,0xad,0x00, | ||
| 1243 | 0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xae,0x00,0x05,0xff,0xf0,0x90,0x90,0xaf,0x00, | ||
| 1244 | 0xd2,0x24,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xb0,0x00,0x05,0xff,0xf0, | ||
| 1245 | 0x90,0x90,0xb1,0x00,0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xb2,0x00,0x05,0xff,0xf0, | ||
| 1246 | 0x90,0x90,0xb3,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xb4,0x00,0x05, | ||
| 1247 | 0xff,0xf0,0x90,0x90,0xb5,0x00,0x10,0x09,0x05,0xff,0xf0,0x90,0x90,0xb6,0x00,0x05, | ||
| 1248 | 0xff,0xf0,0x90,0x90,0xb7,0x00,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x05,0xff, | ||
| 1249 | 0xf0,0x90,0x90,0xb8,0x00,0x05,0xff,0xf0,0x90,0x90,0xb9,0x00,0x10,0x09,0x05,0xff, | ||
| 1250 | 0xf0,0x90,0x90,0xba,0x00,0x05,0xff,0xf0,0x90,0x90,0xbb,0x00,0xd1,0x12,0x10,0x09, | ||
| 1251 | 0x05,0xff,0xf0,0x90,0x90,0xbc,0x00,0x05,0xff,0xf0,0x90,0x90,0xbd,0x00,0x10,0x09, | ||
| 1252 | 0x05,0xff,0xf0,0x90,0x90,0xbe,0x00,0x05,0xff,0xf0,0x90,0x90,0xbf,0x00,0xd2,0x24, | ||
| 1253 | 0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0x90,0x91,0x80,0x00,0x05,0xff,0xf0,0x90,0x91, | ||
| 1254 | 0x81,0x00,0x10,0x09,0x05,0xff,0xf0,0x90,0x91,0x82,0x00,0x05,0xff,0xf0,0x90,0x91, | ||
| 1255 | 0x83,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0x90,0x91,0x84,0x00,0x05,0xff,0xf0, | ||
| 1256 | 0x90,0x91,0x85,0x00,0x10,0x09,0x05,0xff,0xf0,0x90,0x91,0x86,0x00,0x05,0xff,0xf0, | ||
| 1257 | 0x90,0x91,0x87,0x00,0x94,0x4c,0x93,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x05,0xff, | ||
| 1258 | 0xf0,0x90,0x91,0x88,0x00,0x05,0xff,0xf0,0x90,0x91,0x89,0x00,0x10,0x09,0x05,0xff, | ||
| 1259 | 0xf0,0x90,0x91,0x8a,0x00,0x05,0xff,0xf0,0x90,0x91,0x8b,0x00,0xd1,0x12,0x10,0x09, | ||
| 1260 | 0x05,0xff,0xf0,0x90,0x91,0x8c,0x00,0x05,0xff,0xf0,0x90,0x91,0x8d,0x00,0x10,0x09, | ||
| 1261 | 0x07,0xff,0xf0,0x90,0x91,0x8e,0x00,0x07,0xff,0xf0,0x90,0x91,0x8f,0x00,0x05,0x00, | ||
| 1262 | 0x05,0x00,0xd0,0xa0,0xcf,0x86,0xd5,0x07,0x64,0x30,0x76,0x07,0x00,0xd4,0x07,0x63, | ||
| 1263 | 0x3d,0x76,0x07,0x00,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x90, | ||
| 1264 | 0x93,0x98,0x00,0x12,0xff,0xf0,0x90,0x93,0x99,0x00,0x10,0x09,0x12,0xff,0xf0,0x90, | ||
| 1265 | 0x93,0x9a,0x00,0x12,0xff,0xf0,0x90,0x93,0x9b,0x00,0xd1,0x12,0x10,0x09,0x12,0xff, | ||
| 1266 | 0xf0,0x90,0x93,0x9c,0x00,0x12,0xff,0xf0,0x90,0x93,0x9d,0x00,0x10,0x09,0x12,0xff, | ||
| 1267 | 0xf0,0x90,0x93,0x9e,0x00,0x12,0xff,0xf0,0x90,0x93,0x9f,0x00,0xd2,0x24,0xd1,0x12, | ||
| 1268 | 0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xa0,0x00,0x12,0xff,0xf0,0x90,0x93,0xa1,0x00, | ||
| 1269 | 0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xa2,0x00,0x12,0xff,0xf0,0x90,0x93,0xa3,0x00, | ||
| 1270 | 0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xa4,0x00,0x12,0xff,0xf0,0x90,0x93, | ||
| 1271 | 0xa5,0x00,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xa6,0x00,0x12,0xff,0xf0,0x90,0x93, | ||
| 1272 | 0xa7,0x00,0xcf,0x86,0xe5,0xc6,0x75,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10, | ||
| 1273 | 0x09,0x12,0xff,0xf0,0x90,0x93,0xa8,0x00,0x12,0xff,0xf0,0x90,0x93,0xa9,0x00,0x10, | ||
| 1274 | 0x09,0x12,0xff,0xf0,0x90,0x93,0xaa,0x00,0x12,0xff,0xf0,0x90,0x93,0xab,0x00,0xd1, | ||
| 1275 | 0x12,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xac,0x00,0x12,0xff,0xf0,0x90,0x93,0xad, | ||
| 1276 | 0x00,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xae,0x00,0x12,0xff,0xf0,0x90,0x93,0xaf, | ||
| 1277 | 0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xb0,0x00,0x12,0xff, | ||
| 1278 | 0xf0,0x90,0x93,0xb1,0x00,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xb2,0x00,0x12,0xff, | ||
| 1279 | 0xf0,0x90,0x93,0xb3,0x00,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xb4,0x00, | ||
| 1280 | 0x12,0xff,0xf0,0x90,0x93,0xb5,0x00,0x10,0x09,0x12,0xff,0xf0,0x90,0x93,0xb6,0x00, | ||
| 1281 | 0x12,0xff,0xf0,0x90,0x93,0xb7,0x00,0x93,0x28,0x92,0x24,0xd1,0x12,0x10,0x09,0x12, | ||
| 1282 | 0xff,0xf0,0x90,0x93,0xb8,0x00,0x12,0xff,0xf0,0x90,0x93,0xb9,0x00,0x10,0x09,0x12, | ||
| 1283 | 0xff,0xf0,0x90,0x93,0xba,0x00,0x12,0xff,0xf0,0x90,0x93,0xbb,0x00,0x00,0x00,0x12, | ||
| 1284 | 0x00,0xd4,0x1f,0xe3,0xdf,0x76,0xe2,0x6a,0x76,0xe1,0x09,0x76,0xe0,0xea,0x75,0xcf, | ||
| 1285 | 0x86,0xe5,0xb7,0x75,0x94,0x0a,0xe3,0xa2,0x75,0x62,0x99,0x75,0x07,0x00,0x07,0x00, | ||
| 1286 | 0xe3,0xde,0x78,0xe2,0xaf,0x78,0xd1,0x09,0xe0,0x4c,0x78,0xcf,0x06,0x0b,0x00,0xe0, | ||
| 1287 | 0x7f,0x78,0xcf,0x86,0xe5,0x21,0x01,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10, | ||
| 1288 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0x80,0x00,0x11,0xff,0xf0,0x90,0xb3,0x81,0x00,0x10, | ||
| 1289 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0x82,0x00,0x11,0xff,0xf0,0x90,0xb3,0x83,0x00,0xd1, | ||
| 1290 | 0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x84,0x00,0x11,0xff,0xf0,0x90,0xb3,0x85, | ||
| 1291 | 0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x86,0x00,0x11,0xff,0xf0,0x90,0xb3,0x87, | ||
| 1292 | 0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x88,0x00,0x11,0xff, | ||
| 1293 | 0xf0,0x90,0xb3,0x89,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x8a,0x00,0x11,0xff, | ||
| 1294 | 0xf0,0x90,0xb3,0x8b,0x00,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x8c,0x00, | ||
| 1295 | 0x11,0xff,0xf0,0x90,0xb3,0x8d,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x8e,0x00, | ||
| 1296 | 0x11,0xff,0xf0,0x90,0xb3,0x8f,0x00,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x11, | ||
| 1297 | 0xff,0xf0,0x90,0xb3,0x90,0x00,0x11,0xff,0xf0,0x90,0xb3,0x91,0x00,0x10,0x09,0x11, | ||
| 1298 | 0xff,0xf0,0x90,0xb3,0x92,0x00,0x11,0xff,0xf0,0x90,0xb3,0x93,0x00,0xd1,0x12,0x10, | ||
| 1299 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0x94,0x00,0x11,0xff,0xf0,0x90,0xb3,0x95,0x00,0x10, | ||
| 1300 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0x96,0x00,0x11,0xff,0xf0,0x90,0xb3,0x97,0x00,0xd2, | ||
| 1301 | 0x24,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x98,0x00,0x11,0xff,0xf0,0x90, | ||
| 1302 | 0xb3,0x99,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x9a,0x00,0x11,0xff,0xf0,0x90, | ||
| 1303 | 0xb3,0x9b,0x00,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x9c,0x00,0x11,0xff, | ||
| 1304 | 0xf0,0x90,0xb3,0x9d,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0x9e,0x00,0x11,0xff, | ||
| 1305 | 0xf0,0x90,0xb3,0x9f,0x00,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x11, | ||
| 1306 | 0xff,0xf0,0x90,0xb3,0xa0,0x00,0x11,0xff,0xf0,0x90,0xb3,0xa1,0x00,0x10,0x09,0x11, | ||
| 1307 | 0xff,0xf0,0x90,0xb3,0xa2,0x00,0x11,0xff,0xf0,0x90,0xb3,0xa3,0x00,0xd1,0x12,0x10, | ||
| 1308 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0xa4,0x00,0x11,0xff,0xf0,0x90,0xb3,0xa5,0x00,0x10, | ||
| 1309 | 0x09,0x11,0xff,0xf0,0x90,0xb3,0xa6,0x00,0x11,0xff,0xf0,0x90,0xb3,0xa7,0x00,0xd2, | ||
| 1310 | 0x24,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0xa8,0x00,0x11,0xff,0xf0,0x90, | ||
| 1311 | 0xb3,0xa9,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0xaa,0x00,0x11,0xff,0xf0,0x90, | ||
| 1312 | 0xb3,0xab,0x00,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0xac,0x00,0x11,0xff, | ||
| 1313 | 0xf0,0x90,0xb3,0xad,0x00,0x10,0x09,0x11,0xff,0xf0,0x90,0xb3,0xae,0x00,0x11,0xff, | ||
| 1314 | 0xf0,0x90,0xb3,0xaf,0x00,0x93,0x23,0x92,0x1f,0xd1,0x12,0x10,0x09,0x11,0xff,0xf0, | ||
| 1315 | 0x90,0xb3,0xb0,0x00,0x11,0xff,0xf0,0x90,0xb3,0xb1,0x00,0x10,0x09,0x11,0xff,0xf0, | ||
| 1316 | 0x90,0xb3,0xb2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x15,0xe4,0x91, | ||
| 1317 | 0x7b,0xe3,0x9b,0x79,0xe2,0x94,0x78,0xe1,0xe4,0x77,0xe0,0x9d,0x77,0xcf,0x06,0x0c, | ||
| 1318 | 0x00,0xe4,0xeb,0x7e,0xe3,0x44,0x7e,0xe2,0xed,0x7d,0xd1,0x0c,0xe0,0xb2,0x7d,0xcf, | ||
| 1319 | 0x86,0x65,0x93,0x7d,0x14,0x00,0xe0,0xb6,0x7d,0xcf,0x86,0x55,0x04,0x00,0x00,0xd4, | ||
| 1320 | 0x90,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x80,0x00, | ||
| 1321 | 0x10,0xff,0xf0,0x91,0xa3,0x81,0x00,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x82,0x00, | ||
| 1322 | 0x10,0xff,0xf0,0x91,0xa3,0x83,0x00,0xd1,0x12,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3, | ||
| 1323 | 0x84,0x00,0x10,0xff,0xf0,0x91,0xa3,0x85,0x00,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3, | ||
| 1324 | 0x86,0x00,0x10,0xff,0xf0,0x91,0xa3,0x87,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x10, | ||
| 1325 | 0xff,0xf0,0x91,0xa3,0x88,0x00,0x10,0xff,0xf0,0x91,0xa3,0x89,0x00,0x10,0x09,0x10, | ||
| 1326 | 0xff,0xf0,0x91,0xa3,0x8a,0x00,0x10,0xff,0xf0,0x91,0xa3,0x8b,0x00,0xd1,0x12,0x10, | ||
| 1327 | 0x09,0x10,0xff,0xf0,0x91,0xa3,0x8c,0x00,0x10,0xff,0xf0,0x91,0xa3,0x8d,0x00,0x10, | ||
| 1328 | 0x09,0x10,0xff,0xf0,0x91,0xa3,0x8e,0x00,0x10,0xff,0xf0,0x91,0xa3,0x8f,0x00,0xd3, | ||
| 1329 | 0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x90,0x00,0x10,0xff, | ||
| 1330 | 0xf0,0x91,0xa3,0x91,0x00,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x92,0x00,0x10,0xff, | ||
| 1331 | 0xf0,0x91,0xa3,0x93,0x00,0xd1,0x12,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x94,0x00, | ||
| 1332 | 0x10,0xff,0xf0,0x91,0xa3,0x95,0x00,0x10,0x09,0x10,0xff,0xf0,0x91,0xa3,0x96,0x00, | ||
| 1333 | 0x10,0xff,0xf0,0x91,0xa3,0x97,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x10,0xff,0xf0, | ||
| 1334 | 0x91,0xa3,0x98,0x00,0x10,0xff,0xf0,0x91,0xa3,0x99,0x00,0x10,0x09,0x10,0xff,0xf0, | ||
| 1335 | 0x91,0xa3,0x9a,0x00,0x10,0xff,0xf0,0x91,0xa3,0x9b,0x00,0xd1,0x12,0x10,0x09,0x10, | ||
| 1336 | 0xff,0xf0,0x91,0xa3,0x9c,0x00,0x10,0xff,0xf0,0x91,0xa3,0x9d,0x00,0x10,0x09,0x10, | ||
| 1337 | 0xff,0xf0,0x91,0xa3,0x9e,0x00,0x10,0xff,0xf0,0x91,0xa3,0x9f,0x00,0xd1,0x11,0xe0, | ||
| 1338 | 0x12,0x81,0xcf,0x86,0xe5,0x09,0x81,0xe4,0xd2,0x80,0xcf,0x06,0x00,0x00,0xe0,0xdb, | ||
| 1339 | 0x82,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x09,0xe3,0x10,0x81,0xcf,0x06, | ||
| 1340 | 0x0c,0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xe2,0x3b,0x82,0xe1,0x16,0x82,0xd0,0x06, | ||
| 1341 | 0xcf,0x06,0x00,0x00,0xcf,0x86,0xa5,0x21,0x01,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1, | ||
| 1342 | 0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xa0,0x00,0x14,0xff,0xf0,0x96,0xb9,0xa1, | ||
| 1343 | 0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xa2,0x00,0x14,0xff,0xf0,0x96,0xb9,0xa3, | ||
| 1344 | 0x00,0xd1,0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xa4,0x00,0x14,0xff,0xf0,0x96, | ||
| 1345 | 0xb9,0xa5,0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xa6,0x00,0x14,0xff,0xf0,0x96, | ||
| 1346 | 0xb9,0xa7,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xa8,0x00, | ||
| 1347 | 0x14,0xff,0xf0,0x96,0xb9,0xa9,0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xaa,0x00, | ||
| 1348 | 0x14,0xff,0xf0,0x96,0xb9,0xab,0x00,0xd1,0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9, | ||
| 1349 | 0xac,0x00,0x14,0xff,0xf0,0x96,0xb9,0xad,0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9, | ||
| 1350 | 0xae,0x00,0x14,0xff,0xf0,0x96,0xb9,0xaf,0x00,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10, | ||
| 1351 | 0x09,0x14,0xff,0xf0,0x96,0xb9,0xb0,0x00,0x14,0xff,0xf0,0x96,0xb9,0xb1,0x00,0x10, | ||
| 1352 | 0x09,0x14,0xff,0xf0,0x96,0xb9,0xb2,0x00,0x14,0xff,0xf0,0x96,0xb9,0xb3,0x00,0xd1, | ||
| 1353 | 0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xb4,0x00,0x14,0xff,0xf0,0x96,0xb9,0xb5, | ||
| 1354 | 0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xb6,0x00,0x14,0xff,0xf0,0x96,0xb9,0xb7, | ||
| 1355 | 0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xb8,0x00,0x14,0xff, | ||
| 1356 | 0xf0,0x96,0xb9,0xb9,0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xba,0x00,0x14,0xff, | ||
| 1357 | 0xf0,0x96,0xb9,0xbb,0x00,0xd1,0x12,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xbc,0x00, | ||
| 1358 | 0x14,0xff,0xf0,0x96,0xb9,0xbd,0x00,0x10,0x09,0x14,0xff,0xf0,0x96,0xb9,0xbe,0x00, | ||
| 1359 | 0x14,0xff,0xf0,0x96,0xb9,0xbf,0x00,0x14,0x00,0xd2,0x14,0xe1,0x25,0x82,0xe0,0x1c, | ||
| 1360 | 0x82,0xcf,0x86,0xe5,0xdd,0x81,0xe4,0x9a,0x81,0xcf,0x06,0x12,0x00,0xd1,0x0b,0xe0, | ||
| 1361 | 0x51,0x83,0xcf,0x86,0xcf,0x06,0x00,0x00,0xe0,0x95,0x8b,0xcf,0x86,0xd5,0x22,0xe4, | ||
| 1362 | 0xd0,0x88,0xe3,0x93,0x88,0xe2,0x38,0x88,0xe1,0x31,0x88,0xe0,0x2a,0x88,0xcf,0x86, | ||
| 1363 | 0xe5,0xfb,0x87,0xe4,0xe2,0x87,0x93,0x07,0x62,0xd1,0x87,0x12,0xe6,0x12,0xe6,0xe4, | ||
| 1364 | 0x36,0x89,0xe3,0x2f,0x89,0xd2,0x09,0xe1,0xb8,0x88,0xcf,0x06,0x10,0x00,0xe1,0x1f, | ||
| 1365 | 0x89,0xe0,0xec,0x88,0xcf,0x86,0xe5,0x21,0x01,0xd4,0x90,0xd3,0x48,0xd2,0x24,0xd1, | ||
| 1366 | 0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xa2,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xa3, | ||
| 1367 | 0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xa4,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xa5, | ||
| 1368 | 0x00,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xa6,0x00,0x12,0xff,0xf0,0x9e, | ||
| 1369 | 0xa4,0xa7,0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xa8,0x00,0x12,0xff,0xf0,0x9e, | ||
| 1370 | 0xa4,0xa9,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xaa,0x00, | ||
| 1371 | 0x12,0xff,0xf0,0x9e,0xa4,0xab,0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xac,0x00, | ||
| 1372 | 0x12,0xff,0xf0,0x9e,0xa4,0xad,0x00,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4, | ||
| 1373 | 0xae,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xaf,0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4, | ||
| 1374 | 0xb0,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xb1,0x00,0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10, | ||
| 1375 | 0x09,0x12,0xff,0xf0,0x9e,0xa4,0xb2,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xb3,0x00,0x10, | ||
| 1376 | 0x09,0x12,0xff,0xf0,0x9e,0xa4,0xb4,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xb5,0x00,0xd1, | ||
| 1377 | 0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xb6,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xb7, | ||
| 1378 | 0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xb8,0x00,0x12,0xff,0xf0,0x9e,0xa4,0xb9, | ||
| 1379 | 0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xba,0x00,0x12,0xff, | ||
| 1380 | 0xf0,0x9e,0xa4,0xbb,0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xbc,0x00,0x12,0xff, | ||
| 1381 | 0xf0,0x9e,0xa4,0xbd,0x00,0xd1,0x12,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa4,0xbe,0x00, | ||
| 1382 | 0x12,0xff,0xf0,0x9e,0xa4,0xbf,0x00,0x10,0x09,0x12,0xff,0xf0,0x9e,0xa5,0x80,0x00, | ||
| 1383 | 0x12,0xff,0xf0,0x9e,0xa5,0x81,0x00,0x94,0x1e,0x93,0x1a,0x92,0x16,0x91,0x12,0x10, | ||
| 1384 | 0x09,0x12,0xff,0xf0,0x9e,0xa5,0x82,0x00,0x12,0xff,0xf0,0x9e,0xa5,0x83,0x00,0x12, | ||
| 1385 | 0x00,0x12,0x00,0x12,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1386 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1387 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1388 | /* nfdi_c0100 */ | ||
| 1389 | 0x57,0x04,0x01,0x00,0xc6,0xe5,0xac,0x13,0xe4,0x41,0x0c,0xe3,0x7a,0x07,0xe2,0xf3, | ||
| 1390 | 0x01,0xc1,0xd0,0x1f,0xcf,0x86,0x55,0x04,0x01,0x00,0x94,0x15,0x53,0x04,0x01,0x00, | ||
| 1391 | 0x52,0x04,0x01,0x00,0x91,0x09,0x10,0x04,0x01,0x00,0x01,0xff,0x00,0x01,0x00,0x01, | ||
| 1392 | 0x00,0xcf,0x86,0xd5,0xe4,0xd4,0x7c,0xd3,0x3c,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 1393 | 0xff,0x41,0xcc,0x80,0x00,0x01,0xff,0x41,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x41, | ||
| 1394 | 0xcc,0x82,0x00,0x01,0xff,0x41,0xcc,0x83,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x41, | ||
| 1395 | 0xcc,0x88,0x00,0x01,0xff,0x41,0xcc,0x8a,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0x43, | ||
| 1396 | 0xcc,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x45,0xcc,0x80,0x00,0x01, | ||
| 1397 | 0xff,0x45,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x45,0xcc,0x82,0x00,0x01,0xff,0x45, | ||
| 1398 | 0xcc,0x88,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x49,0xcc,0x80,0x00,0x01,0xff,0x49, | ||
| 1399 | 0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x49,0xcc,0x82,0x00,0x01,0xff,0x49,0xcc,0x88, | ||
| 1400 | 0x00,0xd3,0x38,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x4e,0xcc,0x83, | ||
| 1401 | 0x00,0x10,0x08,0x01,0xff,0x4f,0xcc,0x80,0x00,0x01,0xff,0x4f,0xcc,0x81,0x00,0xd1, | ||
| 1402 | 0x10,0x10,0x08,0x01,0xff,0x4f,0xcc,0x82,0x00,0x01,0xff,0x4f,0xcc,0x83,0x00,0x10, | ||
| 1403 | 0x08,0x01,0xff,0x4f,0xcc,0x88,0x00,0x01,0x00,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01, | ||
| 1404 | 0x00,0x01,0xff,0x55,0xcc,0x80,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0x81,0x00,0x01, | ||
| 1405 | 0xff,0x55,0xcc,0x82,0x00,0x91,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0x88,0x00,0x01, | ||
| 1406 | 0xff,0x59,0xcc,0x81,0x00,0x01,0x00,0xd4,0x7c,0xd3,0x3c,0xd2,0x20,0xd1,0x10,0x10, | ||
| 1407 | 0x08,0x01,0xff,0x61,0xcc,0x80,0x00,0x01,0xff,0x61,0xcc,0x81,0x00,0x10,0x08,0x01, | ||
| 1408 | 0xff,0x61,0xcc,0x82,0x00,0x01,0xff,0x61,0xcc,0x83,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 1409 | 0xff,0x61,0xcc,0x88,0x00,0x01,0xff,0x61,0xcc,0x8a,0x00,0x10,0x04,0x01,0x00,0x01, | ||
| 1410 | 0xff,0x63,0xcc,0xa7,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x65,0xcc,0x80, | ||
| 1411 | 0x00,0x01,0xff,0x65,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x65,0xcc,0x82,0x00,0x01, | ||
| 1412 | 0xff,0x65,0xcc,0x88,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc,0x80,0x00,0x01, | ||
| 1413 | 0xff,0x69,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x69,0xcc,0x82,0x00,0x01,0xff,0x69, | ||
| 1414 | 0xcc,0x88,0x00,0xd3,0x38,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x6e, | ||
| 1415 | 0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x80,0x00,0x01,0xff,0x6f,0xcc,0x81, | ||
| 1416 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x6f,0xcc,0x82,0x00,0x01,0xff,0x6f,0xcc,0x83, | ||
| 1417 | 0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x88,0x00,0x01,0x00,0xd2,0x1c,0xd1,0x0c,0x10, | ||
| 1418 | 0x04,0x01,0x00,0x01,0xff,0x75,0xcc,0x80,0x00,0x10,0x08,0x01,0xff,0x75,0xcc,0x81, | ||
| 1419 | 0x00,0x01,0xff,0x75,0xcc,0x82,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x75,0xcc,0x88, | ||
| 1420 | 0x00,0x01,0xff,0x79,0xcc,0x81,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0x79,0xcc,0x88, | ||
| 1421 | 0x00,0xe1,0x9a,0x03,0xe0,0xd3,0x01,0xcf,0x86,0xd5,0xf4,0xd4,0x80,0xd3,0x40,0xd2, | ||
| 1422 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x41,0xcc,0x84,0x00,0x01,0xff,0x61,0xcc,0x84, | ||
| 1423 | 0x00,0x10,0x08,0x01,0xff,0x41,0xcc,0x86,0x00,0x01,0xff,0x61,0xcc,0x86,0x00,0xd1, | ||
| 1424 | 0x10,0x10,0x08,0x01,0xff,0x41,0xcc,0xa8,0x00,0x01,0xff,0x61,0xcc,0xa8,0x00,0x10, | ||
| 1425 | 0x08,0x01,0xff,0x43,0xcc,0x81,0x00,0x01,0xff,0x63,0xcc,0x81,0x00,0xd2,0x20,0xd1, | ||
| 1426 | 0x10,0x10,0x08,0x01,0xff,0x43,0xcc,0x82,0x00,0x01,0xff,0x63,0xcc,0x82,0x00,0x10, | ||
| 1427 | 0x08,0x01,0xff,0x43,0xcc,0x87,0x00,0x01,0xff,0x63,0xcc,0x87,0x00,0xd1,0x10,0x10, | ||
| 1428 | 0x08,0x01,0xff,0x43,0xcc,0x8c,0x00,0x01,0xff,0x63,0xcc,0x8c,0x00,0x10,0x08,0x01, | ||
| 1429 | 0xff,0x44,0xcc,0x8c,0x00,0x01,0xff,0x64,0xcc,0x8c,0x00,0xd3,0x34,0xd2,0x14,0x51, | ||
| 1430 | 0x04,0x01,0x00,0x10,0x08,0x01,0xff,0x45,0xcc,0x84,0x00,0x01,0xff,0x65,0xcc,0x84, | ||
| 1431 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x45,0xcc,0x86,0x00,0x01,0xff,0x65,0xcc,0x86, | ||
| 1432 | 0x00,0x10,0x08,0x01,0xff,0x45,0xcc,0x87,0x00,0x01,0xff,0x65,0xcc,0x87,0x00,0xd2, | ||
| 1433 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x45,0xcc,0xa8,0x00,0x01,0xff,0x65,0xcc,0xa8, | ||
| 1434 | 0x00,0x10,0x08,0x01,0xff,0x45,0xcc,0x8c,0x00,0x01,0xff,0x65,0xcc,0x8c,0x00,0xd1, | ||
| 1435 | 0x10,0x10,0x08,0x01,0xff,0x47,0xcc,0x82,0x00,0x01,0xff,0x67,0xcc,0x82,0x00,0x10, | ||
| 1436 | 0x08,0x01,0xff,0x47,0xcc,0x86,0x00,0x01,0xff,0x67,0xcc,0x86,0x00,0xd4,0x74,0xd3, | ||
| 1437 | 0x34,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x47,0xcc,0x87,0x00,0x01,0xff,0x67, | ||
| 1438 | 0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x47,0xcc,0xa7,0x00,0x01,0xff,0x67,0xcc,0xa7, | ||
| 1439 | 0x00,0x91,0x10,0x10,0x08,0x01,0xff,0x48,0xcc,0x82,0x00,0x01,0xff,0x68,0xcc,0x82, | ||
| 1440 | 0x00,0x01,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x49,0xcc,0x83,0x00,0x01, | ||
| 1441 | 0xff,0x69,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x49,0xcc,0x84,0x00,0x01,0xff,0x69, | ||
| 1442 | 0xcc,0x84,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x49,0xcc,0x86,0x00,0x01,0xff,0x69, | ||
| 1443 | 0xcc,0x86,0x00,0x10,0x08,0x01,0xff,0x49,0xcc,0xa8,0x00,0x01,0xff,0x69,0xcc,0xa8, | ||
| 1444 | 0x00,0xd3,0x30,0xd2,0x10,0x91,0x0c,0x10,0x08,0x01,0xff,0x49,0xcc,0x87,0x00,0x01, | ||
| 1445 | 0x00,0x01,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x4a,0xcc,0x82,0x00,0x01,0xff,0x6a, | ||
| 1446 | 0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x4b,0xcc,0xa7,0x00,0x01,0xff,0x6b,0xcc,0xa7, | ||
| 1447 | 0x00,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x4c,0xcc,0x81,0x00,0x10, | ||
| 1448 | 0x08,0x01,0xff,0x6c,0xcc,0x81,0x00,0x01,0xff,0x4c,0xcc,0xa7,0x00,0xd1,0x10,0x10, | ||
| 1449 | 0x08,0x01,0xff,0x6c,0xcc,0xa7,0x00,0x01,0xff,0x4c,0xcc,0x8c,0x00,0x10,0x08,0x01, | ||
| 1450 | 0xff,0x6c,0xcc,0x8c,0x00,0x01,0x00,0xcf,0x86,0xd5,0xd4,0xd4,0x60,0xd3,0x30,0xd2, | ||
| 1451 | 0x10,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0x4e,0xcc,0x81,0x00,0xd1, | ||
| 1452 | 0x10,0x10,0x08,0x01,0xff,0x6e,0xcc,0x81,0x00,0x01,0xff,0x4e,0xcc,0xa7,0x00,0x10, | ||
| 1453 | 0x08,0x01,0xff,0x6e,0xcc,0xa7,0x00,0x01,0xff,0x4e,0xcc,0x8c,0x00,0xd2,0x10,0x91, | ||
| 1454 | 0x0c,0x10,0x08,0x01,0xff,0x6e,0xcc,0x8c,0x00,0x01,0x00,0x01,0x00,0xd1,0x10,0x10, | ||
| 1455 | 0x08,0x01,0xff,0x4f,0xcc,0x84,0x00,0x01,0xff,0x6f,0xcc,0x84,0x00,0x10,0x08,0x01, | ||
| 1456 | 0xff,0x4f,0xcc,0x86,0x00,0x01,0xff,0x6f,0xcc,0x86,0x00,0xd3,0x34,0xd2,0x14,0x91, | ||
| 1457 | 0x10,0x10,0x08,0x01,0xff,0x4f,0xcc,0x8b,0x00,0x01,0xff,0x6f,0xcc,0x8b,0x00,0x01, | ||
| 1458 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x52,0xcc,0x81,0x00,0x01,0xff,0x72,0xcc,0x81, | ||
| 1459 | 0x00,0x10,0x08,0x01,0xff,0x52,0xcc,0xa7,0x00,0x01,0xff,0x72,0xcc,0xa7,0x00,0xd2, | ||
| 1460 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x52,0xcc,0x8c,0x00,0x01,0xff,0x72,0xcc,0x8c, | ||
| 1461 | 0x00,0x10,0x08,0x01,0xff,0x53,0xcc,0x81,0x00,0x01,0xff,0x73,0xcc,0x81,0x00,0xd1, | ||
| 1462 | 0x10,0x10,0x08,0x01,0xff,0x53,0xcc,0x82,0x00,0x01,0xff,0x73,0xcc,0x82,0x00,0x10, | ||
| 1463 | 0x08,0x01,0xff,0x53,0xcc,0xa7,0x00,0x01,0xff,0x73,0xcc,0xa7,0x00,0xd4,0x74,0xd3, | ||
| 1464 | 0x34,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x53,0xcc,0x8c,0x00,0x01,0xff,0x73, | ||
| 1465 | 0xcc,0x8c,0x00,0x10,0x08,0x01,0xff,0x54,0xcc,0xa7,0x00,0x01,0xff,0x74,0xcc,0xa7, | ||
| 1466 | 0x00,0x91,0x10,0x10,0x08,0x01,0xff,0x54,0xcc,0x8c,0x00,0x01,0xff,0x74,0xcc,0x8c, | ||
| 1467 | 0x00,0x01,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0x83,0x00,0x01, | ||
| 1468 | 0xff,0x75,0xcc,0x83,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0x84,0x00,0x01,0xff,0x75, | ||
| 1469 | 0xcc,0x84,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0x86,0x00,0x01,0xff,0x75, | ||
| 1470 | 0xcc,0x86,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0x8a,0x00,0x01,0xff,0x75,0xcc,0x8a, | ||
| 1471 | 0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0x8b,0x00,0x01, | ||
| 1472 | 0xff,0x75,0xcc,0x8b,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0xa8,0x00,0x01,0xff,0x75, | ||
| 1473 | 0xcc,0xa8,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x57,0xcc,0x82,0x00,0x01,0xff,0x77, | ||
| 1474 | 0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x59,0xcc,0x82,0x00,0x01,0xff,0x79,0xcc,0x82, | ||
| 1475 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x59,0xcc,0x88,0x00,0x01,0xff,0x5a, | ||
| 1476 | 0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x7a,0xcc,0x81,0x00,0x01,0xff,0x5a,0xcc,0x87, | ||
| 1477 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x7a,0xcc,0x87,0x00,0x01,0xff,0x5a,0xcc,0x8c, | ||
| 1478 | 0x00,0x10,0x08,0x01,0xff,0x7a,0xcc,0x8c,0x00,0x01,0x00,0xd0,0x4a,0xcf,0x86,0x55, | ||
| 1479 | 0x04,0x01,0x00,0xd4,0x2c,0xd3,0x18,0x92,0x14,0x91,0x10,0x10,0x08,0x01,0xff,0x4f, | ||
| 1480 | 0xcc,0x9b,0x00,0x01,0xff,0x6f,0xcc,0x9b,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01, | ||
| 1481 | 0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0x55,0xcc,0x9b,0x00,0x93, | ||
| 1482 | 0x14,0x92,0x10,0x91,0x0c,0x10,0x08,0x01,0xff,0x75,0xcc,0x9b,0x00,0x01,0x00,0x01, | ||
| 1483 | 0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0xb4,0xd4,0x24,0x53,0x04,0x01,0x00,0x52, | ||
| 1484 | 0x04,0x01,0x00,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0x41,0xcc,0x8c,0x00,0x10, | ||
| 1485 | 0x08,0x01,0xff,0x61,0xcc,0x8c,0x00,0x01,0xff,0x49,0xcc,0x8c,0x00,0xd3,0x46,0xd2, | ||
| 1486 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x69,0xcc,0x8c,0x00,0x01,0xff,0x4f,0xcc,0x8c, | ||
| 1487 | 0x00,0x10,0x08,0x01,0xff,0x6f,0xcc,0x8c,0x00,0x01,0xff,0x55,0xcc,0x8c,0x00,0xd1, | ||
| 1488 | 0x12,0x10,0x08,0x01,0xff,0x75,0xcc,0x8c,0x00,0x01,0xff,0x55,0xcc,0x88,0xcc,0x84, | ||
| 1489 | 0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88,0xcc,0x84,0x00,0x01,0xff,0x55,0xcc,0x88, | ||
| 1490 | 0xcc,0x81,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88,0xcc,0x81, | ||
| 1491 | 0x00,0x01,0xff,0x55,0xcc,0x88,0xcc,0x8c,0x00,0x10,0x0a,0x01,0xff,0x75,0xcc,0x88, | ||
| 1492 | 0xcc,0x8c,0x00,0x01,0xff,0x55,0xcc,0x88,0xcc,0x80,0x00,0xd1,0x0e,0x10,0x0a,0x01, | ||
| 1493 | 0xff,0x75,0xcc,0x88,0xcc,0x80,0x00,0x01,0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x88, | ||
| 1494 | 0xcc,0x84,0x00,0x01,0xff,0x61,0xcc,0x88,0xcc,0x84,0x00,0xd4,0x80,0xd3,0x3a,0xd2, | ||
| 1495 | 0x26,0xd1,0x14,0x10,0x0a,0x01,0xff,0x41,0xcc,0x87,0xcc,0x84,0x00,0x01,0xff,0x61, | ||
| 1496 | 0xcc,0x87,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xc3,0x86,0xcc,0x84,0x00,0x01,0xff, | ||
| 1497 | 0xc3,0xa6,0xcc,0x84,0x00,0x51,0x04,0x01,0x00,0x10,0x08,0x01,0xff,0x47,0xcc,0x8c, | ||
| 1498 | 0x00,0x01,0xff,0x67,0xcc,0x8c,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x4b, | ||
| 1499 | 0xcc,0x8c,0x00,0x01,0xff,0x6b,0xcc,0x8c,0x00,0x10,0x08,0x01,0xff,0x4f,0xcc,0xa8, | ||
| 1500 | 0x00,0x01,0xff,0x6f,0xcc,0xa8,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc,0xa8, | ||
| 1501 | 0xcc,0x84,0x00,0x01,0xff,0x6f,0xcc,0xa8,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xc6, | ||
| 1502 | 0xb7,0xcc,0x8c,0x00,0x01,0xff,0xca,0x92,0xcc,0x8c,0x00,0xd3,0x24,0xd2,0x10,0x91, | ||
| 1503 | 0x0c,0x10,0x08,0x01,0xff,0x6a,0xcc,0x8c,0x00,0x01,0x00,0x01,0x00,0x91,0x10,0x10, | ||
| 1504 | 0x08,0x01,0xff,0x47,0xcc,0x81,0x00,0x01,0xff,0x67,0xcc,0x81,0x00,0x04,0x00,0xd2, | ||
| 1505 | 0x24,0xd1,0x10,0x10,0x08,0x04,0xff,0x4e,0xcc,0x80,0x00,0x04,0xff,0x6e,0xcc,0x80, | ||
| 1506 | 0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x8a,0xcc,0x81,0x00,0x01,0xff,0x61,0xcc,0x8a, | ||
| 1507 | 0xcc,0x81,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xc3,0x86,0xcc,0x81,0x00,0x01,0xff, | ||
| 1508 | 0xc3,0xa6,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xc3,0x98,0xcc,0x81,0x00,0x01,0xff, | ||
| 1509 | 0xc3,0xb8,0xcc,0x81,0x00,0xe2,0x07,0x02,0xe1,0xae,0x01,0xe0,0x93,0x01,0xcf,0x86, | ||
| 1510 | 0xd5,0xf4,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x41,0xcc, | ||
| 1511 | 0x8f,0x00,0x01,0xff,0x61,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x41,0xcc,0x91,0x00, | ||
| 1512 | 0x01,0xff,0x61,0xcc,0x91,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x45,0xcc,0x8f,0x00, | ||
| 1513 | 0x01,0xff,0x65,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x45,0xcc,0x91,0x00,0x01,0xff, | ||
| 1514 | 0x65,0xcc,0x91,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x49,0xcc,0x8f,0x00, | ||
| 1515 | 0x01,0xff,0x69,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x49,0xcc,0x91,0x00,0x01,0xff, | ||
| 1516 | 0x69,0xcc,0x91,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x4f,0xcc,0x8f,0x00,0x01,0xff, | ||
| 1517 | 0x6f,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x4f,0xcc,0x91,0x00,0x01,0xff,0x6f,0xcc, | ||
| 1518 | 0x91,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x52,0xcc,0x8f,0x00, | ||
| 1519 | 0x01,0xff,0x72,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x52,0xcc,0x91,0x00,0x01,0xff, | ||
| 1520 | 0x72,0xcc,0x91,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0x8f,0x00,0x01,0xff, | ||
| 1521 | 0x75,0xcc,0x8f,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0x91,0x00,0x01,0xff,0x75,0xcc, | ||
| 1522 | 0x91,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x04,0xff,0x53,0xcc,0xa6,0x00,0x04,0xff, | ||
| 1523 | 0x73,0xcc,0xa6,0x00,0x10,0x08,0x04,0xff,0x54,0xcc,0xa6,0x00,0x04,0xff,0x74,0xcc, | ||
| 1524 | 0xa6,0x00,0x51,0x04,0x04,0x00,0x10,0x08,0x04,0xff,0x48,0xcc,0x8c,0x00,0x04,0xff, | ||
| 1525 | 0x68,0xcc,0x8c,0x00,0xd4,0x68,0xd3,0x20,0xd2,0x0c,0x91,0x08,0x10,0x04,0x06,0x00, | ||
| 1526 | 0x07,0x00,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x08,0x04,0xff,0x41,0xcc,0x87,0x00, | ||
| 1527 | 0x04,0xff,0x61,0xcc,0x87,0x00,0xd2,0x24,0xd1,0x10,0x10,0x08,0x04,0xff,0x45,0xcc, | ||
| 1528 | 0xa7,0x00,0x04,0xff,0x65,0xcc,0xa7,0x00,0x10,0x0a,0x04,0xff,0x4f,0xcc,0x88,0xcc, | ||
| 1529 | 0x84,0x00,0x04,0xff,0x6f,0xcc,0x88,0xcc,0x84,0x00,0xd1,0x14,0x10,0x0a,0x04,0xff, | ||
| 1530 | 0x4f,0xcc,0x83,0xcc,0x84,0x00,0x04,0xff,0x6f,0xcc,0x83,0xcc,0x84,0x00,0x10,0x08, | ||
| 1531 | 0x04,0xff,0x4f,0xcc,0x87,0x00,0x04,0xff,0x6f,0xcc,0x87,0x00,0x93,0x30,0xd2,0x24, | ||
| 1532 | 0xd1,0x14,0x10,0x0a,0x04,0xff,0x4f,0xcc,0x87,0xcc,0x84,0x00,0x04,0xff,0x6f,0xcc, | ||
| 1533 | 0x87,0xcc,0x84,0x00,0x10,0x08,0x04,0xff,0x59,0xcc,0x84,0x00,0x04,0xff,0x79,0xcc, | ||
| 1534 | 0x84,0x00,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00,0x08,0x00,0x08,0x00,0xcf,0x86, | ||
| 1535 | 0x95,0x14,0x94,0x10,0x93,0x0c,0x92,0x08,0x11,0x04,0x08,0x00,0x09,0x00,0x09,0x00, | ||
| 1536 | 0x09,0x00,0x01,0x00,0x01,0x00,0xd0,0x22,0xcf,0x86,0x55,0x04,0x01,0x00,0x94,0x18, | ||
| 1537 | 0x53,0x04,0x01,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x04,0x00,0x04,0x00, | ||
| 1538 | 0x11,0x04,0x04,0x00,0x07,0x00,0x01,0x00,0xcf,0x86,0xd5,0x18,0x54,0x04,0x01,0x00, | ||
| 1539 | 0x53,0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00, | ||
| 1540 | 0x04,0x00,0x94,0x18,0x53,0x04,0x01,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x04,0x00, | ||
| 1541 | 0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x07,0x00,0x07,0x00,0xe1,0x35,0x01,0xd0, | ||
| 1542 | 0x72,0xcf,0x86,0xd5,0x24,0x54,0x04,0x01,0xe6,0xd3,0x10,0x52,0x04,0x01,0xe6,0x91, | ||
| 1543 | 0x08,0x10,0x04,0x01,0xe6,0x01,0xe8,0x01,0xdc,0x92,0x0c,0x51,0x04,0x01,0xdc,0x10, | ||
| 1544 | 0x04,0x01,0xe8,0x01,0xd8,0x01,0xdc,0xd4,0x2c,0xd3,0x1c,0xd2,0x10,0xd1,0x08,0x10, | ||
| 1545 | 0x04,0x01,0xdc,0x01,0xca,0x10,0x04,0x01,0xca,0x01,0xdc,0x51,0x04,0x01,0xdc,0x10, | ||
| 1546 | 0x04,0x01,0xdc,0x01,0xca,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0xca,0x01,0xdc,0x01, | ||
| 1547 | 0xdc,0x01,0xdc,0xd3,0x08,0x12,0x04,0x01,0xdc,0x01,0x01,0xd2,0x0c,0x91,0x08,0x10, | ||
| 1548 | 0x04,0x01,0x01,0x01,0xdc,0x01,0xdc,0x91,0x08,0x10,0x04,0x01,0xdc,0x01,0xe6,0x01, | ||
| 1549 | 0xe6,0xcf,0x86,0xd5,0x7f,0xd4,0x47,0xd3,0x2e,0xd2,0x19,0xd1,0x0e,0x10,0x07,0x01, | ||
| 1550 | 0xff,0xcc,0x80,0x00,0x01,0xff,0xcc,0x81,0x00,0x10,0x04,0x01,0xe6,0x01,0xff,0xcc, | ||
| 1551 | 0x93,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xcc,0x88,0xcc,0x81,0x00,0x01,0xf0,0x10, | ||
| 1552 | 0x04,0x04,0xe6,0x04,0xdc,0xd2,0x08,0x11,0x04,0x04,0xdc,0x04,0xe6,0xd1,0x08,0x10, | ||
| 1553 | 0x04,0x04,0xe6,0x04,0xdc,0x10,0x04,0x04,0xdc,0x06,0xff,0x00,0xd3,0x18,0xd2,0x0c, | ||
| 1554 | 0x51,0x04,0x07,0xe6,0x10,0x04,0x07,0xe6,0x07,0xdc,0x51,0x04,0x07,0xdc,0x10,0x04, | ||
| 1555 | 0x07,0xdc,0x07,0xe6,0xd2,0x10,0xd1,0x08,0x10,0x04,0x08,0xe8,0x08,0xdc,0x10,0x04, | ||
| 1556 | 0x08,0xdc,0x08,0xe6,0xd1,0x08,0x10,0x04,0x08,0xe9,0x07,0xea,0x10,0x04,0x07,0xea, | ||
| 1557 | 0x07,0xe9,0xd4,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x01,0xea,0x10,0x04,0x04,0xe9, | ||
| 1558 | 0x06,0xe6,0x06,0xe6,0x06,0xe6,0xd3,0x13,0x52,0x04,0x0a,0x00,0x91,0x0b,0x10,0x07, | ||
| 1559 | 0x01,0xff,0xca,0xb9,0x00,0x01,0x00,0x0a,0x00,0xd2,0x0c,0x51,0x04,0x00,0x00,0x10, | ||
| 1560 | 0x04,0x01,0x00,0x09,0x00,0x51,0x04,0x09,0x00,0x10,0x06,0x01,0xff,0x3b,0x00,0x10, | ||
| 1561 | 0x00,0xd0,0xe1,0xcf,0x86,0xd5,0x7a,0xd4,0x5f,0xd3,0x21,0x52,0x04,0x00,0x00,0xd1, | ||
| 1562 | 0x0d,0x10,0x04,0x01,0x00,0x01,0xff,0xc2,0xa8,0xcc,0x81,0x00,0x10,0x09,0x01,0xff, | ||
| 1563 | 0xce,0x91,0xcc,0x81,0x00,0x01,0xff,0xc2,0xb7,0x00,0xd2,0x1f,0xd1,0x12,0x10,0x09, | ||
| 1564 | 0x01,0xff,0xce,0x95,0xcc,0x81,0x00,0x01,0xff,0xce,0x97,0xcc,0x81,0x00,0x10,0x09, | ||
| 1565 | 0x01,0xff,0xce,0x99,0xcc,0x81,0x00,0x00,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xce, | ||
| 1566 | 0x9f,0xcc,0x81,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xce,0xa5,0xcc,0x81,0x00,0x01, | ||
| 1567 | 0xff,0xce,0xa9,0xcc,0x81,0x00,0x93,0x17,0x92,0x13,0x91,0x0f,0x10,0x0b,0x01,0xff, | ||
| 1568 | 0xce,0xb9,0xcc,0x88,0xcc,0x81,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4, | ||
| 1569 | 0x4a,0xd3,0x10,0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x01, | ||
| 1570 | 0x00,0xd2,0x16,0x51,0x04,0x01,0x00,0x10,0x09,0x01,0xff,0xce,0x99,0xcc,0x88,0x00, | ||
| 1571 | 0x01,0xff,0xce,0xa5,0xcc,0x88,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc, | ||
| 1572 | 0x81,0x00,0x01,0xff,0xce,0xb5,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce,0xb7,0xcc, | ||
| 1573 | 0x81,0x00,0x01,0xff,0xce,0xb9,0xcc,0x81,0x00,0x93,0x17,0x92,0x13,0x91,0x0f,0x10, | ||
| 1574 | 0x0b,0x01,0xff,0xcf,0x85,0xcc,0x88,0xcc,0x81,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 1575 | 0x01,0x00,0xcf,0x86,0xd5,0x7b,0xd4,0x39,0x53,0x04,0x01,0x00,0xd2,0x16,0x51,0x04, | ||
| 1576 | 0x01,0x00,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x88,0x00,0x01,0xff,0xcf,0x85,0xcc, | ||
| 1577 | 0x88,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xbf,0xcc,0x81,0x00,0x01,0xff,0xcf, | ||
| 1578 | 0x85,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xcf,0x89,0xcc,0x81,0x00,0x0a,0x00,0xd3, | ||
| 1579 | 0x26,0xd2,0x11,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xcf,0x92,0xcc, | ||
| 1580 | 0x81,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xcf,0x92,0xcc,0x88,0x00,0x01,0x00,0x10, | ||
| 1581 | 0x04,0x01,0x00,0x04,0x00,0xd2,0x0c,0x51,0x04,0x06,0x00,0x10,0x04,0x01,0x00,0x04, | ||
| 1582 | 0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x04,0x00,0x10,0x04,0x01,0x00,0x04,0x00,0xd4, | ||
| 1583 | 0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x04,0x00,0x01,0x00,0x01, | ||
| 1584 | 0x00,0x01,0x00,0xd3,0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x05,0x00,0x10,0x04,0x06, | ||
| 1585 | 0x00,0x07,0x00,0x12,0x04,0x07,0x00,0x08,0x00,0xe3,0x47,0x04,0xe2,0xbe,0x02,0xe1, | ||
| 1586 | 0x07,0x01,0xd0,0x8b,0xcf,0x86,0xd5,0x6c,0xd4,0x53,0xd3,0x30,0xd2,0x1f,0xd1,0x12, | ||
| 1587 | 0x10,0x09,0x04,0xff,0xd0,0x95,0xcc,0x80,0x00,0x01,0xff,0xd0,0x95,0xcc,0x88,0x00, | ||
| 1588 | 0x10,0x04,0x01,0x00,0x01,0xff,0xd0,0x93,0xcc,0x81,0x00,0x51,0x04,0x01,0x00,0x10, | ||
| 1589 | 0x04,0x01,0x00,0x01,0xff,0xd0,0x86,0xcc,0x88,0x00,0x52,0x04,0x01,0x00,0xd1,0x12, | ||
| 1590 | 0x10,0x09,0x01,0xff,0xd0,0x9a,0xcc,0x81,0x00,0x04,0xff,0xd0,0x98,0xcc,0x80,0x00, | ||
| 1591 | 0x10,0x09,0x01,0xff,0xd0,0xa3,0xcc,0x86,0x00,0x01,0x00,0x53,0x04,0x01,0x00,0x92, | ||
| 1592 | 0x11,0x91,0x0d,0x10,0x04,0x01,0x00,0x01,0xff,0xd0,0x98,0xcc,0x86,0x00,0x01,0x00, | ||
| 1593 | 0x01,0x00,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0x92,0x11,0x91,0x0d,0x10,0x04, | ||
| 1594 | 0x01,0x00,0x01,0xff,0xd0,0xb8,0xcc,0x86,0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0xd5, | ||
| 1595 | 0x57,0x54,0x04,0x01,0x00,0xd3,0x30,0xd2,0x1f,0xd1,0x12,0x10,0x09,0x04,0xff,0xd0, | ||
| 1596 | 0xb5,0xcc,0x80,0x00,0x01,0xff,0xd0,0xb5,0xcc,0x88,0x00,0x10,0x04,0x01,0x00,0x01, | ||
| 1597 | 0xff,0xd0,0xb3,0xcc,0x81,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff, | ||
| 1598 | 0xd1,0x96,0xcc,0x88,0x00,0x52,0x04,0x01,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd0, | ||
| 1599 | 0xba,0xcc,0x81,0x00,0x04,0xff,0xd0,0xb8,0xcc,0x80,0x00,0x10,0x09,0x01,0xff,0xd1, | ||
| 1600 | 0x83,0xcc,0x86,0x00,0x01,0x00,0x54,0x04,0x01,0x00,0x93,0x1a,0x52,0x04,0x01,0x00, | ||
| 1601 | 0x51,0x04,0x01,0x00,0x10,0x09,0x01,0xff,0xd1,0xb4,0xcc,0x8f,0x00,0x01,0xff,0xd1, | ||
| 1602 | 0xb5,0xcc,0x8f,0x00,0x01,0x00,0xd0,0x2e,0xcf,0x86,0x95,0x28,0x94,0x24,0xd3,0x18, | ||
| 1603 | 0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xe6,0x51,0x04,0x01,0xe6, | ||
| 1604 | 0x10,0x04,0x01,0xe6,0x0a,0xe6,0x92,0x08,0x11,0x04,0x04,0x00,0x06,0x00,0x04,0x00, | ||
| 1605 | 0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0xbe,0xd4,0x4a,0xd3,0x2a,0xd2,0x1a,0xd1,0x0d, | ||
| 1606 | 0x10,0x04,0x01,0x00,0x01,0xff,0xd0,0x96,0xcc,0x86,0x00,0x10,0x09,0x01,0xff,0xd0, | ||
| 1607 | 0xb6,0xcc,0x86,0x00,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x06,0x00,0x10,0x04, | ||
| 1608 | 0x06,0x00,0x01,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x06,0x00,0x10,0x04, | ||
| 1609 | 0x06,0x00,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x06,0x00,0x10,0x04,0x06,0x00, | ||
| 1610 | 0x09,0x00,0xd3,0x3a,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd0,0x90,0xcc,0x86, | ||
| 1611 | 0x00,0x01,0xff,0xd0,0xb0,0xcc,0x86,0x00,0x10,0x09,0x01,0xff,0xd0,0x90,0xcc,0x88, | ||
| 1612 | 0x00,0x01,0xff,0xd0,0xb0,0xcc,0x88,0x00,0x51,0x04,0x01,0x00,0x10,0x09,0x01,0xff, | ||
| 1613 | 0xd0,0x95,0xcc,0x86,0x00,0x01,0xff,0xd0,0xb5,0xcc,0x86,0x00,0xd2,0x16,0x51,0x04, | ||
| 1614 | 0x01,0x00,0x10,0x09,0x01,0xff,0xd3,0x98,0xcc,0x88,0x00,0x01,0xff,0xd3,0x99,0xcc, | ||
| 1615 | 0x88,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd0,0x96,0xcc,0x88,0x00,0x01,0xff,0xd0, | ||
| 1616 | 0xb6,0xcc,0x88,0x00,0x10,0x09,0x01,0xff,0xd0,0x97,0xcc,0x88,0x00,0x01,0xff,0xd0, | ||
| 1617 | 0xb7,0xcc,0x88,0x00,0xd4,0x74,0xd3,0x3a,0xd2,0x16,0x51,0x04,0x01,0x00,0x10,0x09, | ||
| 1618 | 0x01,0xff,0xd0,0x98,0xcc,0x84,0x00,0x01,0xff,0xd0,0xb8,0xcc,0x84,0x00,0xd1,0x12, | ||
| 1619 | 0x10,0x09,0x01,0xff,0xd0,0x98,0xcc,0x88,0x00,0x01,0xff,0xd0,0xb8,0xcc,0x88,0x00, | ||
| 1620 | 0x10,0x09,0x01,0xff,0xd0,0x9e,0xcc,0x88,0x00,0x01,0xff,0xd0,0xbe,0xcc,0x88,0x00, | ||
| 1621 | 0xd2,0x16,0x51,0x04,0x01,0x00,0x10,0x09,0x01,0xff,0xd3,0xa8,0xcc,0x88,0x00,0x01, | ||
| 1622 | 0xff,0xd3,0xa9,0xcc,0x88,0x00,0xd1,0x12,0x10,0x09,0x04,0xff,0xd0,0xad,0xcc,0x88, | ||
| 1623 | 0x00,0x04,0xff,0xd1,0x8d,0xcc,0x88,0x00,0x10,0x09,0x01,0xff,0xd0,0xa3,0xcc,0x84, | ||
| 1624 | 0x00,0x01,0xff,0xd1,0x83,0xcc,0x84,0x00,0xd3,0x3a,0xd2,0x24,0xd1,0x12,0x10,0x09, | ||
| 1625 | 0x01,0xff,0xd0,0xa3,0xcc,0x88,0x00,0x01,0xff,0xd1,0x83,0xcc,0x88,0x00,0x10,0x09, | ||
| 1626 | 0x01,0xff,0xd0,0xa3,0xcc,0x8b,0x00,0x01,0xff,0xd1,0x83,0xcc,0x8b,0x00,0x91,0x12, | ||
| 1627 | 0x10,0x09,0x01,0xff,0xd0,0xa7,0xcc,0x88,0x00,0x01,0xff,0xd1,0x87,0xcc,0x88,0x00, | ||
| 1628 | 0x08,0x00,0x92,0x16,0x91,0x12,0x10,0x09,0x01,0xff,0xd0,0xab,0xcc,0x88,0x00,0x01, | ||
| 1629 | 0xff,0xd1,0x8b,0xcc,0x88,0x00,0x09,0x00,0x09,0x00,0xd1,0x74,0xd0,0x36,0xcf,0x86, | ||
| 1630 | 0xd5,0x10,0x54,0x04,0x06,0x00,0x93,0x08,0x12,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00, | ||
| 1631 | 0xd4,0x10,0x93,0x0c,0x52,0x04,0x0a,0x00,0x11,0x04,0x0b,0x00,0x0c,0x00,0x10,0x00, | ||
| 1632 | 0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 1633 | 0x01,0x00,0xcf,0x86,0xd5,0x24,0x54,0x04,0x01,0x00,0xd3,0x10,0x52,0x04,0x01,0x00, | ||
| 1634 | 0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 1635 | 0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 1636 | 0x10,0x04,0x14,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd0,0xba, | ||
| 1637 | 0xcf,0x86,0xd5,0x4c,0xd4,0x24,0x53,0x04,0x01,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04, | ||
| 1638 | 0x14,0x00,0x01,0x00,0x10,0x04,0x04,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x00,0x00, | ||
| 1639 | 0x10,0x00,0x10,0x04,0x10,0x00,0x0d,0x00,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04, | ||
| 1640 | 0x00,0x00,0x02,0xdc,0x02,0xe6,0x51,0x04,0x02,0xe6,0x10,0x04,0x02,0xdc,0x02,0xe6, | ||
| 1641 | 0x92,0x0c,0x51,0x04,0x02,0xe6,0x10,0x04,0x02,0xde,0x02,0xdc,0x02,0xe6,0xd4,0x2c, | ||
| 1642 | 0xd3,0x10,0x92,0x0c,0x51,0x04,0x02,0xe6,0x10,0x04,0x08,0xdc,0x02,0xdc,0x02,0xdc, | ||
| 1643 | 0xd2,0x0c,0x51,0x04,0x02,0xe6,0x10,0x04,0x02,0xdc,0x02,0xe6,0xd1,0x08,0x10,0x04, | ||
| 1644 | 0x02,0xe6,0x02,0xde,0x10,0x04,0x02,0xe4,0x02,0xe6,0xd3,0x20,0xd2,0x10,0xd1,0x08, | ||
| 1645 | 0x10,0x04,0x01,0x0a,0x01,0x0b,0x10,0x04,0x01,0x0c,0x01,0x0d,0xd1,0x08,0x10,0x04, | ||
| 1646 | 0x01,0x0e,0x01,0x0f,0x10,0x04,0x01,0x10,0x01,0x11,0xd2,0x10,0xd1,0x08,0x10,0x04, | ||
| 1647 | 0x01,0x12,0x01,0x13,0x10,0x04,0x09,0x13,0x01,0x14,0xd1,0x08,0x10,0x04,0x01,0x15, | ||
| 1648 | 0x01,0x16,0x10,0x04,0x01,0x00,0x01,0x17,0xcf,0x86,0xd5,0x28,0x94,0x24,0x93,0x20, | ||
| 1649 | 0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x01,0x18,0x10,0x04,0x01,0x19,0x01,0x00, | ||
| 1650 | 0xd1,0x08,0x10,0x04,0x02,0xe6,0x08,0xdc,0x10,0x04,0x08,0x00,0x08,0x12,0x00,0x00, | ||
| 1651 | 0x01,0x00,0xd4,0x1c,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04, | ||
| 1652 | 0x01,0x00,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x14,0x00,0x93,0x10, | ||
| 1653 | 0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1654 | 0xe2,0xfb,0x01,0xe1,0x2b,0x01,0xd0,0xa8,0xcf,0x86,0xd5,0x55,0xd4,0x28,0xd3,0x10, | ||
| 1655 | 0x52,0x04,0x07,0x00,0x91,0x08,0x10,0x04,0x0d,0x00,0x10,0x00,0x0a,0x00,0xd2,0x0c, | ||
| 1656 | 0x51,0x04,0x0a,0x00,0x10,0x04,0x0a,0x00,0x08,0x00,0x91,0x08,0x10,0x04,0x01,0x00, | ||
| 1657 | 0x07,0x00,0x07,0x00,0xd3,0x0c,0x52,0x04,0x07,0xe6,0x11,0x04,0x07,0xe6,0x0a,0xe6, | ||
| 1658 | 0xd2,0x10,0xd1,0x08,0x10,0x04,0x0a,0x1e,0x0a,0x1f,0x10,0x04,0x0a,0x20,0x01,0x00, | ||
| 1659 | 0xd1,0x09,0x10,0x05,0x0f,0xff,0x00,0x00,0x00,0x10,0x04,0x08,0x00,0x01,0x00,0xd4, | ||
| 1660 | 0x3d,0x93,0x39,0xd2,0x1a,0xd1,0x08,0x10,0x04,0x0c,0x00,0x01,0x00,0x10,0x09,0x01, | ||
| 1661 | 0xff,0xd8,0xa7,0xd9,0x93,0x00,0x01,0xff,0xd8,0xa7,0xd9,0x94,0x00,0xd1,0x12,0x10, | ||
| 1662 | 0x09,0x01,0xff,0xd9,0x88,0xd9,0x94,0x00,0x01,0xff,0xd8,0xa7,0xd9,0x95,0x00,0x10, | ||
| 1663 | 0x09,0x01,0xff,0xd9,0x8a,0xd9,0x94,0x00,0x01,0x00,0x01,0x00,0x53,0x04,0x01,0x00, | ||
| 1664 | 0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x0a,0x00,0x0a,0x00,0xcf,0x86, | ||
| 1665 | 0xd5,0x5c,0xd4,0x20,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04, | ||
| 1666 | 0x01,0x00,0x01,0x1b,0xd1,0x08,0x10,0x04,0x01,0x1c,0x01,0x1d,0x10,0x04,0x01,0x1e, | ||
| 1667 | 0x01,0x1f,0xd3,0x20,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x20,0x01,0x21,0x10,0x04, | ||
| 1668 | 0x01,0x22,0x04,0xe6,0xd1,0x08,0x10,0x04,0x04,0xe6,0x04,0xdc,0x10,0x04,0x07,0xdc, | ||
| 1669 | 0x07,0xe6,0xd2,0x0c,0x91,0x08,0x10,0x04,0x07,0xe6,0x08,0xe6,0x08,0xe6,0xd1,0x08, | ||
| 1670 | 0x10,0x04,0x08,0xdc,0x08,0xe6,0x10,0x04,0x08,0xe6,0x0c,0xdc,0xd4,0x10,0x53,0x04, | ||
| 1671 | 0x01,0x00,0x52,0x04,0x01,0x00,0x11,0x04,0x01,0x00,0x06,0x00,0x93,0x10,0x92,0x0c, | ||
| 1672 | 0x91,0x08,0x10,0x04,0x01,0x23,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd0,0x22, | ||
| 1673 | 0xcf,0x86,0x55,0x04,0x01,0x00,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x08, | ||
| 1674 | 0x11,0x04,0x04,0x00,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x04,0x00, | ||
| 1675 | 0xcf,0x86,0xd5,0x5b,0xd4,0x2e,0xd3,0x1e,0x92,0x1a,0xd1,0x0d,0x10,0x09,0x01,0xff, | ||
| 1676 | 0xdb,0x95,0xd9,0x94,0x00,0x01,0x00,0x10,0x09,0x01,0xff,0xdb,0x81,0xd9,0x94,0x00, | ||
| 1677 | 0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00, | ||
| 1678 | 0x04,0x00,0xd3,0x19,0xd2,0x11,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff, | ||
| 1679 | 0xdb,0x92,0xd9,0x94,0x00,0x11,0x04,0x01,0x00,0x01,0xe6,0x52,0x04,0x01,0xe6,0xd1, | ||
| 1680 | 0x08,0x10,0x04,0x01,0xe6,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xe6,0xd4,0x38,0xd3, | ||
| 1681 | 0x1c,0xd2,0x0c,0x51,0x04,0x01,0xe6,0x10,0x04,0x01,0xe6,0x01,0xdc,0xd1,0x08,0x10, | ||
| 1682 | 0x04,0x01,0xe6,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xe6,0xd2,0x10,0xd1,0x08,0x10, | ||
| 1683 | 0x04,0x01,0xe6,0x01,0x00,0x10,0x04,0x01,0xdc,0x01,0xe6,0x91,0x08,0x10,0x04,0x01, | ||
| 1684 | 0xe6,0x01,0xdc,0x07,0x00,0x53,0x04,0x01,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x04, | ||
| 1685 | 0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x07,0x00,0xd1,0xc8,0xd0,0x76,0xcf, | ||
| 1686 | 0x86,0xd5,0x28,0xd4,0x14,0x53,0x04,0x04,0x00,0x52,0x04,0x04,0x00,0x51,0x04,0x04, | ||
| 1687 | 0x00,0x10,0x04,0x00,0x00,0x04,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x04, | ||
| 1688 | 0x00,0x04,0x24,0x04,0x00,0x04,0x00,0x04,0x00,0xd4,0x14,0x53,0x04,0x04,0x00,0x52, | ||
| 1689 | 0x04,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x07,0x00,0x07,0x00,0xd3,0x1c,0xd2, | ||
| 1690 | 0x0c,0x91,0x08,0x10,0x04,0x04,0xe6,0x04,0xdc,0x04,0xe6,0xd1,0x08,0x10,0x04,0x04, | ||
| 1691 | 0xdc,0x04,0xe6,0x10,0x04,0x04,0xe6,0x04,0xdc,0xd2,0x0c,0x51,0x04,0x04,0xdc,0x10, | ||
| 1692 | 0x04,0x04,0xe6,0x04,0xdc,0xd1,0x08,0x10,0x04,0x04,0xdc,0x04,0xe6,0x10,0x04,0x04, | ||
| 1693 | 0xdc,0x04,0xe6,0xcf,0x86,0xd5,0x3c,0x94,0x38,0xd3,0x1c,0xd2,0x0c,0x51,0x04,0x04, | ||
| 1694 | 0xe6,0x10,0x04,0x04,0xdc,0x04,0xe6,0xd1,0x08,0x10,0x04,0x04,0xdc,0x04,0xe6,0x10, | ||
| 1695 | 0x04,0x04,0xdc,0x04,0xe6,0xd2,0x10,0xd1,0x08,0x10,0x04,0x04,0xdc,0x04,0xe6,0x10, | ||
| 1696 | 0x04,0x04,0xe6,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x07,0x00,0x07,0x00,0x08, | ||
| 1697 | 0x00,0x94,0x10,0x53,0x04,0x08,0x00,0x52,0x04,0x08,0x00,0x11,0x04,0x08,0x00,0x0a, | ||
| 1698 | 0x00,0x0a,0x00,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x04,0x00,0x54,0x04,0x04,0x00,0x93, | ||
| 1699 | 0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1700 | 0x00,0xcf,0x86,0x55,0x04,0x09,0x00,0xd4,0x14,0x53,0x04,0x09,0x00,0x92,0x0c,0x51, | ||
| 1701 | 0x04,0x09,0x00,0x10,0x04,0x09,0x00,0x09,0xe6,0x09,0xe6,0xd3,0x10,0x92,0x0c,0x51, | ||
| 1702 | 0x04,0x09,0xe6,0x10,0x04,0x09,0xdc,0x09,0xe6,0x09,0x00,0xd2,0x0c,0x51,0x04,0x09, | ||
| 1703 | 0x00,0x10,0x04,0x09,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x14,0xdc,0x14, | ||
| 1704 | 0x00,0xe4,0xf8,0x57,0xe3,0x45,0x3f,0xe2,0xf4,0x3e,0xe1,0xc7,0x2c,0xe0,0x21,0x10, | ||
| 1705 | 0xcf,0x86,0xc5,0xe4,0x80,0x08,0xe3,0xcb,0x03,0xe2,0x61,0x01,0xd1,0x94,0xd0,0x5a, | ||
| 1706 | 0xcf,0x86,0xd5,0x20,0x54,0x04,0x0b,0x00,0xd3,0x0c,0x52,0x04,0x0b,0x00,0x11,0x04, | ||
| 1707 | 0x0b,0x00,0x0b,0xe6,0x92,0x0c,0x51,0x04,0x0b,0xe6,0x10,0x04,0x0b,0x00,0x0b,0xe6, | ||
| 1708 | 0x0b,0xe6,0xd4,0x24,0xd3,0x10,0x52,0x04,0x0b,0xe6,0x91,0x08,0x10,0x04,0x0b,0x00, | ||
| 1709 | 0x0b,0xe6,0x0b,0xe6,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0b,0x00,0x0b,0xe6,0x0b,0xe6, | ||
| 1710 | 0x11,0x04,0x0b,0xe6,0x00,0x00,0x53,0x04,0x0b,0x00,0x52,0x04,0x0b,0x00,0x51,0x04, | ||
| 1711 | 0x0b,0x00,0x10,0x04,0x0b,0x00,0x00,0x00,0xcf,0x86,0xd5,0x20,0x54,0x04,0x0c,0x00, | ||
| 1712 | 0x53,0x04,0x0c,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x0c,0xdc,0x0c,0xdc, | ||
| 1713 | 0x51,0x04,0x00,0x00,0x10,0x04,0x0c,0x00,0x00,0x00,0x94,0x14,0x53,0x04,0x13,0x00, | ||
| 1714 | 0x92,0x0c,0x51,0x04,0x13,0x00,0x10,0x04,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1715 | 0xd0,0x4a,0xcf,0x86,0x55,0x04,0x00,0x00,0xd4,0x20,0xd3,0x10,0x92,0x0c,0x91,0x08, | ||
| 1716 | 0x10,0x04,0x0d,0x00,0x10,0x00,0x0d,0x00,0x0d,0x00,0x52,0x04,0x0d,0x00,0x91,0x08, | ||
| 1717 | 0x10,0x04,0x0d,0x00,0x10,0x00,0x10,0x00,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x10,0x00, | ||
| 1718 | 0x10,0x04,0x10,0x00,0x11,0x00,0x91,0x08,0x10,0x04,0x11,0x00,0x00,0x00,0x12,0x00, | ||
| 1719 | 0x52,0x04,0x12,0x00,0x11,0x04,0x12,0x00,0x00,0x00,0xcf,0x86,0xd5,0x18,0x54,0x04, | ||
| 1720 | 0x00,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x14,0xdc, | ||
| 1721 | 0x12,0xe6,0x12,0xe6,0xd4,0x30,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x12,0xe6,0x10,0x04, | ||
| 1722 | 0x12,0x00,0x11,0xdc,0x51,0x04,0x0d,0xe6,0x10,0x04,0x0d,0xdc,0x0d,0xe6,0xd2,0x0c, | ||
| 1723 | 0x91,0x08,0x10,0x04,0x0d,0xe6,0x0d,0xdc,0x0d,0xe6,0x91,0x08,0x10,0x04,0x0d,0xe6, | ||
| 1724 | 0x0d,0xdc,0x0d,0xdc,0xd3,0x1c,0xd2,0x10,0xd1,0x08,0x10,0x04,0x0d,0x1b,0x0d,0x1c, | ||
| 1725 | 0x10,0x04,0x0d,0x1d,0x0d,0xe6,0x51,0x04,0x0d,0xe6,0x10,0x04,0x0d,0xdc,0x0d,0xe6, | ||
| 1726 | 0xd2,0x10,0xd1,0x08,0x10,0x04,0x0d,0xe6,0x0d,0xdc,0x10,0x04,0x0d,0xdc,0x0d,0xe6, | ||
| 1727 | 0x51,0x04,0x0d,0xe6,0x10,0x04,0x0d,0xe6,0x10,0xe6,0xe1,0x3a,0x01,0xd0,0x77,0xcf, | ||
| 1728 | 0x86,0xd5,0x20,0x94,0x1c,0x93,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0b,0x00,0x01, | ||
| 1729 | 0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x07,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01, | ||
| 1730 | 0x00,0xd4,0x1b,0x53,0x04,0x01,0x00,0x92,0x13,0x91,0x0f,0x10,0x04,0x01,0x00,0x01, | ||
| 1731 | 0xff,0xe0,0xa4,0xa8,0xe0,0xa4,0xbc,0x00,0x01,0x00,0x01,0x00,0xd3,0x26,0xd2,0x13, | ||
| 1732 | 0x91,0x0f,0x10,0x04,0x01,0x00,0x01,0xff,0xe0,0xa4,0xb0,0xe0,0xa4,0xbc,0x00,0x01, | ||
| 1733 | 0x00,0x91,0x0f,0x10,0x0b,0x01,0xff,0xe0,0xa4,0xb3,0xe0,0xa4,0xbc,0x00,0x01,0x00, | ||
| 1734 | 0x01,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x0c,0x00,0x91,0x08,0x10,0x04,0x01,0x07, | ||
| 1735 | 0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0x8c,0xd4,0x18,0x53,0x04,0x01,0x00,0x52,0x04, | ||
| 1736 | 0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x01,0x09,0x10,0x04,0x0b,0x00,0x0c,0x00, | ||
| 1737 | 0xd3,0x1c,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x01,0xe6,0x10,0x04,0x01,0xdc, | ||
| 1738 | 0x01,0xe6,0x91,0x08,0x10,0x04,0x01,0xe6,0x0b,0x00,0x0c,0x00,0xd2,0x2c,0xd1,0x16, | ||
| 1739 | 0x10,0x0b,0x01,0xff,0xe0,0xa4,0x95,0xe0,0xa4,0xbc,0x00,0x01,0xff,0xe0,0xa4,0x96, | ||
| 1740 | 0xe0,0xa4,0xbc,0x00,0x10,0x0b,0x01,0xff,0xe0,0xa4,0x97,0xe0,0xa4,0xbc,0x00,0x01, | ||
| 1741 | 0xff,0xe0,0xa4,0x9c,0xe0,0xa4,0xbc,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xe0,0xa4, | ||
| 1742 | 0xa1,0xe0,0xa4,0xbc,0x00,0x01,0xff,0xe0,0xa4,0xa2,0xe0,0xa4,0xbc,0x00,0x10,0x0b, | ||
| 1743 | 0x01,0xff,0xe0,0xa4,0xab,0xe0,0xa4,0xbc,0x00,0x01,0xff,0xe0,0xa4,0xaf,0xe0,0xa4, | ||
| 1744 | 0xbc,0x00,0x54,0x04,0x01,0x00,0xd3,0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x01,0x00, | ||
| 1745 | 0x0a,0x00,0x10,0x04,0x0a,0x00,0x0c,0x00,0x0c,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04, | ||
| 1746 | 0x10,0x00,0x0b,0x00,0x10,0x04,0x0b,0x00,0x09,0x00,0x91,0x08,0x10,0x04,0x09,0x00, | ||
| 1747 | 0x08,0x00,0x09,0x00,0xd0,0x86,0xcf,0x86,0xd5,0x44,0xd4,0x2c,0xd3,0x18,0xd2,0x0c, | ||
| 1748 | 0x91,0x08,0x10,0x04,0x10,0x00,0x01,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00, | ||
| 1749 | 0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00, | ||
| 1750 | 0x10,0x04,0x00,0x00,0x01,0x00,0x93,0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x01,0x00, | ||
| 1751 | 0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04, | ||
| 1752 | 0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00, | ||
| 1753 | 0xd3,0x18,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x01,0x00, | ||
| 1754 | 0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00, | ||
| 1755 | 0x91,0x08,0x10,0x04,0x01,0x07,0x07,0x00,0x01,0x00,0xcf,0x86,0xd5,0x7b,0xd4,0x42, | ||
| 1756 | 0xd3,0x14,0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04, | ||
| 1757 | 0x00,0x00,0x01,0x00,0xd2,0x17,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04, | ||
| 1758 | 0x00,0x00,0x01,0xff,0xe0,0xa7,0x87,0xe0,0xa6,0xbe,0x00,0xd1,0x0f,0x10,0x0b,0x01, | ||
| 1759 | 0xff,0xe0,0xa7,0x87,0xe0,0xa7,0x97,0x00,0x01,0x09,0x10,0x04,0x08,0x00,0x00,0x00, | ||
| 1760 | 0xd3,0x10,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 1761 | 0x52,0x04,0x00,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xe0,0xa6,0xa1,0xe0,0xa6,0xbc, | ||
| 1762 | 0x00,0x01,0xff,0xe0,0xa6,0xa2,0xe0,0xa6,0xbc,0x00,0x10,0x04,0x00,0x00,0x01,0xff, | ||
| 1763 | 0xe0,0xa6,0xaf,0xe0,0xa6,0xbc,0x00,0xd4,0x10,0x93,0x0c,0x52,0x04,0x01,0x00,0x11, | ||
| 1764 | 0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01, | ||
| 1765 | 0x00,0x10,0x04,0x01,0x00,0x0b,0x00,0x51,0x04,0x13,0x00,0x10,0x04,0x14,0xe6,0x00, | ||
| 1766 | 0x00,0xe2,0x48,0x02,0xe1,0x4f,0x01,0xd0,0xa4,0xcf,0x86,0xd5,0x4c,0xd4,0x34,0xd3, | ||
| 1767 | 0x1c,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x07,0x00,0x10,0x04,0x01,0x00,0x07, | ||
| 1768 | 0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01, | ||
| 1769 | 0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01, | ||
| 1770 | 0x00,0x93,0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x00, | ||
| 1771 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01,0x00,0x92,0x0c,0x91, | ||
| 1772 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd3,0x2e,0xd2,0x17,0xd1, | ||
| 1773 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xe0,0xa8,0xb2, | ||
| 1774 | 0xe0,0xa8,0xbc,0x00,0xd1,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x10,0x0b,0x01,0xff, | ||
| 1775 | 0xe0,0xa8,0xb8,0xe0,0xa8,0xbc,0x00,0x00,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x00, | ||
| 1776 | 0x00,0x91,0x08,0x10,0x04,0x01,0x07,0x00,0x00,0x01,0x00,0xcf,0x86,0xd5,0x80,0xd4, | ||
| 1777 | 0x34,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x51, | ||
| 1778 | 0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01, | ||
| 1779 | 0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x01, | ||
| 1780 | 0x09,0x00,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0a,0x00,0x00, | ||
| 1781 | 0x00,0x00,0x00,0xd2,0x25,0xd1,0x0f,0x10,0x04,0x00,0x00,0x01,0xff,0xe0,0xa8,0x96, | ||
| 1782 | 0xe0,0xa8,0xbc,0x00,0x10,0x0b,0x01,0xff,0xe0,0xa8,0x97,0xe0,0xa8,0xbc,0x00,0x01, | ||
| 1783 | 0xff,0xe0,0xa8,0x9c,0xe0,0xa8,0xbc,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00, | ||
| 1784 | 0x10,0x0b,0x01,0xff,0xe0,0xa8,0xab,0xe0,0xa8,0xbc,0x00,0x00,0x00,0xd4,0x10,0x93, | ||
| 1785 | 0x0c,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x93,0x14,0x52, | ||
| 1786 | 0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x0a,0x00,0x10,0x04,0x14,0x00,0x00, | ||
| 1787 | 0x00,0x00,0x00,0xd0,0x82,0xcf,0x86,0xd5,0x40,0xd4,0x2c,0xd3,0x18,0xd2,0x0c,0x91, | ||
| 1788 | 0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01, | ||
| 1789 | 0x00,0x01,0x00,0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x07,0x00,0x01,0x00,0x10, | ||
| 1790 | 0x04,0x00,0x00,0x01,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x00, | ||
| 1791 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01,0x00,0x92,0x0c,0x91, | ||
| 1792 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd3,0x18,0xd2,0x0c,0x91, | ||
| 1793 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01, | ||
| 1794 | 0x00,0x01,0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x01, | ||
| 1795 | 0x07,0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0x3c,0xd4,0x28,0xd3,0x10,0x52,0x04,0x01, | ||
| 1796 | 0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01, | ||
| 1797 | 0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x01,0x09,0x00, | ||
| 1798 | 0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1799 | 0x00,0x00,0x00,0xd4,0x18,0x93,0x14,0xd2,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x07, | ||
| 1800 | 0x00,0x07,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd3,0x10,0x92,0x0c,0x91, | ||
| 1801 | 0x08,0x10,0x04,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x92,0x0c,0x91,0x08,0x10, | ||
| 1802 | 0x04,0x00,0x00,0x11,0x00,0x13,0x00,0x13,0x00,0xe1,0x24,0x01,0xd0,0x86,0xcf,0x86, | ||
| 1803 | 0xd5,0x44,0xd4,0x2c,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 1804 | 0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00, | ||
| 1805 | 0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x93,0x14, | ||
| 1806 | 0x92,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 1807 | 0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 1808 | 0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04, | ||
| 1809 | 0x01,0x00,0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x07,0x00,0x01,0x00, | ||
| 1810 | 0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x01,0x07,0x01,0x00, | ||
| 1811 | 0x01,0x00,0xcf,0x86,0xd5,0x73,0xd4,0x45,0xd3,0x14,0x52,0x04,0x01,0x00,0xd1,0x08, | ||
| 1812 | 0x10,0x04,0x0a,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0xd2,0x1e,0xd1,0x0f, | ||
| 1813 | 0x10,0x0b,0x01,0xff,0xe0,0xad,0x87,0xe0,0xad,0x96,0x00,0x00,0x00,0x10,0x04,0x00, | ||
| 1814 | 0x00,0x01,0xff,0xe0,0xad,0x87,0xe0,0xac,0xbe,0x00,0x91,0x0f,0x10,0x0b,0x01,0xff, | ||
| 1815 | 0xe0,0xad,0x87,0xe0,0xad,0x97,0x00,0x01,0x09,0x00,0x00,0xd3,0x0c,0x52,0x04,0x00, | ||
| 1816 | 0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x52,0x04,0x00,0x00,0xd1,0x16,0x10,0x0b,0x01, | ||
| 1817 | 0xff,0xe0,0xac,0xa1,0xe0,0xac,0xbc,0x00,0x01,0xff,0xe0,0xac,0xa2,0xe0,0xac,0xbc, | ||
| 1818 | 0x00,0x10,0x04,0x00,0x00,0x01,0x00,0xd4,0x14,0x93,0x10,0xd2,0x08,0x11,0x04,0x01, | ||
| 1819 | 0x00,0x0a,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x93,0x10,0x92,0x0c,0x91, | ||
| 1820 | 0x08,0x10,0x04,0x01,0x00,0x07,0x00,0x0c,0x00,0x0c,0x00,0x00,0x00,0xd0,0xb1,0xcf, | ||
| 1821 | 0x86,0xd5,0x63,0xd4,0x28,0xd3,0x14,0xd2,0x08,0x11,0x04,0x00,0x00,0x01,0x00,0x91, | ||
| 1822 | 0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10, | ||
| 1823 | 0x04,0x01,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0xd3,0x1f,0xd2,0x0c,0x91, | ||
| 1824 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x91,0x0f,0x10,0x0b,0x01,0xff,0xe0, | ||
| 1825 | 0xae,0x92,0xe0,0xaf,0x97,0x00,0x01,0x00,0x00,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04, | ||
| 1826 | 0x00,0x00,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x01,0x00, | ||
| 1827 | 0x00,0x00,0x01,0x00,0xd4,0x2c,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x00,0x00,0x10,0x04, | ||
| 1828 | 0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0xd2,0x0c, | ||
| 1829 | 0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00, | ||
| 1830 | 0xd3,0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x08,0x00,0x01,0x00, | ||
| 1831 | 0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0xcf,0x86, | ||
| 1832 | 0xd5,0x61,0xd4,0x45,0xd3,0x14,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00, | ||
| 1833 | 0x00,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0xd2,0x1e,0xd1,0x08,0x10,0x04,0x01,0x00, | ||
| 1834 | 0x00,0x00,0x10,0x0b,0x01,0xff,0xe0,0xaf,0x86,0xe0,0xae,0xbe,0x00,0x01,0xff,0xe0, | ||
| 1835 | 0xaf,0x87,0xe0,0xae,0xbe,0x00,0x91,0x0f,0x10,0x0b,0x01,0xff,0xe0,0xaf,0x86,0xe0, | ||
| 1836 | 0xaf,0x97,0x00,0x01,0x09,0x00,0x00,0x93,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0a, | ||
| 1837 | 0x00,0x00,0x00,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0x00, | ||
| 1838 | 0x00,0xd4,0x14,0x93,0x10,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x08, | ||
| 1839 | 0x00,0x01,0x00,0x01,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 1840 | 0x00,0x07,0x00,0x07,0x00,0x92,0x0c,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00,0x00, | ||
| 1841 | 0x00,0x00,0x00,0xe3,0x1c,0x04,0xe2,0x1a,0x02,0xd1,0xf3,0xd0,0x76,0xcf,0x86,0xd5, | ||
| 1842 | 0x3c,0xd4,0x28,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x10,0x00,0x01,0x00,0x01, | ||
| 1843 | 0x00,0x91,0x08,0x10,0x04,0x14,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0x91, | ||
| 1844 | 0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10, | ||
| 1845 | 0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01, | ||
| 1846 | 0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd3, | ||
| 1847 | 0x10,0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04,0x10,0x00,0x01,0x00,0x01,0x00,0xd2, | ||
| 1848 | 0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x0a,0x00,0x01, | ||
| 1849 | 0x00,0xcf,0x86,0xd5,0x53,0xd4,0x2f,0xd3,0x10,0x52,0x04,0x01,0x00,0x91,0x08,0x10, | ||
| 1850 | 0x04,0x01,0x00,0x00,0x00,0x01,0x00,0xd2,0x13,0x91,0x0f,0x10,0x0b,0x01,0xff,0xe0, | ||
| 1851 | 0xb1,0x86,0xe0,0xb1,0x96,0x00,0x00,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00, | ||
| 1852 | 0x01,0x09,0x00,0x00,0xd3,0x14,0x52,0x04,0x00,0x00,0xd1,0x08,0x10,0x04,0x00,0x00, | ||
| 1853 | 0x01,0x54,0x10,0x04,0x01,0x5b,0x00,0x00,0x92,0x0c,0x51,0x04,0x0a,0x00,0x10,0x04, | ||
| 1854 | 0x11,0x00,0x00,0x00,0x00,0x00,0xd4,0x14,0x93,0x10,0xd2,0x08,0x11,0x04,0x01,0x00, | ||
| 1855 | 0x0a,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x93,0x10,0x52,0x04,0x00,0x00, | ||
| 1856 | 0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x15,0x00,0x0a,0x00,0xd0,0x76,0xcf,0x86, | ||
| 1857 | 0xd5,0x3c,0xd4,0x28,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x12,0x00,0x10,0x00, | ||
| 1858 | 0x01,0x00,0x91,0x08,0x10,0x04,0x14,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00, | ||
| 1859 | 0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 1860 | 0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x14,0x53,0x04, | ||
| 1861 | 0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00, | ||
| 1862 | 0xd3,0x10,0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00, | ||
| 1863 | 0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x07,0x07,0x07,0x00, | ||
| 1864 | 0x01,0x00,0xcf,0x86,0xd5,0x82,0xd4,0x5e,0xd3,0x2a,0xd2,0x13,0x91,0x0f,0x10,0x0b, | ||
| 1865 | 0x01,0xff,0xe0,0xb2,0xbf,0xe0,0xb3,0x95,0x00,0x01,0x00,0x01,0x00,0xd1,0x08,0x10, | ||
| 1866 | 0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xe0,0xb3,0x86,0xe0,0xb3, | ||
| 1867 | 0x95,0x00,0xd2,0x28,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe0,0xb3,0x86,0xe0,0xb3,0x96, | ||
| 1868 | 0x00,0x00,0x00,0x10,0x0b,0x01,0xff,0xe0,0xb3,0x86,0xe0,0xb3,0x82,0x00,0x01,0xff, | ||
| 1869 | 0xe0,0xb3,0x86,0xe0,0xb3,0x82,0xe0,0xb3,0x95,0x00,0x91,0x08,0x10,0x04,0x01,0x00, | ||
| 1870 | 0x01,0x09,0x00,0x00,0xd3,0x14,0x52,0x04,0x00,0x00,0xd1,0x08,0x10,0x04,0x00,0x00, | ||
| 1871 | 0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00, | ||
| 1872 | 0x10,0x04,0x01,0x00,0x00,0x00,0xd4,0x14,0x93,0x10,0xd2,0x08,0x11,0x04,0x01,0x00, | ||
| 1873 | 0x09,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x93,0x14,0x92,0x10,0xd1,0x08, | ||
| 1874 | 0x10,0x04,0x00,0x00,0x09,0x00,0x10,0x04,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 1875 | 0xe1,0x06,0x01,0xd0,0x6e,0xcf,0x86,0xd5,0x3c,0xd4,0x28,0xd3,0x18,0xd2,0x0c,0x91, | ||
| 1876 | 0x08,0x10,0x04,0x13,0x00,0x10,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x01, | ||
| 1877 | 0x00,0x01,0x00,0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01, | ||
| 1878 | 0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01, | ||
| 1879 | 0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x01, | ||
| 1880 | 0x00,0x0c,0x00,0x01,0x00,0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01, | ||
| 1881 | 0x00,0x10,0x04,0x0c,0x00,0x13,0x09,0x91,0x08,0x10,0x04,0x13,0x09,0x0a,0x00,0x01, | ||
| 1882 | 0x00,0xcf,0x86,0xd5,0x65,0xd4,0x45,0xd3,0x10,0x52,0x04,0x01,0x00,0x91,0x08,0x10, | ||
| 1883 | 0x04,0x0a,0x00,0x00,0x00,0x01,0x00,0xd2,0x1e,0xd1,0x08,0x10,0x04,0x01,0x00,0x00, | ||
| 1884 | 0x00,0x10,0x0b,0x01,0xff,0xe0,0xb5,0x86,0xe0,0xb4,0xbe,0x00,0x01,0xff,0xe0,0xb5, | ||
| 1885 | 0x87,0xe0,0xb4,0xbe,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe0,0xb5,0x86,0xe0,0xb5, | ||
| 1886 | 0x97,0x00,0x01,0x09,0x10,0x04,0x0c,0x00,0x12,0x00,0xd3,0x10,0x52,0x04,0x00,0x00, | ||
| 1887 | 0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x01,0x00,0x52,0x04,0x12,0x00,0x51,0x04, | ||
| 1888 | 0x12,0x00,0x10,0x04,0x12,0x00,0x11,0x00,0xd4,0x14,0x93,0x10,0xd2,0x08,0x11,0x04, | ||
| 1889 | 0x01,0x00,0x0a,0x00,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd3,0x0c,0x52,0x04, | ||
| 1890 | 0x0a,0x00,0x11,0x04,0x0a,0x00,0x12,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x12,0x00, | ||
| 1891 | 0x0a,0x00,0x0a,0x00,0x0a,0x00,0xd0,0x5a,0xcf,0x86,0xd5,0x34,0xd4,0x18,0x93,0x14, | ||
| 1892 | 0xd2,0x08,0x11,0x04,0x00,0x00,0x04,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x04,0x00, | ||
| 1893 | 0x04,0x00,0x04,0x00,0xd3,0x10,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04, | ||
| 1894 | 0x04,0x00,0x00,0x00,0x92,0x08,0x11,0x04,0x00,0x00,0x04,0x00,0x04,0x00,0x54,0x04, | ||
| 1895 | 0x04,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x04,0x00,0x10,0x04,0x00,0x00,0x04,0x00, | ||
| 1896 | 0x04,0x00,0x52,0x04,0x04,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x04,0x00,0x00,0x00, | ||
| 1897 | 0xcf,0x86,0xd5,0x77,0xd4,0x28,0xd3,0x10,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00, | ||
| 1898 | 0x10,0x04,0x04,0x00,0x00,0x00,0xd2,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x04,0x09, | ||
| 1899 | 0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x04,0x00,0xd3,0x14,0x52,0x04, | ||
| 1900 | 0x04,0x00,0xd1,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x10,0x04,0x04,0x00,0x00,0x00, | ||
| 1901 | 0xd2,0x13,0x51,0x04,0x04,0x00,0x10,0x0b,0x04,0xff,0xe0,0xb7,0x99,0xe0,0xb7,0x8a, | ||
| 1902 | 0x00,0x04,0x00,0xd1,0x19,0x10,0x0b,0x04,0xff,0xe0,0xb7,0x99,0xe0,0xb7,0x8f,0x00, | ||
| 1903 | 0x04,0xff,0xe0,0xb7,0x99,0xe0,0xb7,0x8f,0xe0,0xb7,0x8a,0x00,0x10,0x0b,0x04,0xff, | ||
| 1904 | 0xe0,0xb7,0x99,0xe0,0xb7,0x9f,0x00,0x04,0x00,0xd4,0x10,0x93,0x0c,0x52,0x04,0x00, | ||
| 1905 | 0x00,0x11,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x93,0x14,0xd2,0x08,0x11,0x04,0x00, | ||
| 1906 | 0x00,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe2, | ||
| 1907 | 0x31,0x01,0xd1,0x58,0xd0,0x3a,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x92,0x0c, | ||
| 1908 | 0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 1909 | 0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x67,0x10,0x04, | ||
| 1910 | 0x01,0x09,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x01,0x00,0xcf,0x86, | ||
| 1911 | 0x95,0x18,0xd4,0x0c,0x53,0x04,0x01,0x00,0x12,0x04,0x01,0x6b,0x01,0x00,0x53,0x04, | ||
| 1912 | 0x01,0x00,0x12,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0xd0,0x9e,0xcf,0x86,0xd5,0x54, | ||
| 1913 | 0xd4,0x3c,0xd3,0x20,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x10,0x04, | ||
| 1914 | 0x01,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x15,0x00, | ||
| 1915 | 0x01,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x15,0x00,0x10,0x04,0x01,0x00, | ||
| 1916 | 0x00,0x00,0x91,0x08,0x10,0x04,0x15,0x00,0x01,0x00,0x15,0x00,0xd3,0x08,0x12,0x04, | ||
| 1917 | 0x15,0x00,0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x15,0x00,0x01,0x00,0x01,0x00, | ||
| 1918 | 0x01,0x00,0xd4,0x30,0xd3,0x1c,0xd2,0x0c,0x91,0x08,0x10,0x04,0x15,0x00,0x01,0x00, | ||
| 1919 | 0x01,0x00,0xd1,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 1920 | 0xd2,0x08,0x11,0x04,0x15,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x15,0x00,0x01,0x00, | ||
| 1921 | 0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x76,0x10,0x04,0x15,0x09, | ||
| 1922 | 0x01,0x00,0x11,0x04,0x01,0x00,0x00,0x00,0xcf,0x86,0x95,0x34,0xd4,0x20,0xd3,0x14, | ||
| 1923 | 0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x01,0x00, | ||
| 1924 | 0x00,0x00,0x52,0x04,0x01,0x7a,0x11,0x04,0x01,0x00,0x00,0x00,0x53,0x04,0x01,0x00, | ||
| 1925 | 0xd2,0x08,0x11,0x04,0x01,0x00,0x00,0x00,0x11,0x04,0x01,0x00,0x0d,0x00,0x00,0x00, | ||
| 1926 | 0xe1,0x2b,0x01,0xd0,0x3e,0xcf,0x86,0xd5,0x14,0x54,0x04,0x02,0x00,0x53,0x04,0x02, | ||
| 1927 | 0x00,0x92,0x08,0x11,0x04,0x02,0xdc,0x02,0x00,0x02,0x00,0x54,0x04,0x02,0x00,0xd3, | ||
| 1928 | 0x14,0x52,0x04,0x02,0x00,0xd1,0x08,0x10,0x04,0x02,0x00,0x02,0xdc,0x10,0x04,0x02, | ||
| 1929 | 0x00,0x02,0xdc,0x92,0x0c,0x91,0x08,0x10,0x04,0x02,0x00,0x02,0xd8,0x02,0x00,0x02, | ||
| 1930 | 0x00,0xcf,0x86,0xd5,0x73,0xd4,0x36,0xd3,0x17,0x92,0x13,0x51,0x04,0x02,0x00,0x10, | ||
| 1931 | 0x04,0x02,0x00,0x02,0xff,0xe0,0xbd,0x82,0xe0,0xbe,0xb7,0x00,0x02,0x00,0xd2,0x0c, | ||
| 1932 | 0x91,0x08,0x10,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x91,0x0f,0x10,0x04,0x02,0x00, | ||
| 1933 | 0x02,0xff,0xe0,0xbd,0x8c,0xe0,0xbe,0xb7,0x00,0x02,0x00,0xd3,0x26,0xd2,0x13,0x51, | ||
| 1934 | 0x04,0x02,0x00,0x10,0x0b,0x02,0xff,0xe0,0xbd,0x91,0xe0,0xbe,0xb7,0x00,0x02,0x00, | ||
| 1935 | 0x51,0x04,0x02,0x00,0x10,0x04,0x02,0x00,0x02,0xff,0xe0,0xbd,0x96,0xe0,0xbe,0xb7, | ||
| 1936 | 0x00,0x52,0x04,0x02,0x00,0x91,0x0f,0x10,0x0b,0x02,0xff,0xe0,0xbd,0x9b,0xe0,0xbe, | ||
| 1937 | 0xb7,0x00,0x02,0x00,0x02,0x00,0xd4,0x27,0x53,0x04,0x02,0x00,0xd2,0x17,0xd1,0x0f, | ||
| 1938 | 0x10,0x04,0x02,0x00,0x02,0xff,0xe0,0xbd,0x80,0xe0,0xbe,0xb5,0x00,0x10,0x04,0x04, | ||
| 1939 | 0x00,0x0a,0x00,0x91,0x08,0x10,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0xd3,0x35,0xd2, | ||
| 1940 | 0x17,0xd1,0x08,0x10,0x04,0x00,0x00,0x02,0x81,0x10,0x04,0x02,0x82,0x02,0xff,0xe0, | ||
| 1941 | 0xbd,0xb1,0xe0,0xbd,0xb2,0x00,0xd1,0x0f,0x10,0x04,0x02,0x84,0x02,0xff,0xe0,0xbd, | ||
| 1942 | 0xb1,0xe0,0xbd,0xb4,0x00,0x10,0x0b,0x02,0xff,0xe0,0xbe,0xb2,0xe0,0xbe,0x80,0x00, | ||
| 1943 | 0x02,0x00,0xd2,0x13,0x91,0x0f,0x10,0x0b,0x02,0xff,0xe0,0xbe,0xb3,0xe0,0xbe,0x80, | ||
| 1944 | 0x00,0x02,0x00,0x02,0x82,0x11,0x04,0x02,0x82,0x02,0x00,0xd0,0xd3,0xcf,0x86,0xd5, | ||
| 1945 | 0x65,0xd4,0x27,0xd3,0x1f,0xd2,0x13,0x91,0x0f,0x10,0x04,0x02,0x82,0x02,0xff,0xe0, | ||
| 1946 | 0xbd,0xb1,0xe0,0xbe,0x80,0x00,0x02,0xe6,0x91,0x08,0x10,0x04,0x02,0x09,0x02,0x00, | ||
| 1947 | 0x02,0xe6,0x12,0x04,0x02,0x00,0x0c,0x00,0xd3,0x1f,0xd2,0x13,0x51,0x04,0x02,0x00, | ||
| 1948 | 0x10,0x04,0x02,0x00,0x02,0xff,0xe0,0xbe,0x92,0xe0,0xbe,0xb7,0x00,0x51,0x04,0x02, | ||
| 1949 | 0x00,0x10,0x04,0x04,0x00,0x02,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x02, | ||
| 1950 | 0x00,0x02,0x00,0x91,0x0f,0x10,0x04,0x02,0x00,0x02,0xff,0xe0,0xbe,0x9c,0xe0,0xbe, | ||
| 1951 | 0xb7,0x00,0x02,0x00,0xd4,0x3d,0xd3,0x26,0xd2,0x13,0x51,0x04,0x02,0x00,0x10,0x0b, | ||
| 1952 | 0x02,0xff,0xe0,0xbe,0xa1,0xe0,0xbe,0xb7,0x00,0x02,0x00,0x51,0x04,0x02,0x00,0x10, | ||
| 1953 | 0x04,0x02,0x00,0x02,0xff,0xe0,0xbe,0xa6,0xe0,0xbe,0xb7,0x00,0x52,0x04,0x02,0x00, | ||
| 1954 | 0x91,0x0f,0x10,0x0b,0x02,0xff,0xe0,0xbe,0xab,0xe0,0xbe,0xb7,0x00,0x02,0x00,0x04, | ||
| 1955 | 0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x04,0x00,0x02,0x00,0x02,0x00,0x02, | ||
| 1956 | 0x00,0xd2,0x13,0x91,0x0f,0x10,0x04,0x04,0x00,0x02,0xff,0xe0,0xbe,0x90,0xe0,0xbe, | ||
| 1957 | 0xb5,0x00,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0xcf,0x86, | ||
| 1958 | 0x95,0x4c,0xd4,0x24,0xd3,0x10,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04, | ||
| 1959 | 0x04,0xdc,0x04,0x00,0x52,0x04,0x04,0x00,0xd1,0x08,0x10,0x04,0x04,0x00,0x00,0x00, | ||
| 1960 | 0x10,0x04,0x0a,0x00,0x04,0x00,0xd3,0x14,0xd2,0x08,0x11,0x04,0x08,0x00,0x0a,0x00, | ||
| 1961 | 0x91,0x08,0x10,0x04,0x0a,0x00,0x0b,0x00,0x0b,0x00,0x92,0x10,0xd1,0x08,0x10,0x04, | ||
| 1962 | 0x0b,0x00,0x0c,0x00,0x10,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86, | ||
| 1963 | 0xe5,0xf7,0x04,0xe4,0x79,0x03,0xe3,0x7b,0x01,0xe2,0x04,0x01,0xd1,0x7f,0xd0,0x65, | ||
| 1964 | 0xcf,0x86,0x55,0x04,0x04,0x00,0xd4,0x33,0xd3,0x1f,0xd2,0x0c,0x51,0x04,0x04,0x00, | ||
| 1965 | 0x10,0x04,0x0a,0x00,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x0b,0x04,0xff,0xe1,0x80, | ||
| 1966 | 0xa5,0xe1,0x80,0xae,0x00,0x04,0x00,0x92,0x10,0xd1,0x08,0x10,0x04,0x0a,0x00,0x04, | ||
| 1967 | 0x00,0x10,0x04,0x04,0x00,0x0a,0x00,0x04,0x00,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x04, | ||
| 1968 | 0x00,0x10,0x04,0x04,0x00,0x0a,0x00,0x51,0x04,0x0a,0x00,0x10,0x04,0x04,0x00,0x04, | ||
| 1969 | 0x07,0x92,0x10,0xd1,0x08,0x10,0x04,0x04,0x00,0x04,0x09,0x10,0x04,0x0a,0x09,0x0a, | ||
| 1970 | 0x00,0x0a,0x00,0xcf,0x86,0x95,0x14,0x54,0x04,0x04,0x00,0x53,0x04,0x04,0x00,0x92, | ||
| 1971 | 0x08,0x11,0x04,0x04,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0xd0,0x2e,0xcf,0x86,0x95, | ||
| 1972 | 0x28,0xd4,0x14,0x53,0x04,0x0a,0x00,0x52,0x04,0x0a,0x00,0x91,0x08,0x10,0x04,0x0a, | ||
| 1973 | 0x00,0x0a,0xdc,0x0a,0x00,0x53,0x04,0x0a,0x00,0xd2,0x08,0x11,0x04,0x0a,0x00,0x0b, | ||
| 1974 | 0x00,0x11,0x04,0x0b,0x00,0x0a,0x00,0x01,0x00,0xcf,0x86,0xd5,0x24,0x94,0x20,0xd3, | ||
| 1975 | 0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0x52, | ||
| 1976 | 0x04,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x01,0x00,0x54, | ||
| 1977 | 0x04,0x01,0x00,0xd3,0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 1978 | 0x00,0x06,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x06,0x00,0x08,0x00,0x10,0x04,0x08, | ||
| 1979 | 0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x08,0x00,0x0d,0x00,0x0d,0x00,0xd1,0x3e,0xd0, | ||
| 1980 | 0x06,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x1d,0x54,0x04,0x01,0x00,0x53,0x04,0x01, | ||
| 1981 | 0x00,0xd2,0x08,0x11,0x04,0x01,0x00,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b, | ||
| 1982 | 0x00,0x01,0xff,0x00,0x94,0x15,0x93,0x11,0x92,0x0d,0x91,0x09,0x10,0x05,0x01,0xff, | ||
| 1983 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd0,0x1e,0xcf,0x86,0x55, | ||
| 1984 | 0x04,0x01,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 1985 | 0x00,0x0b,0x00,0x0b,0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0x54, | ||
| 1986 | 0x04,0x01,0x00,0x53,0x04,0x01,0x00,0x92,0x08,0x11,0x04,0x01,0x00,0x0b,0x00,0x0b, | ||
| 1987 | 0x00,0xe2,0x21,0x01,0xd1,0x6c,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x94,0x14,0x93,0x10, | ||
| 1988 | 0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0x04,0x00, | ||
| 1989 | 0x04,0x00,0x04,0x00,0xcf,0x86,0x95,0x48,0xd4,0x24,0xd3,0x10,0x52,0x04,0x04,0x00, | ||
| 1990 | 0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04, | ||
| 1991 | 0x04,0x00,0x00,0x00,0x04,0x00,0x11,0x04,0x04,0x00,0x00,0x00,0xd3,0x10,0x52,0x04, | ||
| 1992 | 0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x00,0x00,0xd2,0x0c,0x91,0x08, | ||
| 1993 | 0x10,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x11,0x04,0x04,0x00,0x00,0x00,0x04,0x00, | ||
| 1994 | 0xd0,0x62,0xcf,0x86,0xd5,0x28,0x94,0x24,0xd3,0x10,0x52,0x04,0x04,0x00,0x51,0x04, | ||
| 1995 | 0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x04,0x00, | ||
| 1996 | 0x00,0x00,0x04,0x00,0x11,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0xd4,0x14,0x53,0x04, | ||
| 1997 | 0x04,0x00,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00, | ||
| 1998 | 0xd3,0x14,0xd2,0x0c,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x11,0x04, | ||
| 1999 | 0x04,0x00,0x00,0x00,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00, | ||
| 2000 | 0x00,0x00,0xcf,0x86,0xd5,0x38,0xd4,0x24,0xd3,0x14,0xd2,0x0c,0x91,0x08,0x10,0x04, | ||
| 2001 | 0x04,0x00,0x00,0x00,0x04,0x00,0x11,0x04,0x04,0x00,0x00,0x00,0x52,0x04,0x04,0x00, | ||
| 2002 | 0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0x93,0x10,0x52,0x04,0x04,0x00, | ||
| 2003 | 0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x94,0x14,0x53,0x04, | ||
| 2004 | 0x04,0x00,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00, | ||
| 2005 | 0x04,0x00,0xd1,0x9c,0xd0,0x3e,0xcf,0x86,0x95,0x38,0xd4,0x14,0x53,0x04,0x04,0x00, | ||
| 2006 | 0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0xd3,0x14, | ||
| 2007 | 0xd2,0x0c,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x11,0x04,0x04,0x00, | ||
| 2008 | 0x00,0x00,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00, | ||
| 2009 | 0x04,0x00,0xcf,0x86,0xd5,0x34,0xd4,0x14,0x93,0x10,0x52,0x04,0x04,0x00,0x51,0x04, | ||
| 2010 | 0x04,0x00,0x10,0x04,0x04,0x00,0x08,0x00,0x04,0x00,0x53,0x04,0x04,0x00,0xd2,0x0c, | ||
| 2011 | 0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x00,0x00, | ||
| 2012 | 0x0c,0xe6,0x10,0x04,0x0c,0xe6,0x08,0xe6,0xd4,0x14,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 2013 | 0x10,0x04,0x08,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x53,0x04,0x04,0x00, | ||
| 2014 | 0x52,0x04,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xd0,0x1a, | ||
| 2015 | 0xcf,0x86,0x95,0x14,0x54,0x04,0x08,0x00,0x53,0x04,0x08,0x00,0x92,0x08,0x11,0x04, | ||
| 2016 | 0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xcf,0x86,0x55,0x04,0x04,0x00,0x54,0x04, | ||
| 2017 | 0x04,0x00,0xd3,0x10,0x52,0x04,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x11,0x00, | ||
| 2018 | 0x00,0x00,0x52,0x04,0x11,0x00,0x11,0x04,0x11,0x00,0x00,0x00,0xd3,0x30,0xd2,0x2a, | ||
| 2019 | 0xd1,0x24,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 2020 | 0x10,0x04,0x0b,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00, | ||
| 2021 | 0xcf,0x06,0x04,0x00,0xcf,0x06,0x04,0x00,0xcf,0x06,0x04,0x00,0xd2,0x6c,0xd1,0x24, | ||
| 2022 | 0xd0,0x06,0xcf,0x06,0x04,0x00,0xcf,0x86,0x55,0x04,0x04,0x00,0x54,0x04,0x04,0x00, | ||
| 2023 | 0x93,0x10,0x52,0x04,0x04,0x00,0x51,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x0b,0x00, | ||
| 2024 | 0x0b,0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04,0x04,0x00,0x53,0x04,0x04,0x00, | ||
| 2025 | 0x52,0x04,0x04,0x00,0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x00, | ||
| 2026 | 0xcf,0x86,0x55,0x04,0x04,0x00,0x54,0x04,0x04,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08, | ||
| 2027 | 0x10,0x04,0x04,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 2028 | 0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd1,0x80,0xd0,0x46,0xcf,0x86,0xd5,0x28, | ||
| 2029 | 0xd4,0x14,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0x91,0x08,0x10,0x04,0x06,0x00, | ||
| 2030 | 0x00,0x00,0x06,0x00,0x93,0x10,0x52,0x04,0x06,0x00,0x91,0x08,0x10,0x04,0x06,0x09, | ||
| 2031 | 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x04,0x06,0x00,0x93,0x14,0x52,0x04,0x06,0x00, | ||
| 2032 | 0xd1,0x08,0x10,0x04,0x06,0x09,0x06,0x00,0x10,0x04,0x06,0x00,0x00,0x00,0x00,0x00, | ||
| 2033 | 0xcf,0x86,0xd5,0x10,0x54,0x04,0x06,0x00,0x93,0x08,0x12,0x04,0x06,0x00,0x00,0x00, | ||
| 2034 | 0x00,0x00,0xd4,0x14,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0x91,0x08,0x10,0x04, | ||
| 2035 | 0x06,0x00,0x00,0x00,0x06,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x06,0x00, | ||
| 2036 | 0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xd0,0x1b,0xcf,0x86,0x55,0x04,0x04,0x00, | ||
| 2037 | 0x54,0x04,0x04,0x00,0x93,0x0d,0x52,0x04,0x04,0x00,0x11,0x05,0x04,0xff,0x00,0x04, | ||
| 2038 | 0x00,0x04,0x00,0xcf,0x86,0xd5,0x24,0x54,0x04,0x04,0x00,0xd3,0x10,0x92,0x0c,0x51, | ||
| 2039 | 0x04,0x04,0x00,0x10,0x04,0x04,0x09,0x04,0x00,0x04,0x00,0x52,0x04,0x04,0x00,0x91, | ||
| 2040 | 0x08,0x10,0x04,0x04,0x00,0x07,0xe6,0x00,0x00,0xd4,0x10,0x53,0x04,0x04,0x00,0x92, | ||
| 2041 | 0x08,0x11,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x07,0x00,0x92,0x08,0x11, | ||
| 2042 | 0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xe4,0xb7,0x03,0xe3,0x58,0x01,0xd2,0x8f,0xd1, | ||
| 2043 | 0x53,0xd0,0x35,0xcf,0x86,0x95,0x2f,0xd4,0x1f,0x53,0x04,0x04,0x00,0xd2,0x0d,0x51, | ||
| 2044 | 0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x04,0xff,0x00,0x51,0x05,0x04,0xff,0x00,0x10, | ||
| 2045 | 0x05,0x04,0xff,0x00,0x00,0x00,0x53,0x04,0x04,0x00,0x92,0x08,0x11,0x04,0x04,0x00, | ||
| 2046 | 0x00,0x00,0x00,0x00,0x04,0x00,0xcf,0x86,0x55,0x04,0x04,0x00,0x54,0x04,0x04,0x00, | ||
| 2047 | 0x53,0x04,0x04,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00, | ||
| 2048 | 0x00,0x00,0xd0,0x22,0xcf,0x86,0x55,0x04,0x04,0x00,0x94,0x18,0x53,0x04,0x04,0x00, | ||
| 2049 | 0x92,0x10,0xd1,0x08,0x10,0x04,0x04,0x00,0x04,0xe4,0x10,0x04,0x0a,0x00,0x00,0x00, | ||
| 2050 | 0x00,0x00,0x0b,0x00,0xcf,0x86,0x55,0x04,0x0b,0x00,0x54,0x04,0x0b,0x00,0x93,0x0c, | ||
| 2051 | 0x52,0x04,0x0b,0x00,0x11,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0xd1,0x80,0xd0,0x42, | ||
| 2052 | 0xcf,0x86,0xd5,0x1c,0x54,0x04,0x07,0x00,0x53,0x04,0x07,0x00,0x52,0x04,0x07,0x00, | ||
| 2053 | 0xd1,0x08,0x10,0x04,0x07,0x00,0x10,0x00,0x10,0x04,0x10,0x00,0x00,0x00,0xd4,0x0c, | ||
| 2054 | 0x53,0x04,0x07,0x00,0x12,0x04,0x07,0x00,0x00,0x00,0x53,0x04,0x07,0x00,0x92,0x10, | ||
| 2055 | 0xd1,0x08,0x10,0x04,0x07,0x00,0x07,0xde,0x10,0x04,0x07,0xe6,0x07,0xdc,0x00,0x00, | ||
| 2056 | 0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x07,0x00, | ||
| 2057 | 0x00,0x00,0x00,0x00,0x07,0x00,0x07,0x00,0x07,0x00,0xd4,0x10,0x53,0x04,0x07,0x00, | ||
| 2058 | 0x52,0x04,0x07,0x00,0x11,0x04,0x07,0x00,0x00,0x00,0x93,0x10,0x52,0x04,0x07,0x00, | ||
| 2059 | 0x91,0x08,0x10,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x1a,0xcf,0x86, | ||
| 2060 | 0x55,0x04,0x08,0x00,0x94,0x10,0x53,0x04,0x08,0x00,0x92,0x08,0x11,0x04,0x08,0x00, | ||
| 2061 | 0x0b,0x00,0x00,0x00,0x08,0x00,0xcf,0x86,0x95,0x28,0xd4,0x10,0x53,0x04,0x08,0x00, | ||
| 2062 | 0x92,0x08,0x11,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x08,0x00,0xd2,0x0c, | ||
| 2063 | 0x51,0x04,0x08,0x00,0x10,0x04,0x0b,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x08,0x00, | ||
| 2064 | 0x07,0x00,0xd2,0xe4,0xd1,0x80,0xd0,0x2e,0xcf,0x86,0x95,0x28,0x54,0x04,0x08,0x00, | ||
| 2065 | 0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x08,0xe6, | ||
| 2066 | 0xd2,0x0c,0x91,0x08,0x10,0x04,0x08,0xdc,0x08,0x00,0x08,0x00,0x11,0x04,0x00,0x00, | ||
| 2067 | 0x08,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x18,0x54,0x04,0x0b,0x00,0x53,0x04,0x0b,0x00, | ||
| 2068 | 0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00,0x00,0x00,0xd4,0x14, | ||
| 2069 | 0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0b,0x09,0x0b,0x00,0x0b,0x00,0x0b,0x00, | ||
| 2070 | 0x0b,0x00,0xd3,0x10,0x52,0x04,0x0b,0x00,0x91,0x08,0x10,0x04,0x0b,0x00,0x0b,0xe6, | ||
| 2071 | 0x0b,0xe6,0x52,0x04,0x0b,0xe6,0xd1,0x08,0x10,0x04,0x0b,0xe6,0x00,0x00,0x10,0x04, | ||
| 2072 | 0x00,0x00,0x0b,0xdc,0xd0,0x5e,0xcf,0x86,0xd5,0x20,0xd4,0x10,0x53,0x04,0x0b,0x00, | ||
| 2073 | 0x92,0x08,0x11,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x0b,0x00,0x92,0x08, | ||
| 2074 | 0x11,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0xd4,0x10,0x53,0x04,0x0b,0x00,0x52,0x04, | ||
| 2075 | 0x0b,0x00,0x11,0x04,0x0b,0x00,0x00,0x00,0xd3,0x10,0x52,0x04,0x10,0xe6,0x91,0x08, | ||
| 2076 | 0x10,0x04,0x10,0xe6,0x10,0xdc,0x10,0xdc,0xd2,0x0c,0x51,0x04,0x10,0xdc,0x10,0x04, | ||
| 2077 | 0x10,0xdc,0x10,0xe6,0xd1,0x08,0x10,0x04,0x10,0xe6,0x10,0xdc,0x10,0x04,0x10,0x00, | ||
| 2078 | 0x00,0x00,0xcf,0x06,0x00,0x00,0xe1,0x1e,0x01,0xd0,0xaa,0xcf,0x86,0xd5,0x6e,0xd4, | ||
| 2079 | 0x53,0xd3,0x17,0x52,0x04,0x09,0x00,0x51,0x04,0x09,0x00,0x10,0x0b,0x09,0xff,0xe1, | ||
| 2080 | 0xac,0x85,0xe1,0xac,0xb5,0x00,0x09,0x00,0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x09,0xff, | ||
| 2081 | 0xe1,0xac,0x87,0xe1,0xac,0xb5,0x00,0x09,0x00,0x10,0x0b,0x09,0xff,0xe1,0xac,0x89, | ||
| 2082 | 0xe1,0xac,0xb5,0x00,0x09,0x00,0xd1,0x0f,0x10,0x0b,0x09,0xff,0xe1,0xac,0x8b,0xe1, | ||
| 2083 | 0xac,0xb5,0x00,0x09,0x00,0x10,0x0b,0x09,0xff,0xe1,0xac,0x8d,0xe1,0xac,0xb5,0x00, | ||
| 2084 | 0x09,0x00,0x93,0x17,0x92,0x13,0x51,0x04,0x09,0x00,0x10,0x0b,0x09,0xff,0xe1,0xac, | ||
| 2085 | 0x91,0xe1,0xac,0xb5,0x00,0x09,0x00,0x09,0x00,0x09,0x00,0x54,0x04,0x09,0x00,0xd3, | ||
| 2086 | 0x10,0x52,0x04,0x09,0x00,0x91,0x08,0x10,0x04,0x09,0x07,0x09,0x00,0x09,0x00,0xd2, | ||
| 2087 | 0x13,0x51,0x04,0x09,0x00,0x10,0x04,0x09,0x00,0x09,0xff,0xe1,0xac,0xba,0xe1,0xac, | ||
| 2088 | 0xb5,0x00,0x91,0x0f,0x10,0x04,0x09,0x00,0x09,0xff,0xe1,0xac,0xbc,0xe1,0xac,0xb5, | ||
| 2089 | 0x00,0x09,0x00,0xcf,0x86,0xd5,0x3d,0x94,0x39,0xd3,0x31,0xd2,0x25,0xd1,0x16,0x10, | ||
| 2090 | 0x0b,0x09,0xff,0xe1,0xac,0xbe,0xe1,0xac,0xb5,0x00,0x09,0xff,0xe1,0xac,0xbf,0xe1, | ||
| 2091 | 0xac,0xb5,0x00,0x10,0x04,0x09,0x00,0x09,0xff,0xe1,0xad,0x82,0xe1,0xac,0xb5,0x00, | ||
| 2092 | 0x91,0x08,0x10,0x04,0x09,0x09,0x09,0x00,0x09,0x00,0x12,0x04,0x09,0x00,0x00,0x00, | ||
| 2093 | 0x09,0x00,0xd4,0x1c,0x53,0x04,0x09,0x00,0xd2,0x0c,0x51,0x04,0x09,0x00,0x10,0x04, | ||
| 2094 | 0x09,0x00,0x09,0xe6,0x91,0x08,0x10,0x04,0x09,0xdc,0x09,0xe6,0x09,0xe6,0xd3,0x08, | ||
| 2095 | 0x12,0x04,0x09,0xe6,0x09,0x00,0x52,0x04,0x09,0x00,0x91,0x08,0x10,0x04,0x09,0x00, | ||
| 2096 | 0x00,0x00,0x00,0x00,0xd0,0x2e,0xcf,0x86,0x55,0x04,0x0a,0x00,0xd4,0x18,0x53,0x04, | ||
| 2097 | 0x0a,0x00,0xd2,0x0c,0x51,0x04,0x0a,0x00,0x10,0x04,0x0a,0x09,0x0d,0x09,0x11,0x04, | ||
| 2098 | 0x0d,0x00,0x0a,0x00,0x53,0x04,0x0a,0x00,0x92,0x08,0x11,0x04,0x0a,0x00,0x0d,0x00, | ||
| 2099 | 0x0d,0x00,0xcf,0x86,0x55,0x04,0x0c,0x00,0xd4,0x14,0x93,0x10,0x52,0x04,0x0c,0x00, | ||
| 2100 | 0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x07,0x0c,0x00,0x0c,0x00,0xd3,0x0c,0x92,0x08, | ||
| 2101 | 0x11,0x04,0x0c,0x00,0x0c,0x09,0x00,0x00,0x12,0x04,0x00,0x00,0x0c,0x00,0xe3,0xb2, | ||
| 2102 | 0x01,0xe2,0x09,0x01,0xd1,0x4c,0xd0,0x2a,0xcf,0x86,0x55,0x04,0x0a,0x00,0x54,0x04, | ||
| 2103 | 0x0a,0x00,0xd3,0x10,0x52,0x04,0x0a,0x00,0x51,0x04,0x0a,0x00,0x10,0x04,0x0a,0x00, | ||
| 2104 | 0x0a,0x07,0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0a,0x00,0x0a,0x00, | ||
| 2105 | 0xcf,0x86,0x95,0x1c,0x94,0x18,0x53,0x04,0x0a,0x00,0xd2,0x08,0x11,0x04,0x0a,0x00, | ||
| 2106 | 0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00, | ||
| 2107 | 0xd0,0x3a,0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x12,0x00,0x92,0x0c,0x91,0x08, | ||
| 2108 | 0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x54,0x04,0x14,0x00, | ||
| 2109 | 0x53,0x04,0x14,0x00,0xd2,0x0c,0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00, | ||
| 2110 | 0x91,0x08,0x10,0x04,0x00,0x00,0x14,0x00,0x14,0x00,0xcf,0x86,0xd5,0x2c,0xd4,0x08, | ||
| 2111 | 0x13,0x04,0x0d,0x00,0x00,0x00,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x0b,0xe6,0x10,0x04, | ||
| 2112 | 0x0b,0xe6,0x0b,0x00,0x91,0x08,0x10,0x04,0x0b,0x01,0x0b,0xdc,0x0b,0xdc,0x92,0x08, | ||
| 2113 | 0x11,0x04,0x0b,0xdc,0x0b,0xe6,0x0b,0xdc,0xd4,0x28,0xd3,0x10,0x92,0x0c,0x91,0x08, | ||
| 2114 | 0x10,0x04,0x0b,0xe6,0x0b,0x00,0x0b,0x01,0x0b,0x01,0xd2,0x0c,0x91,0x08,0x10,0x04, | ||
| 2115 | 0x0b,0x01,0x0b,0x00,0x0b,0x00,0x91,0x08,0x10,0x04,0x0b,0x00,0x0b,0xdc,0x0b,0x00, | ||
| 2116 | 0xd3,0x1c,0xd2,0x0c,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00,0x0d,0x00,0xd1,0x08, | ||
| 2117 | 0x10,0x04,0x0d,0xe6,0x0d,0x00,0x10,0x04,0x0d,0x00,0x13,0x00,0x92,0x0c,0x51,0x04, | ||
| 2118 | 0x10,0xe6,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0xd1,0x1c,0xd0,0x06,0xcf,0x06, | ||
| 2119 | 0x07,0x00,0xcf,0x86,0x55,0x04,0x07,0x00,0x94,0x0c,0x53,0x04,0x07,0x00,0x12,0x04, | ||
| 2120 | 0x07,0x00,0x08,0x00,0x08,0x00,0xd0,0x06,0xcf,0x06,0x08,0x00,0xcf,0x86,0xd5,0x40, | ||
| 2121 | 0xd4,0x2c,0xd3,0x10,0x92,0x0c,0x51,0x04,0x08,0xe6,0x10,0x04,0x08,0xdc,0x08,0xe6, | ||
| 2122 | 0x09,0xe6,0xd2,0x0c,0x51,0x04,0x09,0xe6,0x10,0x04,0x09,0xdc,0x0a,0xe6,0xd1,0x08, | ||
| 2123 | 0x10,0x04,0x0a,0xe6,0x0a,0xea,0x10,0x04,0x0a,0xd6,0x0a,0xdc,0x93,0x10,0x92,0x0c, | ||
| 2124 | 0x91,0x08,0x10,0x04,0x0a,0xca,0x0a,0xe6,0x0a,0xe6,0x0a,0xe6,0x0a,0xe6,0xd4,0x14, | ||
| 2125 | 0x93,0x10,0x52,0x04,0x0a,0xe6,0x51,0x04,0x0a,0xe6,0x10,0x04,0x0a,0xe6,0x10,0xe6, | ||
| 2126 | 0x10,0xe6,0xd3,0x10,0x52,0x04,0x10,0xe6,0x51,0x04,0x10,0xe6,0x10,0x04,0x13,0xe8, | ||
| 2127 | 0x13,0xe4,0xd2,0x10,0xd1,0x08,0x10,0x04,0x13,0xe4,0x13,0xdc,0x10,0x04,0x00,0x00, | ||
| 2128 | 0x12,0xe6,0xd1,0x08,0x10,0x04,0x0c,0xe9,0x0b,0xdc,0x10,0x04,0x09,0xe6,0x09,0xdc, | ||
| 2129 | 0xe2,0x80,0x08,0xe1,0x48,0x04,0xe0,0x1c,0x02,0xcf,0x86,0xe5,0x11,0x01,0xd4,0x84, | ||
| 2130 | 0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x41,0xcc,0xa5,0x00,0x01,0xff, | ||
| 2131 | 0x61,0xcc,0xa5,0x00,0x10,0x08,0x01,0xff,0x42,0xcc,0x87,0x00,0x01,0xff,0x62,0xcc, | ||
| 2132 | 0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x42,0xcc,0xa3,0x00,0x01,0xff,0x62,0xcc, | ||
| 2133 | 0xa3,0x00,0x10,0x08,0x01,0xff,0x42,0xcc,0xb1,0x00,0x01,0xff,0x62,0xcc,0xb1,0x00, | ||
| 2134 | 0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff,0x43,0xcc,0xa7,0xcc,0x81,0x00,0x01,0xff, | ||
| 2135 | 0x63,0xcc,0xa7,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x44,0xcc,0x87,0x00,0x01,0xff, | ||
| 2136 | 0x64,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x44,0xcc,0xa3,0x00,0x01,0xff, | ||
| 2137 | 0x64,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x44,0xcc,0xb1,0x00,0x01,0xff,0x64,0xcc, | ||
| 2138 | 0xb1,0x00,0xd3,0x48,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x44,0xcc,0xa7,0x00, | ||
| 2139 | 0x01,0xff,0x64,0xcc,0xa7,0x00,0x10,0x08,0x01,0xff,0x44,0xcc,0xad,0x00,0x01,0xff, | ||
| 2140 | 0x64,0xcc,0xad,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x45,0xcc,0x84,0xcc,0x80,0x00, | ||
| 2141 | 0x01,0xff,0x65,0xcc,0x84,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x45,0xcc,0x84,0xcc, | ||
| 2142 | 0x81,0x00,0x01,0xff,0x65,0xcc,0x84,0xcc,0x81,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2143 | 0x01,0xff,0x45,0xcc,0xad,0x00,0x01,0xff,0x65,0xcc,0xad,0x00,0x10,0x08,0x01,0xff, | ||
| 2144 | 0x45,0xcc,0xb0,0x00,0x01,0xff,0x65,0xcc,0xb0,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff, | ||
| 2145 | 0x45,0xcc,0xa7,0xcc,0x86,0x00,0x01,0xff,0x65,0xcc,0xa7,0xcc,0x86,0x00,0x10,0x08, | ||
| 2146 | 0x01,0xff,0x46,0xcc,0x87,0x00,0x01,0xff,0x66,0xcc,0x87,0x00,0xd4,0x84,0xd3,0x40, | ||
| 2147 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x47,0xcc,0x84,0x00,0x01,0xff,0x67,0xcc, | ||
| 2148 | 0x84,0x00,0x10,0x08,0x01,0xff,0x48,0xcc,0x87,0x00,0x01,0xff,0x68,0xcc,0x87,0x00, | ||
| 2149 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x48,0xcc,0xa3,0x00,0x01,0xff,0x68,0xcc,0xa3,0x00, | ||
| 2150 | 0x10,0x08,0x01,0xff,0x48,0xcc,0x88,0x00,0x01,0xff,0x68,0xcc,0x88,0x00,0xd2,0x20, | ||
| 2151 | 0xd1,0x10,0x10,0x08,0x01,0xff,0x48,0xcc,0xa7,0x00,0x01,0xff,0x68,0xcc,0xa7,0x00, | ||
| 2152 | 0x10,0x08,0x01,0xff,0x48,0xcc,0xae,0x00,0x01,0xff,0x68,0xcc,0xae,0x00,0xd1,0x10, | ||
| 2153 | 0x10,0x08,0x01,0xff,0x49,0xcc,0xb0,0x00,0x01,0xff,0x69,0xcc,0xb0,0x00,0x10,0x0a, | ||
| 2154 | 0x01,0xff,0x49,0xcc,0x88,0xcc,0x81,0x00,0x01,0xff,0x69,0xcc,0x88,0xcc,0x81,0x00, | ||
| 2155 | 0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x4b,0xcc,0x81,0x00,0x01,0xff, | ||
| 2156 | 0x6b,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x4b,0xcc,0xa3,0x00,0x01,0xff,0x6b,0xcc, | ||
| 2157 | 0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x4b,0xcc,0xb1,0x00,0x01,0xff,0x6b,0xcc, | ||
| 2158 | 0xb1,0x00,0x10,0x08,0x01,0xff,0x4c,0xcc,0xa3,0x00,0x01,0xff,0x6c,0xcc,0xa3,0x00, | ||
| 2159 | 0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4c,0xcc,0xa3,0xcc,0x84,0x00,0x01,0xff, | ||
| 2160 | 0x6c,0xcc,0xa3,0xcc,0x84,0x00,0x10,0x08,0x01,0xff,0x4c,0xcc,0xb1,0x00,0x01,0xff, | ||
| 2161 | 0x6c,0xcc,0xb1,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x4c,0xcc,0xad,0x00,0x01,0xff, | ||
| 2162 | 0x6c,0xcc,0xad,0x00,0x10,0x08,0x01,0xff,0x4d,0xcc,0x81,0x00,0x01,0xff,0x6d,0xcc, | ||
| 2163 | 0x81,0x00,0xcf,0x86,0xe5,0x15,0x01,0xd4,0x88,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10, | ||
| 2164 | 0x08,0x01,0xff,0x4d,0xcc,0x87,0x00,0x01,0xff,0x6d,0xcc,0x87,0x00,0x10,0x08,0x01, | ||
| 2165 | 0xff,0x4d,0xcc,0xa3,0x00,0x01,0xff,0x6d,0xcc,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 2166 | 0xff,0x4e,0xcc,0x87,0x00,0x01,0xff,0x6e,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x4e, | ||
| 2167 | 0xcc,0xa3,0x00,0x01,0xff,0x6e,0xcc,0xa3,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 2168 | 0xff,0x4e,0xcc,0xb1,0x00,0x01,0xff,0x6e,0xcc,0xb1,0x00,0x10,0x08,0x01,0xff,0x4e, | ||
| 2169 | 0xcc,0xad,0x00,0x01,0xff,0x6e,0xcc,0xad,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f, | ||
| 2170 | 0xcc,0x83,0xcc,0x81,0x00,0x01,0xff,0x6f,0xcc,0x83,0xcc,0x81,0x00,0x10,0x0a,0x01, | ||
| 2171 | 0xff,0x4f,0xcc,0x83,0xcc,0x88,0x00,0x01,0xff,0x6f,0xcc,0x83,0xcc,0x88,0x00,0xd3, | ||
| 2172 | 0x48,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x84,0xcc,0x80,0x00,0x01, | ||
| 2173 | 0xff,0x6f,0xcc,0x84,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x84,0xcc,0x81, | ||
| 2174 | 0x00,0x01,0xff,0x6f,0xcc,0x84,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x50, | ||
| 2175 | 0xcc,0x81,0x00,0x01,0xff,0x70,0xcc,0x81,0x00,0x10,0x08,0x01,0xff,0x50,0xcc,0x87, | ||
| 2176 | 0x00,0x01,0xff,0x70,0xcc,0x87,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x52, | ||
| 2177 | 0xcc,0x87,0x00,0x01,0xff,0x72,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x52,0xcc,0xa3, | ||
| 2178 | 0x00,0x01,0xff,0x72,0xcc,0xa3,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x52,0xcc,0xa3, | ||
| 2179 | 0xcc,0x84,0x00,0x01,0xff,0x72,0xcc,0xa3,0xcc,0x84,0x00,0x10,0x08,0x01,0xff,0x52, | ||
| 2180 | 0xcc,0xb1,0x00,0x01,0xff,0x72,0xcc,0xb1,0x00,0xd4,0x8c,0xd3,0x48,0xd2,0x20,0xd1, | ||
| 2181 | 0x10,0x10,0x08,0x01,0xff,0x53,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x87,0x00,0x10, | ||
| 2182 | 0x08,0x01,0xff,0x53,0xcc,0xa3,0x00,0x01,0xff,0x73,0xcc,0xa3,0x00,0xd1,0x14,0x10, | ||
| 2183 | 0x0a,0x01,0xff,0x53,0xcc,0x81,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x81,0xcc,0x87, | ||
| 2184 | 0x00,0x10,0x0a,0x01,0xff,0x53,0xcc,0x8c,0xcc,0x87,0x00,0x01,0xff,0x73,0xcc,0x8c, | ||
| 2185 | 0xcc,0x87,0x00,0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff,0x53,0xcc,0xa3,0xcc,0x87, | ||
| 2186 | 0x00,0x01,0xff,0x73,0xcc,0xa3,0xcc,0x87,0x00,0x10,0x08,0x01,0xff,0x54,0xcc,0x87, | ||
| 2187 | 0x00,0x01,0xff,0x74,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x54,0xcc,0xa3, | ||
| 2188 | 0x00,0x01,0xff,0x74,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x54,0xcc,0xb1,0x00,0x01, | ||
| 2189 | 0xff,0x74,0xcc,0xb1,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x54, | ||
| 2190 | 0xcc,0xad,0x00,0x01,0xff,0x74,0xcc,0xad,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0xa4, | ||
| 2191 | 0x00,0x01,0xff,0x75,0xcc,0xa4,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x55,0xcc,0xb0, | ||
| 2192 | 0x00,0x01,0xff,0x75,0xcc,0xb0,0x00,0x10,0x08,0x01,0xff,0x55,0xcc,0xad,0x00,0x01, | ||
| 2193 | 0xff,0x75,0xcc,0xad,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x55,0xcc,0x83, | ||
| 2194 | 0xcc,0x81,0x00,0x01,0xff,0x75,0xcc,0x83,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x55, | ||
| 2195 | 0xcc,0x84,0xcc,0x88,0x00,0x01,0xff,0x75,0xcc,0x84,0xcc,0x88,0x00,0xd1,0x10,0x10, | ||
| 2196 | 0x08,0x01,0xff,0x56,0xcc,0x83,0x00,0x01,0xff,0x76,0xcc,0x83,0x00,0x10,0x08,0x01, | ||
| 2197 | 0xff,0x56,0xcc,0xa3,0x00,0x01,0xff,0x76,0xcc,0xa3,0x00,0xe0,0x10,0x02,0xcf,0x86, | ||
| 2198 | 0xd5,0xe1,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x57,0xcc, | ||
| 2199 | 0x80,0x00,0x01,0xff,0x77,0xcc,0x80,0x00,0x10,0x08,0x01,0xff,0x57,0xcc,0x81,0x00, | ||
| 2200 | 0x01,0xff,0x77,0xcc,0x81,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x57,0xcc,0x88,0x00, | ||
| 2201 | 0x01,0xff,0x77,0xcc,0x88,0x00,0x10,0x08,0x01,0xff,0x57,0xcc,0x87,0x00,0x01,0xff, | ||
| 2202 | 0x77,0xcc,0x87,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x57,0xcc,0xa3,0x00, | ||
| 2203 | 0x01,0xff,0x77,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x58,0xcc,0x87,0x00,0x01,0xff, | ||
| 2204 | 0x78,0xcc,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x58,0xcc,0x88,0x00,0x01,0xff, | ||
| 2205 | 0x78,0xcc,0x88,0x00,0x10,0x08,0x01,0xff,0x59,0xcc,0x87,0x00,0x01,0xff,0x79,0xcc, | ||
| 2206 | 0x87,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x5a,0xcc,0x82,0x00, | ||
| 2207 | 0x01,0xff,0x7a,0xcc,0x82,0x00,0x10,0x08,0x01,0xff,0x5a,0xcc,0xa3,0x00,0x01,0xff, | ||
| 2208 | 0x7a,0xcc,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x5a,0xcc,0xb1,0x00,0x01,0xff, | ||
| 2209 | 0x7a,0xcc,0xb1,0x00,0x10,0x08,0x01,0xff,0x68,0xcc,0xb1,0x00,0x01,0xff,0x74,0xcc, | ||
| 2210 | 0x88,0x00,0x92,0x1d,0xd1,0x10,0x10,0x08,0x01,0xff,0x77,0xcc,0x8a,0x00,0x01,0xff, | ||
| 2211 | 0x79,0xcc,0x8a,0x00,0x10,0x04,0x01,0x00,0x02,0xff,0xc5,0xbf,0xcc,0x87,0x00,0x0a, | ||
| 2212 | 0x00,0xd4,0x98,0xd3,0x48,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x41,0xcc,0xa3, | ||
| 2213 | 0x00,0x01,0xff,0x61,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x41,0xcc,0x89,0x00,0x01, | ||
| 2214 | 0xff,0x61,0xcc,0x89,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x41,0xcc,0x82,0xcc,0x81, | ||
| 2215 | 0x00,0x01,0xff,0x61,0xcc,0x82,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x82, | ||
| 2216 | 0xcc,0x80,0x00,0x01,0xff,0x61,0xcc,0x82,0xcc,0x80,0x00,0xd2,0x28,0xd1,0x14,0x10, | ||
| 2217 | 0x0a,0x01,0xff,0x41,0xcc,0x82,0xcc,0x89,0x00,0x01,0xff,0x61,0xcc,0x82,0xcc,0x89, | ||
| 2218 | 0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x61,0xcc,0x82, | ||
| 2219 | 0xcc,0x83,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x41,0xcc,0xa3,0xcc,0x82,0x00,0x01, | ||
| 2220 | 0xff,0x61,0xcc,0xa3,0xcc,0x82,0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x86,0xcc,0x81, | ||
| 2221 | 0x00,0x01,0xff,0x61,0xcc,0x86,0xcc,0x81,0x00,0xd3,0x50,0xd2,0x28,0xd1,0x14,0x10, | ||
| 2222 | 0x0a,0x01,0xff,0x41,0xcc,0x86,0xcc,0x80,0x00,0x01,0xff,0x61,0xcc,0x86,0xcc,0x80, | ||
| 2223 | 0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0x86,0xcc,0x89,0x00,0x01,0xff,0x61,0xcc,0x86, | ||
| 2224 | 0xcc,0x89,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x41,0xcc,0x86,0xcc,0x83,0x00,0x01, | ||
| 2225 | 0xff,0x61,0xcc,0x86,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x41,0xcc,0xa3,0xcc,0x86, | ||
| 2226 | 0x00,0x01,0xff,0x61,0xcc,0xa3,0xcc,0x86,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 2227 | 0xff,0x45,0xcc,0xa3,0x00,0x01,0xff,0x65,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x45, | ||
| 2228 | 0xcc,0x89,0x00,0x01,0xff,0x65,0xcc,0x89,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x45, | ||
| 2229 | 0xcc,0x83,0x00,0x01,0xff,0x65,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x45,0xcc,0x82, | ||
| 2230 | 0xcc,0x81,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x81,0x00,0xcf,0x86,0xe5,0x31,0x01, | ||
| 2231 | 0xd4,0x90,0xd3,0x50,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x45,0xcc,0x82,0xcc, | ||
| 2232 | 0x80,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0x45,0xcc, | ||
| 2233 | 0x82,0xcc,0x89,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x89,0x00,0xd1,0x14,0x10,0x0a, | ||
| 2234 | 0x01,0xff,0x45,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x65,0xcc,0x82,0xcc,0x83,0x00, | ||
| 2235 | 0x10,0x0a,0x01,0xff,0x45,0xcc,0xa3,0xcc,0x82,0x00,0x01,0xff,0x65,0xcc,0xa3,0xcc, | ||
| 2236 | 0x82,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0x49,0xcc,0x89,0x00,0x01,0xff, | ||
| 2237 | 0x69,0xcc,0x89,0x00,0x10,0x08,0x01,0xff,0x49,0xcc,0xa3,0x00,0x01,0xff,0x69,0xcc, | ||
| 2238 | 0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0x4f,0xcc,0xa3,0x00,0x01,0xff,0x6f,0xcc, | ||
| 2239 | 0xa3,0x00,0x10,0x08,0x01,0xff,0x4f,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x89,0x00, | ||
| 2240 | 0xd3,0x50,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x82,0xcc,0x81,0x00, | ||
| 2241 | 0x01,0xff,0x6f,0xcc,0x82,0xcc,0x81,0x00,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x82,0xcc, | ||
| 2242 | 0x80,0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x80,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff, | ||
| 2243 | 0x4f,0xcc,0x82,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x89,0x00,0x10,0x0a, | ||
| 2244 | 0x01,0xff,0x4f,0xcc,0x82,0xcc,0x83,0x00,0x01,0xff,0x6f,0xcc,0x82,0xcc,0x83,0x00, | ||
| 2245 | 0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc,0xa3,0xcc,0x82,0x00,0x01,0xff, | ||
| 2246 | 0x6f,0xcc,0xa3,0xcc,0x82,0x00,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x9b,0xcc,0x81,0x00, | ||
| 2247 | 0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x81,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc, | ||
| 2248 | 0x9b,0xcc,0x80,0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff, | ||
| 2249 | 0x4f,0xcc,0x9b,0xcc,0x89,0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x89,0x00,0xd4,0x98, | ||
| 2250 | 0xd3,0x48,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x9b,0xcc,0x83,0x00, | ||
| 2251 | 0x01,0xff,0x6f,0xcc,0x9b,0xcc,0x83,0x00,0x10,0x0a,0x01,0xff,0x4f,0xcc,0x9b,0xcc, | ||
| 2252 | 0xa3,0x00,0x01,0xff,0x6f,0xcc,0x9b,0xcc,0xa3,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2253 | 0x55,0xcc,0xa3,0x00,0x01,0xff,0x75,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff,0x55,0xcc, | ||
| 2254 | 0x89,0x00,0x01,0xff,0x75,0xcc,0x89,0x00,0xd2,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff, | ||
| 2255 | 0x55,0xcc,0x9b,0xcc,0x81,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x81,0x00,0x10,0x0a, | ||
| 2256 | 0x01,0xff,0x55,0xcc,0x9b,0xcc,0x80,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0x80,0x00, | ||
| 2257 | 0xd1,0x14,0x10,0x0a,0x01,0xff,0x55,0xcc,0x9b,0xcc,0x89,0x00,0x01,0xff,0x75,0xcc, | ||
| 2258 | 0x9b,0xcc,0x89,0x00,0x10,0x0a,0x01,0xff,0x55,0xcc,0x9b,0xcc,0x83,0x00,0x01,0xff, | ||
| 2259 | 0x75,0xcc,0x9b,0xcc,0x83,0x00,0xd3,0x44,0xd2,0x24,0xd1,0x14,0x10,0x0a,0x01,0xff, | ||
| 2260 | 0x55,0xcc,0x9b,0xcc,0xa3,0x00,0x01,0xff,0x75,0xcc,0x9b,0xcc,0xa3,0x00,0x10,0x08, | ||
| 2261 | 0x01,0xff,0x59,0xcc,0x80,0x00,0x01,0xff,0x79,0xcc,0x80,0x00,0xd1,0x10,0x10,0x08, | ||
| 2262 | 0x01,0xff,0x59,0xcc,0xa3,0x00,0x01,0xff,0x79,0xcc,0xa3,0x00,0x10,0x08,0x01,0xff, | ||
| 2263 | 0x59,0xcc,0x89,0x00,0x01,0xff,0x79,0xcc,0x89,0x00,0x92,0x14,0x91,0x10,0x10,0x08, | ||
| 2264 | 0x01,0xff,0x59,0xcc,0x83,0x00,0x01,0xff,0x79,0xcc,0x83,0x00,0x0a,0x00,0x0a,0x00, | ||
| 2265 | 0xe1,0xc0,0x04,0xe0,0x80,0x02,0xcf,0x86,0xe5,0x2d,0x01,0xd4,0xa8,0xd3,0x54,0xd2, | ||
| 2266 | 0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x93,0x00,0x01,0xff,0xce,0xb1, | ||
| 2267 | 0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff, | ||
| 2268 | 0xce,0xb1,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc, | ||
| 2269 | 0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01, | ||
| 2270 | 0xff,0xce,0xb1,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcd,0x82, | ||
| 2271 | 0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0x91,0xcc,0x93,0x00,0x01,0xff, | ||
| 2272 | 0xce,0x91,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0x91,0xcc,0x93,0xcc,0x80,0x00, | ||
| 2273 | 0x01,0xff,0xce,0x91,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce, | ||
| 2274 | 0x91,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0x91,0xcc,0x94,0xcc,0x81,0x00,0x10, | ||
| 2275 | 0x0b,0x01,0xff,0xce,0x91,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0x91,0xcc,0x94, | ||
| 2276 | 0xcd,0x82,0x00,0xd3,0x42,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb5,0xcc, | ||
| 2277 | 0x93,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xb5,0xcc, | ||
| 2278 | 0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94,0xcc,0x80,0x00,0x91,0x16,0x10, | ||
| 2279 | 0x0b,0x01,0xff,0xce,0xb5,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0xb5,0xcc,0x94, | ||
| 2280 | 0xcc,0x81,0x00,0x00,0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0x95,0xcc, | ||
| 2281 | 0x93,0x00,0x01,0xff,0xce,0x95,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0x95,0xcc, | ||
| 2282 | 0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0x95,0xcc,0x94,0xcc,0x80,0x00,0x91,0x16,0x10, | ||
| 2283 | 0x0b,0x01,0xff,0xce,0x95,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0x95,0xcc,0x94, | ||
| 2284 | 0xcc,0x81,0x00,0x00,0x00,0xd4,0xa8,0xd3,0x54,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01, | ||
| 2285 | 0xff,0xce,0xb7,0xcc,0x93,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0x00,0x10,0x0b,0x01, | ||
| 2286 | 0xff,0xce,0xb7,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x80, | ||
| 2287 | 0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff, | ||
| 2288 | 0xce,0xb7,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcd, | ||
| 2289 | 0x82,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcd,0x82,0x00,0xd2,0x28,0xd1,0x12,0x10, | ||
| 2290 | 0x09,0x01,0xff,0xce,0x97,0xcc,0x93,0x00,0x01,0xff,0xce,0x97,0xcc,0x94,0x00,0x10, | ||
| 2291 | 0x0b,0x01,0xff,0xce,0x97,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0x97,0xcc,0x94, | ||
| 2292 | 0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0x97,0xcc,0x93,0xcc,0x81,0x00, | ||
| 2293 | 0x01,0xff,0xce,0x97,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff,0xce,0x97,0xcc, | ||
| 2294 | 0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0x97,0xcc,0x94,0xcd,0x82,0x00,0xd3,0x54,0xd2, | ||
| 2295 | 0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x93,0x00,0x01,0xff,0xce,0xb9, | ||
| 2296 | 0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xb9,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff, | ||
| 2297 | 0xce,0xb9,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb9,0xcc, | ||
| 2298 | 0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01, | ||
| 2299 | 0xff,0xce,0xb9,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xb9,0xcc,0x94,0xcd,0x82, | ||
| 2300 | 0x00,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0x99,0xcc,0x93,0x00,0x01,0xff, | ||
| 2301 | 0xce,0x99,0xcc,0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0x99,0xcc,0x93,0xcc,0x80,0x00, | ||
| 2302 | 0x01,0xff,0xce,0x99,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce, | ||
| 2303 | 0x99,0xcc,0x93,0xcc,0x81,0x00,0x01,0xff,0xce,0x99,0xcc,0x94,0xcc,0x81,0x00,0x10, | ||
| 2304 | 0x0b,0x01,0xff,0xce,0x99,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0x99,0xcc,0x94, | ||
| 2305 | 0xcd,0x82,0x00,0xcf,0x86,0xe5,0x13,0x01,0xd4,0x84,0xd3,0x42,0xd2,0x28,0xd1,0x12, | ||
| 2306 | 0x10,0x09,0x01,0xff,0xce,0xbf,0xcc,0x93,0x00,0x01,0xff,0xce,0xbf,0xcc,0x94,0x00, | ||
| 2307 | 0x10,0x0b,0x01,0xff,0xce,0xbf,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0xbf,0xcc, | ||
| 2308 | 0x94,0xcc,0x80,0x00,0x91,0x16,0x10,0x0b,0x01,0xff,0xce,0xbf,0xcc,0x93,0xcc,0x81, | ||
| 2309 | 0x00,0x01,0xff,0xce,0xbf,0xcc,0x94,0xcc,0x81,0x00,0x00,0x00,0xd2,0x28,0xd1,0x12, | ||
| 2310 | 0x10,0x09,0x01,0xff,0xce,0x9f,0xcc,0x93,0x00,0x01,0xff,0xce,0x9f,0xcc,0x94,0x00, | ||
| 2311 | 0x10,0x0b,0x01,0xff,0xce,0x9f,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce,0x9f,0xcc, | ||
| 2312 | 0x94,0xcc,0x80,0x00,0x91,0x16,0x10,0x0b,0x01,0xff,0xce,0x9f,0xcc,0x93,0xcc,0x81, | ||
| 2313 | 0x00,0x01,0xff,0xce,0x9f,0xcc,0x94,0xcc,0x81,0x00,0x00,0x00,0xd3,0x54,0xd2,0x28, | ||
| 2314 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x93,0x00,0x01,0xff,0xcf,0x85,0xcc, | ||
| 2315 | 0x94,0x00,0x10,0x0b,0x01,0xff,0xcf,0x85,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xcf, | ||
| 2316 | 0x85,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xcf,0x85,0xcc,0x93, | ||
| 2317 | 0xcc,0x81,0x00,0x01,0xff,0xcf,0x85,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff, | ||
| 2318 | 0xcf,0x85,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xcf,0x85,0xcc,0x94,0xcd,0x82,0x00, | ||
| 2319 | 0xd2,0x1c,0xd1,0x0d,0x10,0x04,0x00,0x00,0x01,0xff,0xce,0xa5,0xcc,0x94,0x00,0x10, | ||
| 2320 | 0x04,0x00,0x00,0x01,0xff,0xce,0xa5,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x0f,0x10,0x04, | ||
| 2321 | 0x00,0x00,0x01,0xff,0xce,0xa5,0xcc,0x94,0xcc,0x81,0x00,0x10,0x04,0x00,0x00,0x01, | ||
| 2322 | 0xff,0xce,0xa5,0xcc,0x94,0xcd,0x82,0x00,0xd4,0xa8,0xd3,0x54,0xd2,0x28,0xd1,0x12, | ||
| 2323 | 0x10,0x09,0x01,0xff,0xcf,0x89,0xcc,0x93,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0x00, | ||
| 2324 | 0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xcf,0x89,0xcc, | ||
| 2325 | 0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x81, | ||
| 2326 | 0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff,0xcf,0x89, | ||
| 2327 | 0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcd,0x82,0x00,0xd2,0x28, | ||
| 2328 | 0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xa9,0xcc,0x93,0x00,0x01,0xff,0xce,0xa9,0xcc, | ||
| 2329 | 0x94,0x00,0x10,0x0b,0x01,0xff,0xce,0xa9,0xcc,0x93,0xcc,0x80,0x00,0x01,0xff,0xce, | ||
| 2330 | 0xa9,0xcc,0x94,0xcc,0x80,0x00,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xa9,0xcc,0x93, | ||
| 2331 | 0xcc,0x81,0x00,0x01,0xff,0xce,0xa9,0xcc,0x94,0xcc,0x81,0x00,0x10,0x0b,0x01,0xff, | ||
| 2332 | 0xce,0xa9,0xcc,0x93,0xcd,0x82,0x00,0x01,0xff,0xce,0xa9,0xcc,0x94,0xcd,0x82,0x00, | ||
| 2333 | 0xd3,0x48,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x80,0x00,0x01, | ||
| 2334 | 0xff,0xce,0xb1,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce,0xb5,0xcc,0x80,0x00,0x01, | ||
| 2335 | 0xff,0xce,0xb5,0xcc,0x81,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb7,0xcc,0x80, | ||
| 2336 | 0x00,0x01,0xff,0xce,0xb7,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce,0xb9,0xcc,0x80, | ||
| 2337 | 0x00,0x01,0xff,0xce,0xb9,0xcc,0x81,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff, | ||
| 2338 | 0xce,0xbf,0xcc,0x80,0x00,0x01,0xff,0xce,0xbf,0xcc,0x81,0x00,0x10,0x09,0x01,0xff, | ||
| 2339 | 0xcf,0x85,0xcc,0x80,0x00,0x01,0xff,0xcf,0x85,0xcc,0x81,0x00,0x91,0x12,0x10,0x09, | ||
| 2340 | 0x01,0xff,0xcf,0x89,0xcc,0x80,0x00,0x01,0xff,0xcf,0x89,0xcc,0x81,0x00,0x00,0x00, | ||
| 2341 | 0xe0,0xe1,0x02,0xcf,0x86,0xe5,0x91,0x01,0xd4,0xc8,0xd3,0x64,0xd2,0x30,0xd1,0x16, | ||
| 2342 | 0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcd,0x85,0x00,0x01,0xff,0xce,0xb1,0xcc, | ||
| 2343 | 0x94,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x80,0xcd,0x85, | ||
| 2344 | 0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcc,0x80,0xcd,0x85,0x00,0xd1,0x1a,0x10,0x0d, | ||
| 2345 | 0x01,0xff,0xce,0xb1,0xcc,0x93,0xcc,0x81,0xcd,0x85,0x00,0x01,0xff,0xce,0xb1,0xcc, | ||
| 2346 | 0x94,0xcc,0x81,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0xb1,0xcc,0x93,0xcd,0x82, | ||
| 2347 | 0xcd,0x85,0x00,0x01,0xff,0xce,0xb1,0xcc,0x94,0xcd,0x82,0xcd,0x85,0x00,0xd2,0x30, | ||
| 2348 | 0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0x91,0xcc,0x93,0xcd,0x85,0x00,0x01,0xff,0xce, | ||
| 2349 | 0x91,0xcc,0x94,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0x91,0xcc,0x93,0xcc,0x80, | ||
| 2350 | 0xcd,0x85,0x00,0x01,0xff,0xce,0x91,0xcc,0x94,0xcc,0x80,0xcd,0x85,0x00,0xd1,0x1a, | ||
| 2351 | 0x10,0x0d,0x01,0xff,0xce,0x91,0xcc,0x93,0xcc,0x81,0xcd,0x85,0x00,0x01,0xff,0xce, | ||
| 2352 | 0x91,0xcc,0x94,0xcc,0x81,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0x91,0xcc,0x93, | ||
| 2353 | 0xcd,0x82,0xcd,0x85,0x00,0x01,0xff,0xce,0x91,0xcc,0x94,0xcd,0x82,0xcd,0x85,0x00, | ||
| 2354 | 0xd3,0x64,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcd,0x85, | ||
| 2355 | 0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0xb7, | ||
| 2356 | 0xcc,0x93,0xcc,0x80,0xcd,0x85,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x80,0xcd, | ||
| 2357 | 0x85,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xce,0xb7,0xcc,0x93,0xcc,0x81,0xcd,0x85, | ||
| 2358 | 0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcc,0x81,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff, | ||
| 2359 | 0xce,0xb7,0xcc,0x93,0xcd,0x82,0xcd,0x85,0x00,0x01,0xff,0xce,0xb7,0xcc,0x94,0xcd, | ||
| 2360 | 0x82,0xcd,0x85,0x00,0xd2,0x30,0xd1,0x16,0x10,0x0b,0x01,0xff,0xce,0x97,0xcc,0x93, | ||
| 2361 | 0xcd,0x85,0x00,0x01,0xff,0xce,0x97,0xcc,0x94,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff, | ||
| 2362 | 0xce,0x97,0xcc,0x93,0xcc,0x80,0xcd,0x85,0x00,0x01,0xff,0xce,0x97,0xcc,0x94,0xcc, | ||
| 2363 | 0x80,0xcd,0x85,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff,0xce,0x97,0xcc,0x93,0xcc,0x81, | ||
| 2364 | 0xcd,0x85,0x00,0x01,0xff,0xce,0x97,0xcc,0x94,0xcc,0x81,0xcd,0x85,0x00,0x10,0x0d, | ||
| 2365 | 0x01,0xff,0xce,0x97,0xcc,0x93,0xcd,0x82,0xcd,0x85,0x00,0x01,0xff,0xce,0x97,0xcc, | ||
| 2366 | 0x94,0xcd,0x82,0xcd,0x85,0x00,0xd4,0xc8,0xd3,0x64,0xd2,0x30,0xd1,0x16,0x10,0x0b, | ||
| 2367 | 0x01,0xff,0xcf,0x89,0xcc,0x93,0xcd,0x85,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcd, | ||
| 2368 | 0x85,0x00,0x10,0x0d,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcc,0x80,0xcd,0x85,0x00,0x01, | ||
| 2369 | 0xff,0xcf,0x89,0xcc,0x94,0xcc,0x80,0xcd,0x85,0x00,0xd1,0x1a,0x10,0x0d,0x01,0xff, | ||
| 2370 | 0xcf,0x89,0xcc,0x93,0xcc,0x81,0xcd,0x85,0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcc, | ||
| 2371 | 0x81,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xcf,0x89,0xcc,0x93,0xcd,0x82,0xcd,0x85, | ||
| 2372 | 0x00,0x01,0xff,0xcf,0x89,0xcc,0x94,0xcd,0x82,0xcd,0x85,0x00,0xd2,0x30,0xd1,0x16, | ||
| 2373 | 0x10,0x0b,0x01,0xff,0xce,0xa9,0xcc,0x93,0xcd,0x85,0x00,0x01,0xff,0xce,0xa9,0xcc, | ||
| 2374 | 0x94,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0xa9,0xcc,0x93,0xcc,0x80,0xcd,0x85, | ||
| 2375 | 0x00,0x01,0xff,0xce,0xa9,0xcc,0x94,0xcc,0x80,0xcd,0x85,0x00,0xd1,0x1a,0x10,0x0d, | ||
| 2376 | 0x01,0xff,0xce,0xa9,0xcc,0x93,0xcc,0x81,0xcd,0x85,0x00,0x01,0xff,0xce,0xa9,0xcc, | ||
| 2377 | 0x94,0xcc,0x81,0xcd,0x85,0x00,0x10,0x0d,0x01,0xff,0xce,0xa9,0xcc,0x93,0xcd,0x82, | ||
| 2378 | 0xcd,0x85,0x00,0x01,0xff,0xce,0xa9,0xcc,0x94,0xcd,0x82,0xcd,0x85,0x00,0xd3,0x49, | ||
| 2379 | 0xd2,0x26,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0xb1,0xcc,0x86,0x00,0x01,0xff,0xce, | ||
| 2380 | 0xb1,0xcc,0x84,0x00,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x80,0xcd,0x85,0x00,0x01, | ||
| 2381 | 0xff,0xce,0xb1,0xcd,0x85,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xce,0xb1,0xcc,0x81, | ||
| 2382 | 0xcd,0x85,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xce,0xb1,0xcd,0x82,0x00,0x01,0xff, | ||
| 2383 | 0xce,0xb1,0xcd,0x82,0xcd,0x85,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xce, | ||
| 2384 | 0x91,0xcc,0x86,0x00,0x01,0xff,0xce,0x91,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xce, | ||
| 2385 | 0x91,0xcc,0x80,0x00,0x01,0xff,0xce,0x91,0xcc,0x81,0x00,0xd1,0x0d,0x10,0x09,0x01, | ||
| 2386 | 0xff,0xce,0x91,0xcd,0x85,0x00,0x01,0x00,0x10,0x07,0x01,0xff,0xce,0xb9,0x00,0x01, | ||
| 2387 | 0x00,0xcf,0x86,0xe5,0x16,0x01,0xd4,0x8f,0xd3,0x44,0xd2,0x21,0xd1,0x0d,0x10,0x04, | ||
| 2388 | 0x01,0x00,0x01,0xff,0xc2,0xa8,0xcd,0x82,0x00,0x10,0x0b,0x01,0xff,0xce,0xb7,0xcc, | ||
| 2389 | 0x80,0xcd,0x85,0x00,0x01,0xff,0xce,0xb7,0xcd,0x85,0x00,0xd1,0x0f,0x10,0x0b,0x01, | ||
| 2390 | 0xff,0xce,0xb7,0xcc,0x81,0xcd,0x85,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xce,0xb7, | ||
| 2391 | 0xcd,0x82,0x00,0x01,0xff,0xce,0xb7,0xcd,0x82,0xcd,0x85,0x00,0xd2,0x24,0xd1,0x12, | ||
| 2392 | 0x10,0x09,0x01,0xff,0xce,0x95,0xcc,0x80,0x00,0x01,0xff,0xce,0x95,0xcc,0x81,0x00, | ||
| 2393 | 0x10,0x09,0x01,0xff,0xce,0x97,0xcc,0x80,0x00,0x01,0xff,0xce,0x97,0xcc,0x81,0x00, | ||
| 2394 | 0xd1,0x13,0x10,0x09,0x01,0xff,0xce,0x97,0xcd,0x85,0x00,0x01,0xff,0xe1,0xbe,0xbf, | ||
| 2395 | 0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0xe1,0xbe,0xbf,0xcc,0x81,0x00,0x01,0xff,0xe1, | ||
| 2396 | 0xbe,0xbf,0xcd,0x82,0x00,0xd3,0x40,0xd2,0x28,0xd1,0x12,0x10,0x09,0x01,0xff,0xce, | ||
| 2397 | 0xb9,0xcc,0x86,0x00,0x01,0xff,0xce,0xb9,0xcc,0x84,0x00,0x10,0x0b,0x01,0xff,0xce, | ||
| 2398 | 0xb9,0xcc,0x88,0xcc,0x80,0x00,0x01,0xff,0xce,0xb9,0xcc,0x88,0xcc,0x81,0x00,0x51, | ||
| 2399 | 0x04,0x00,0x00,0x10,0x09,0x01,0xff,0xce,0xb9,0xcd,0x82,0x00,0x01,0xff,0xce,0xb9, | ||
| 2400 | 0xcc,0x88,0xcd,0x82,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xce,0x99,0xcc, | ||
| 2401 | 0x86,0x00,0x01,0xff,0xce,0x99,0xcc,0x84,0x00,0x10,0x09,0x01,0xff,0xce,0x99,0xcc, | ||
| 2402 | 0x80,0x00,0x01,0xff,0xce,0x99,0xcc,0x81,0x00,0xd1,0x0e,0x10,0x04,0x00,0x00,0x01, | ||
| 2403 | 0xff,0xe1,0xbf,0xbe,0xcc,0x80,0x00,0x10,0x0a,0x01,0xff,0xe1,0xbf,0xbe,0xcc,0x81, | ||
| 2404 | 0x00,0x01,0xff,0xe1,0xbf,0xbe,0xcd,0x82,0x00,0xd4,0x93,0xd3,0x4e,0xd2,0x28,0xd1, | ||
| 2405 | 0x12,0x10,0x09,0x01,0xff,0xcf,0x85,0xcc,0x86,0x00,0x01,0xff,0xcf,0x85,0xcc,0x84, | ||
| 2406 | 0x00,0x10,0x0b,0x01,0xff,0xcf,0x85,0xcc,0x88,0xcc,0x80,0x00,0x01,0xff,0xcf,0x85, | ||
| 2407 | 0xcc,0x88,0xcc,0x81,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xcf,0x81,0xcc,0x93,0x00, | ||
| 2408 | 0x01,0xff,0xcf,0x81,0xcc,0x94,0x00,0x10,0x09,0x01,0xff,0xcf,0x85,0xcd,0x82,0x00, | ||
| 2409 | 0x01,0xff,0xcf,0x85,0xcc,0x88,0xcd,0x82,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01, | ||
| 2410 | 0xff,0xce,0xa5,0xcc,0x86,0x00,0x01,0xff,0xce,0xa5,0xcc,0x84,0x00,0x10,0x09,0x01, | ||
| 2411 | 0xff,0xce,0xa5,0xcc,0x80,0x00,0x01,0xff,0xce,0xa5,0xcc,0x81,0x00,0xd1,0x12,0x10, | ||
| 2412 | 0x09,0x01,0xff,0xce,0xa1,0xcc,0x94,0x00,0x01,0xff,0xc2,0xa8,0xcc,0x80,0x00,0x10, | ||
| 2413 | 0x09,0x01,0xff,0xc2,0xa8,0xcc,0x81,0x00,0x01,0xff,0x60,0x00,0xd3,0x3b,0xd2,0x18, | ||
| 2414 | 0x51,0x04,0x00,0x00,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x80,0xcd,0x85,0x00,0x01, | ||
| 2415 | 0xff,0xcf,0x89,0xcd,0x85,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xcf,0x89,0xcc,0x81, | ||
| 2416 | 0xcd,0x85,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xcf,0x89,0xcd,0x82,0x00,0x01,0xff, | ||
| 2417 | 0xcf,0x89,0xcd,0x82,0xcd,0x85,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xce, | ||
| 2418 | 0x9f,0xcc,0x80,0x00,0x01,0xff,0xce,0x9f,0xcc,0x81,0x00,0x10,0x09,0x01,0xff,0xce, | ||
| 2419 | 0xa9,0xcc,0x80,0x00,0x01,0xff,0xce,0xa9,0xcc,0x81,0x00,0xd1,0x10,0x10,0x09,0x01, | ||
| 2420 | 0xff,0xce,0xa9,0xcd,0x85,0x00,0x01,0xff,0xc2,0xb4,0x00,0x10,0x04,0x01,0x00,0x00, | ||
| 2421 | 0x00,0xe0,0x7e,0x0c,0xcf,0x86,0xe5,0xbb,0x08,0xe4,0x14,0x06,0xe3,0xf7,0x02,0xe2, | ||
| 2422 | 0xbd,0x01,0xd1,0xd0,0xd0,0x4f,0xcf,0x86,0xd5,0x2e,0x94,0x2a,0xd3,0x18,0x92,0x14, | ||
| 2423 | 0x91,0x10,0x10,0x08,0x01,0xff,0xe2,0x80,0x82,0x00,0x01,0xff,0xe2,0x80,0x83,0x00, | ||
| 2424 | 0x01,0x00,0x01,0x00,0x92,0x0d,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff, | ||
| 2425 | 0x00,0x01,0xff,0x00,0x01,0x00,0x94,0x1b,0x53,0x04,0x01,0x00,0xd2,0x09,0x11,0x04, | ||
| 2426 | 0x01,0x00,0x01,0xff,0x00,0x51,0x05,0x01,0xff,0x00,0x10,0x05,0x01,0xff,0x00,0x04, | ||
| 2427 | 0x00,0x01,0x00,0xcf,0x86,0xd5,0x48,0xd4,0x1c,0xd3,0x10,0x52,0x04,0x01,0x00,0x51, | ||
| 2428 | 0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x06,0x00,0x52,0x04,0x04,0x00,0x11,0x04,0x04, | ||
| 2429 | 0x00,0x06,0x00,0xd3,0x1c,0xd2,0x0c,0x51,0x04,0x06,0x00,0x10,0x04,0x06,0x00,0x07, | ||
| 2430 | 0x00,0xd1,0x08,0x10,0x04,0x07,0x00,0x08,0x00,0x10,0x04,0x08,0x00,0x06,0x00,0x52, | ||
| 2431 | 0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x06,0x00,0xd4,0x23,0xd3, | ||
| 2432 | 0x14,0x52,0x05,0x06,0xff,0x00,0x91,0x0a,0x10,0x05,0x0a,0xff,0x00,0x00,0xff,0x00, | ||
| 2433 | 0x0f,0xff,0x00,0x92,0x0a,0x11,0x05,0x0f,0xff,0x00,0x01,0xff,0x00,0x01,0xff,0x00, | ||
| 2434 | 0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x06,0x00,0x00,0x00,0x01,0x00, | ||
| 2435 | 0x01,0x00,0xd0,0x7e,0xcf,0x86,0xd5,0x34,0xd4,0x14,0x53,0x04,0x01,0x00,0x52,0x04, | ||
| 2436 | 0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0xd3,0x10,0x52,0x04, | ||
| 2437 | 0x08,0x00,0x91,0x08,0x10,0x04,0x08,0x00,0x0c,0x00,0x0c,0x00,0x52,0x04,0x0c,0x00, | ||
| 2438 | 0x91,0x08,0x10,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0xd4,0x1c,0x53,0x04,0x01,0x00, | ||
| 2439 | 0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x02,0x00,0x91,0x08,0x10,0x04, | ||
| 2440 | 0x03,0x00,0x04,0x00,0x04,0x00,0xd3,0x10,0xd2,0x08,0x11,0x04,0x06,0x00,0x08,0x00, | ||
| 2441 | 0x11,0x04,0x08,0x00,0x0b,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x0b,0x00,0x0c,0x00, | ||
| 2442 | 0x10,0x04,0x0e,0x00,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x11,0x00,0x13,0x00, | ||
| 2443 | 0xcf,0x86,0xd5,0x28,0x54,0x04,0x00,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04,0x01,0xe6, | ||
| 2444 | 0x01,0x01,0x01,0xe6,0xd2,0x0c,0x51,0x04,0x01,0x01,0x10,0x04,0x01,0x01,0x01,0xe6, | ||
| 2445 | 0x91,0x08,0x10,0x04,0x01,0xe6,0x01,0x00,0x01,0x00,0xd4,0x30,0xd3,0x1c,0xd2,0x0c, | ||
| 2446 | 0x91,0x08,0x10,0x04,0x01,0x00,0x01,0xe6,0x04,0x00,0xd1,0x08,0x10,0x04,0x06,0x00, | ||
| 2447 | 0x06,0x01,0x10,0x04,0x06,0x01,0x06,0xe6,0x92,0x10,0xd1,0x08,0x10,0x04,0x06,0xdc, | ||
| 2448 | 0x06,0xe6,0x10,0x04,0x06,0x01,0x08,0x01,0x09,0xdc,0x93,0x10,0x92,0x0c,0x91,0x08, | ||
| 2449 | 0x10,0x04,0x0a,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd1,0x81,0xd0,0x4f, | ||
| 2450 | 0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x29,0xd3,0x13,0x52,0x04,0x01,0x00,0x51,0x04, | ||
| 2451 | 0x01,0x00,0x10,0x07,0x01,0xff,0xce,0xa9,0x00,0x01,0x00,0x92,0x12,0x51,0x04,0x01, | ||
| 2452 | 0x00,0x10,0x06,0x01,0xff,0x4b,0x00,0x01,0xff,0x41,0xcc,0x8a,0x00,0x01,0x00,0x53, | ||
| 2453 | 0x04,0x01,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x01,0x00,0x04,0x00,0x10,0x04,0x04, | ||
| 2454 | 0x00,0x07,0x00,0x91,0x08,0x10,0x04,0x08,0x00,0x06,0x00,0x06,0x00,0xcf,0x86,0x95, | ||
| 2455 | 0x2c,0xd4,0x18,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0xd1,0x08,0x10,0x04,0x08, | ||
| 2456 | 0x00,0x09,0x00,0x10,0x04,0x09,0x00,0x0a,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x0b, | ||
| 2457 | 0x00,0x10,0x04,0x0b,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd0,0x68,0xcf, | ||
| 2458 | 0x86,0xd5,0x48,0xd4,0x28,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 2459 | 0x00,0x04,0x00,0x91,0x08,0x10,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0x92,0x0c,0x91, | ||
| 2460 | 0x08,0x10,0x04,0x0a,0x00,0x0b,0x00,0x11,0x00,0x00,0x00,0x53,0x04,0x01,0x00,0x92, | ||
| 2461 | 0x18,0x51,0x04,0x01,0x00,0x10,0x0a,0x01,0xff,0xe2,0x86,0x90,0xcc,0xb8,0x00,0x01, | ||
| 2462 | 0xff,0xe2,0x86,0x92,0xcc,0xb8,0x00,0x01,0x00,0x94,0x1a,0x53,0x04,0x01,0x00,0x52, | ||
| 2463 | 0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x0a,0x01,0xff,0xe2,0x86,0x94,0xcc,0xb8, | ||
| 2464 | 0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0x2e,0x94,0x2a,0x53,0x04,0x01,0x00,0x52, | ||
| 2465 | 0x04,0x01,0x00,0xd1,0x0e,0x10,0x04,0x01,0x00,0x01,0xff,0xe2,0x87,0x90,0xcc,0xb8, | ||
| 2466 | 0x00,0x10,0x0a,0x01,0xff,0xe2,0x87,0x94,0xcc,0xb8,0x00,0x01,0xff,0xe2,0x87,0x92, | ||
| 2467 | 0xcc,0xb8,0x00,0x01,0x00,0xd4,0x14,0x53,0x04,0x01,0x00,0x92,0x0c,0x51,0x04,0x01, | ||
| 2468 | 0x00,0x10,0x04,0x01,0x00,0x04,0x00,0x04,0x00,0x93,0x08,0x12,0x04,0x04,0x00,0x06, | ||
| 2469 | 0x00,0x06,0x00,0xe2,0x38,0x02,0xe1,0x3f,0x01,0xd0,0x68,0xcf,0x86,0xd5,0x3e,0x94, | ||
| 2470 | 0x3a,0xd3,0x16,0x52,0x04,0x01,0x00,0x91,0x0e,0x10,0x0a,0x01,0xff,0xe2,0x88,0x83, | ||
| 2471 | 0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0xd2,0x12,0x91,0x0e,0x10,0x04,0x01,0x00,0x01, | ||
| 2472 | 0xff,0xe2,0x88,0x88,0xcc,0xb8,0x00,0x01,0x00,0x91,0x0e,0x10,0x0a,0x01,0xff,0xe2, | ||
| 2473 | 0x88,0x8b,0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x94,0x24,0x93,0x20,0x52, | ||
| 2474 | 0x04,0x01,0x00,0xd1,0x0e,0x10,0x0a,0x01,0xff,0xe2,0x88,0xa3,0xcc,0xb8,0x00,0x01, | ||
| 2475 | 0x00,0x10,0x0a,0x01,0xff,0xe2,0x88,0xa5,0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0x01, | ||
| 2476 | 0x00,0xcf,0x86,0xd5,0x48,0x94,0x44,0xd3,0x2e,0xd2,0x12,0x91,0x0e,0x10,0x04,0x01, | ||
| 2477 | 0x00,0x01,0xff,0xe2,0x88,0xbc,0xcc,0xb8,0x00,0x01,0x00,0xd1,0x0e,0x10,0x0a,0x01, | ||
| 2478 | 0xff,0xe2,0x89,0x83,0xcc,0xb8,0x00,0x01,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xe2, | ||
| 2479 | 0x89,0x85,0xcc,0xb8,0x00,0x92,0x12,0x91,0x0e,0x10,0x04,0x01,0x00,0x01,0xff,0xe2, | ||
| 2480 | 0x89,0x88,0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x40,0xd3,0x1e,0x92, | ||
| 2481 | 0x1a,0xd1,0x0c,0x10,0x08,0x01,0xff,0x3d,0xcc,0xb8,0x00,0x01,0x00,0x10,0x0a,0x01, | ||
| 2482 | 0xff,0xe2,0x89,0xa1,0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0xd1, | ||
| 2483 | 0x0e,0x10,0x04,0x01,0x00,0x01,0xff,0xe2,0x89,0x8d,0xcc,0xb8,0x00,0x10,0x08,0x01, | ||
| 2484 | 0xff,0x3c,0xcc,0xb8,0x00,0x01,0xff,0x3e,0xcc,0xb8,0x00,0xd3,0x30,0xd2,0x18,0x91, | ||
| 2485 | 0x14,0x10,0x0a,0x01,0xff,0xe2,0x89,0xa4,0xcc,0xb8,0x00,0x01,0xff,0xe2,0x89,0xa5, | ||
| 2486 | 0xcc,0xb8,0x00,0x01,0x00,0x91,0x14,0x10,0x0a,0x01,0xff,0xe2,0x89,0xb2,0xcc,0xb8, | ||
| 2487 | 0x00,0x01,0xff,0xe2,0x89,0xb3,0xcc,0xb8,0x00,0x01,0x00,0x92,0x18,0x91,0x14,0x10, | ||
| 2488 | 0x0a,0x01,0xff,0xe2,0x89,0xb6,0xcc,0xb8,0x00,0x01,0xff,0xe2,0x89,0xb7,0xcc,0xb8, | ||
| 2489 | 0x00,0x01,0x00,0x01,0x00,0xd0,0x86,0xcf,0x86,0xd5,0x50,0x94,0x4c,0xd3,0x30,0xd2, | ||
| 2490 | 0x18,0x91,0x14,0x10,0x0a,0x01,0xff,0xe2,0x89,0xba,0xcc,0xb8,0x00,0x01,0xff,0xe2, | ||
| 2491 | 0x89,0xbb,0xcc,0xb8,0x00,0x01,0x00,0x91,0x14,0x10,0x0a,0x01,0xff,0xe2,0x8a,0x82, | ||
| 2492 | 0xcc,0xb8,0x00,0x01,0xff,0xe2,0x8a,0x83,0xcc,0xb8,0x00,0x01,0x00,0x92,0x18,0x91, | ||
| 2493 | 0x14,0x10,0x0a,0x01,0xff,0xe2,0x8a,0x86,0xcc,0xb8,0x00,0x01,0xff,0xe2,0x8a,0x87, | ||
| 2494 | 0xcc,0xb8,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x94,0x30,0x53,0x04,0x01,0x00,0x52, | ||
| 2495 | 0x04,0x01,0x00,0xd1,0x14,0x10,0x0a,0x01,0xff,0xe2,0x8a,0xa2,0xcc,0xb8,0x00,0x01, | ||
| 2496 | 0xff,0xe2,0x8a,0xa8,0xcc,0xb8,0x00,0x10,0x0a,0x01,0xff,0xe2,0x8a,0xa9,0xcc,0xb8, | ||
| 2497 | 0x00,0x01,0xff,0xe2,0x8a,0xab,0xcc,0xb8,0x00,0x01,0x00,0xcf,0x86,0x55,0x04,0x01, | ||
| 2498 | 0x00,0xd4,0x5c,0xd3,0x2c,0x92,0x28,0xd1,0x14,0x10,0x0a,0x01,0xff,0xe2,0x89,0xbc, | ||
| 2499 | 0xcc,0xb8,0x00,0x01,0xff,0xe2,0x89,0xbd,0xcc,0xb8,0x00,0x10,0x0a,0x01,0xff,0xe2, | ||
| 2500 | 0x8a,0x91,0xcc,0xb8,0x00,0x01,0xff,0xe2,0x8a,0x92,0xcc,0xb8,0x00,0x01,0x00,0xd2, | ||
| 2501 | 0x18,0x51,0x04,0x01,0x00,0x10,0x0a,0x01,0xff,0xe2,0x8a,0xb2,0xcc,0xb8,0x00,0x01, | ||
| 2502 | 0xff,0xe2,0x8a,0xb3,0xcc,0xb8,0x00,0x91,0x14,0x10,0x0a,0x01,0xff,0xe2,0x8a,0xb4, | ||
| 2503 | 0xcc,0xb8,0x00,0x01,0xff,0xe2,0x8a,0xb5,0xcc,0xb8,0x00,0x01,0x00,0x93,0x0c,0x92, | ||
| 2504 | 0x08,0x11,0x04,0x01,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xd1,0x64,0xd0,0x3e,0xcf, | ||
| 2505 | 0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01,0x00,0x04, | ||
| 2506 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x94,0x20,0x53,0x04,0x01,0x00,0x92, | ||
| 2507 | 0x18,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x80,0x88,0x00,0x10,0x08,0x01, | ||
| 2508 | 0xff,0xe3,0x80,0x89,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0x55,0x04,0x01, | ||
| 2509 | 0x00,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10, | ||
| 2510 | 0x04,0x01,0x00,0x04,0x00,0x91,0x08,0x10,0x04,0x06,0x00,0x04,0x00,0x04,0x00,0xd0, | ||
| 2511 | 0x1e,0xcf,0x86,0x95,0x18,0x54,0x04,0x04,0x00,0x53,0x04,0x04,0x00,0x92,0x0c,0x51, | ||
| 2512 | 0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xcf,0x86,0xd5, | ||
| 2513 | 0x2c,0xd4,0x14,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0x51,0x04,0x06,0x00,0x10, | ||
| 2514 | 0x04,0x06,0x00,0x07,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x07,0x00,0x08, | ||
| 2515 | 0x00,0x08,0x00,0x08,0x00,0x12,0x04,0x08,0x00,0x09,0x00,0xd4,0x14,0x53,0x04,0x09, | ||
| 2516 | 0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x0b,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0xd3, | ||
| 2517 | 0x08,0x12,0x04,0x0c,0x00,0x10,0x00,0xd2,0x0c,0x51,0x04,0x10,0x00,0x10,0x04,0x10, | ||
| 2518 | 0x00,0x12,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x13,0x00,0xd3,0xa6,0xd2, | ||
| 2519 | 0x74,0xd1,0x40,0xd0,0x22,0xcf,0x86,0x55,0x04,0x01,0x00,0x94,0x18,0x93,0x14,0x52, | ||
| 2520 | 0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x04,0x00,0x10,0x04,0x04,0x00,0x00, | ||
| 2521 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0x95,0x18,0x94,0x14,0x53,0x04,0x01,0x00,0x92, | ||
| 2522 | 0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, | ||
| 2523 | 0x00,0xd0,0x06,0xcf,0x06,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x14,0x53, | ||
| 2524 | 0x04,0x01,0x00,0x92,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x06,0x00,0x06, | ||
| 2525 | 0x00,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0x51,0x04,0x06,0x00,0x10,0x04,0x06, | ||
| 2526 | 0x00,0x07,0x00,0xd1,0x06,0xcf,0x06,0x01,0x00,0xd0,0x1a,0xcf,0x86,0x95,0x14,0x54, | ||
| 2527 | 0x04,0x01,0x00,0x93,0x0c,0x52,0x04,0x01,0x00,0x11,0x04,0x01,0x00,0x06,0x00,0x06, | ||
| 2528 | 0x00,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0x54,0x04,0x01,0x00,0x13,0x04,0x04, | ||
| 2529 | 0x00,0x06,0x00,0xd2,0xdc,0xd1,0x48,0xd0,0x26,0xcf,0x86,0x95,0x20,0x54,0x04,0x01, | ||
| 2530 | 0x00,0xd3,0x0c,0x52,0x04,0x01,0x00,0x11,0x04,0x07,0x00,0x06,0x00,0x92,0x0c,0x91, | ||
| 2531 | 0x08,0x10,0x04,0x08,0x00,0x04,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0x55, | ||
| 2532 | 0x04,0x01,0x00,0x54,0x04,0x01,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04,0x04,0x00,0x06, | ||
| 2533 | 0x00,0x06,0x00,0x52,0x04,0x06,0x00,0x11,0x04,0x06,0x00,0x08,0x00,0xd0,0x5e,0xcf, | ||
| 2534 | 0x86,0xd5,0x2c,0xd4,0x10,0x53,0x04,0x06,0x00,0x92,0x08,0x11,0x04,0x06,0x00,0x07, | ||
| 2535 | 0x00,0x07,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04,0x07,0x00,0x08,0x00,0x08,0x00,0x52, | ||
| 2536 | 0x04,0x08,0x00,0x91,0x08,0x10,0x04,0x08,0x00,0x0a,0x00,0x0b,0x00,0xd4,0x10,0x93, | ||
| 2537 | 0x0c,0x92,0x08,0x11,0x04,0x07,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0xd3,0x10,0x92, | ||
| 2538 | 0x0c,0x51,0x04,0x08,0x00,0x10,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0x52,0x04,0x0a, | ||
| 2539 | 0x00,0x91,0x08,0x10,0x04,0x0a,0x00,0x0b,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x1c,0x94, | ||
| 2540 | 0x18,0xd3,0x08,0x12,0x04,0x0a,0x00,0x0b,0x00,0x52,0x04,0x0b,0x00,0x51,0x04,0x0b, | ||
| 2541 | 0x00,0x10,0x04,0x0c,0x00,0x0b,0x00,0x0b,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x51, | ||
| 2542 | 0x04,0x0b,0x00,0x10,0x04,0x0c,0x00,0x0b,0x00,0x0c,0x00,0x0b,0x00,0x0b,0x00,0xd1, | ||
| 2543 | 0xa8,0xd0,0x42,0xcf,0x86,0xd5,0x28,0x94,0x24,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10, | ||
| 2544 | 0x04,0x10,0x00,0x01,0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x0c,0x00,0x01, | ||
| 2545 | 0x00,0x92,0x08,0x11,0x04,0x01,0x00,0x0c,0x00,0x01,0x00,0x01,0x00,0x94,0x14,0x53, | ||
| 2546 | 0x04,0x01,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x01,0x00,0x01,0x00,0x01, | ||
| 2547 | 0x00,0x01,0x00,0xcf,0x86,0xd5,0x40,0xd4,0x18,0x53,0x04,0x01,0x00,0x52,0x04,0x01, | ||
| 2548 | 0x00,0xd1,0x08,0x10,0x04,0x0c,0x00,0x01,0x00,0x10,0x04,0x0c,0x00,0x01,0x00,0xd3, | ||
| 2549 | 0x18,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x0c,0x00,0x51,0x04,0x0c, | ||
| 2550 | 0x00,0x10,0x04,0x01,0x00,0x0b,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10, | ||
| 2551 | 0x04,0x01,0x00,0x0c,0x00,0xd4,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c, | ||
| 2552 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x06,0x00,0x93,0x0c,0x52,0x04,0x06,0x00,0x11, | ||
| 2553 | 0x04,0x06,0x00,0x01,0x00,0x01,0x00,0xd0,0x3e,0xcf,0x86,0xd5,0x18,0x54,0x04,0x01, | ||
| 2554 | 0x00,0x93,0x10,0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x0c,0x00,0x0c, | ||
| 2555 | 0x00,0x01,0x00,0x54,0x04,0x01,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c, | ||
| 2556 | 0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10, | ||
| 2557 | 0x04,0x01,0x00,0x0c,0x00,0xcf,0x86,0xd5,0x2c,0x94,0x28,0xd3,0x10,0x52,0x04,0x08, | ||
| 2558 | 0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x09,0x00,0xd2,0x0c,0x51,0x04,0x09, | ||
| 2559 | 0x00,0x10,0x04,0x09,0x00,0x0d,0x00,0x91,0x08,0x10,0x04,0x0a,0x00,0x0d,0x00,0x0c, | ||
| 2560 | 0x00,0x06,0x00,0x94,0x0c,0x53,0x04,0x06,0x00,0x12,0x04,0x06,0x00,0x0a,0x00,0x06, | ||
| 2561 | 0x00,0xe4,0x39,0x01,0xd3,0x0c,0xd2,0x06,0xcf,0x06,0x04,0x00,0xcf,0x06,0x06,0x00, | ||
| 2562 | 0xd2,0x30,0xd1,0x06,0xcf,0x06,0x06,0x00,0xd0,0x06,0xcf,0x06,0x06,0x00,0xcf,0x86, | ||
| 2563 | 0x95,0x1e,0x54,0x04,0x06,0x00,0x53,0x04,0x06,0x00,0x52,0x04,0x06,0x00,0x91,0x0e, | ||
| 2564 | 0x10,0x0a,0x06,0xff,0xe2,0xab,0x9d,0xcc,0xb8,0x00,0x06,0x00,0x06,0x00,0x06,0x00, | ||
| 2565 | 0xd1,0x80,0xd0,0x3a,0xcf,0x86,0xd5,0x28,0xd4,0x10,0x53,0x04,0x07,0x00,0x52,0x04, | ||
| 2566 | 0x07,0x00,0x11,0x04,0x07,0x00,0x08,0x00,0xd3,0x08,0x12,0x04,0x08,0x00,0x09,0x00, | ||
| 2567 | 0x92,0x0c,0x51,0x04,0x09,0x00,0x10,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0x94,0x0c, | ||
| 2568 | 0x93,0x08,0x12,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0xcf,0x86,0xd5,0x30, | ||
| 2569 | 0xd4,0x14,0x53,0x04,0x0a,0x00,0x52,0x04,0x0a,0x00,0x91,0x08,0x10,0x04,0x0a,0x00, | ||
| 2570 | 0x10,0x00,0x10,0x00,0xd3,0x10,0x52,0x04,0x0a,0x00,0x91,0x08,0x10,0x04,0x0a,0x00, | ||
| 2571 | 0x0b,0x00,0x0b,0x00,0x92,0x08,0x11,0x04,0x0b,0x00,0x10,0x00,0x10,0x00,0x54,0x04, | ||
| 2572 | 0x10,0x00,0x93,0x0c,0x52,0x04,0x10,0x00,0x11,0x04,0x00,0x00,0x10,0x00,0x10,0x00, | ||
| 2573 | 0xd0,0x32,0xcf,0x86,0xd5,0x14,0x54,0x04,0x10,0x00,0x93,0x0c,0x52,0x04,0x10,0x00, | ||
| 2574 | 0x11,0x04,0x10,0x00,0x00,0x00,0x10,0x00,0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00, | ||
| 2575 | 0xd2,0x08,0x11,0x04,0x10,0x00,0x14,0x00,0x91,0x08,0x10,0x04,0x14,0x00,0x10,0x00, | ||
| 2576 | 0x10,0x00,0xcf,0x86,0xd5,0x28,0xd4,0x14,0x53,0x04,0x10,0x00,0x92,0x0c,0x91,0x08, | ||
| 2577 | 0x10,0x04,0x10,0x00,0x15,0x00,0x10,0x00,0x10,0x00,0x93,0x10,0x92,0x0c,0x51,0x04, | ||
| 2578 | 0x10,0x00,0x10,0x04,0x13,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0xd4,0x0c,0x53,0x04, | ||
| 2579 | 0x14,0x00,0x12,0x04,0x14,0x00,0x11,0x00,0x53,0x04,0x14,0x00,0x52,0x04,0x14,0x00, | ||
| 2580 | 0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x15,0x00,0xe3,0xb9,0x01,0xd2,0xac,0xd1, | ||
| 2581 | 0x68,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x08,0x00,0x94,0x14,0x53,0x04,0x08,0x00,0x52, | ||
| 2582 | 0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00,0x00,0x08,0x00,0xcf, | ||
| 2583 | 0x86,0xd5,0x18,0x54,0x04,0x08,0x00,0x53,0x04,0x08,0x00,0x52,0x04,0x08,0x00,0x51, | ||
| 2584 | 0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00,0x00,0xd4,0x14,0x53,0x04,0x09,0x00,0x52, | ||
| 2585 | 0x04,0x09,0x00,0x91,0x08,0x10,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0xd3,0x10,0x92, | ||
| 2586 | 0x0c,0x91,0x08,0x10,0x04,0x0b,0x00,0x0a,0x00,0x0a,0x00,0x09,0x00,0x52,0x04,0x0a, | ||
| 2587 | 0x00,0x11,0x04,0x0a,0x00,0x0b,0x00,0xd0,0x06,0xcf,0x06,0x08,0x00,0xcf,0x86,0x55, | ||
| 2588 | 0x04,0x08,0x00,0xd4,0x1c,0x53,0x04,0x08,0x00,0xd2,0x0c,0x51,0x04,0x08,0x00,0x10, | ||
| 2589 | 0x04,0x08,0x00,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00,0x0b,0xe6,0xd3, | ||
| 2590 | 0x0c,0x92,0x08,0x11,0x04,0x0b,0xe6,0x0d,0x00,0x00,0x00,0x92,0x0c,0x91,0x08,0x10, | ||
| 2591 | 0x04,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0xd1,0x6c,0xd0,0x2a,0xcf,0x86,0x55, | ||
| 2592 | 0x04,0x08,0x00,0x94,0x20,0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10, | ||
| 2593 | 0x04,0x00,0x00,0x0d,0x00,0x52,0x04,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x0d, | ||
| 2594 | 0x00,0x00,0x00,0x08,0x00,0xcf,0x86,0x55,0x04,0x08,0x00,0xd4,0x1c,0xd3,0x0c,0x52, | ||
| 2595 | 0x04,0x08,0x00,0x11,0x04,0x08,0x00,0x0d,0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00, | ||
| 2596 | 0x00,0x10,0x04,0x00,0x00,0x08,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c, | ||
| 2597 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10, | ||
| 2598 | 0x04,0x00,0x00,0x0c,0x09,0xd0,0x5a,0xcf,0x86,0xd5,0x18,0x54,0x04,0x08,0x00,0x93, | ||
| 2599 | 0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00,0x00,0x00, | ||
| 2600 | 0x00,0xd4,0x20,0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08, | ||
| 2601 | 0x00,0x00,0x00,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00, | ||
| 2602 | 0x00,0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00, | ||
| 2603 | 0x00,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00,0x00,0xcf, | ||
| 2604 | 0x86,0x95,0x40,0xd4,0x20,0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10, | ||
| 2605 | 0x04,0x08,0x00,0x00,0x00,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08, | ||
| 2606 | 0x00,0x00,0x00,0xd3,0x10,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08, | ||
| 2607 | 0x00,0x00,0x00,0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x00, | ||
| 2608 | 0x00,0x0a,0xe6,0xd2,0x9c,0xd1,0x68,0xd0,0x32,0xcf,0x86,0xd5,0x14,0x54,0x04,0x08, | ||
| 2609 | 0x00,0x53,0x04,0x08,0x00,0x52,0x04,0x0a,0x00,0x11,0x04,0x08,0x00,0x0a,0x00,0x54, | ||
| 2610 | 0x04,0x0a,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0a,0x00,0x0b,0x00,0x0d, | ||
| 2611 | 0x00,0x0d,0x00,0x12,0x04,0x0d,0x00,0x10,0x00,0xcf,0x86,0x95,0x30,0x94,0x2c,0xd3, | ||
| 2612 | 0x18,0xd2,0x0c,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x12,0x00,0x91,0x08,0x10, | ||
| 2613 | 0x04,0x12,0x00,0x13,0x00,0x13,0x00,0xd2,0x08,0x11,0x04,0x13,0x00,0x14,0x00,0x51, | ||
| 2614 | 0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x15,0x00,0x00,0x00,0x00,0x00,0xd0,0x1e,0xcf, | ||
| 2615 | 0x86,0x95,0x18,0x54,0x04,0x04,0x00,0x53,0x04,0x04,0x00,0x92,0x0c,0x51,0x04,0x04, | ||
| 2616 | 0x00,0x10,0x04,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0xcf,0x86,0x55,0x04,0x04, | ||
| 2617 | 0x00,0x54,0x04,0x04,0x00,0x93,0x08,0x12,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xd1, | ||
| 2618 | 0x06,0xcf,0x06,0x04,0x00,0xd0,0x06,0xcf,0x06,0x04,0x00,0xcf,0x86,0xd5,0x14,0x54, | ||
| 2619 | 0x04,0x04,0x00,0x93,0x0c,0x52,0x04,0x04,0x00,0x11,0x04,0x04,0x00,0x00,0x00,0x00, | ||
| 2620 | 0x00,0x54,0x04,0x00,0x00,0x53,0x04,0x04,0x00,0x12,0x04,0x04,0x00,0x00,0x00,0xcf, | ||
| 2621 | 0x86,0xe5,0xa6,0x05,0xe4,0x9f,0x05,0xe3,0x96,0x04,0xe2,0xe4,0x03,0xe1,0xc0,0x01, | ||
| 2622 | 0xd0,0x3e,0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x1c,0x53,0x04,0x01,0x00,0xd2,0x0c, | ||
| 2623 | 0x51,0x04,0x01,0x00,0x10,0x04,0x01,0xda,0x01,0xe4,0x91,0x08,0x10,0x04,0x01,0xe8, | ||
| 2624 | 0x01,0xde,0x01,0xe0,0x53,0x04,0x01,0x00,0xd2,0x0c,0x51,0x04,0x04,0x00,0x10,0x04, | ||
| 2625 | 0x04,0x00,0x06,0x00,0x51,0x04,0x06,0x00,0x10,0x04,0x04,0x00,0x01,0x00,0xcf,0x86, | ||
| 2626 | 0xd5,0xaa,0xd4,0x32,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 2627 | 0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81, | ||
| 2628 | 0x8b,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0x8d,0xe3,0x82, | ||
| 2629 | 0x99,0x00,0x01,0x00,0xd3,0x3c,0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81, | ||
| 2630 | 0x8f,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0x91,0xe3,0x82, | ||
| 2631 | 0x99,0x00,0x01,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81,0x93,0xe3,0x82,0x99, | ||
| 2632 | 0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0x95,0xe3,0x82,0x99,0x00,0x01,0x00, | ||
| 2633 | 0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81,0x97,0xe3,0x82,0x99,0x00,0x01, | ||
| 2634 | 0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0x99,0xe3,0x82,0x99,0x00,0x01,0x00,0xd1,0x0f, | ||
| 2635 | 0x10,0x0b,0x01,0xff,0xe3,0x81,0x9b,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b,0x01, | ||
| 2636 | 0xff,0xe3,0x81,0x9d,0xe3,0x82,0x99,0x00,0x01,0x00,0xd4,0x53,0xd3,0x3c,0xd2,0x1e, | ||
| 2637 | 0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81,0x9f,0xe3,0x82,0x99,0x00,0x01,0x00,0x10, | ||
| 2638 | 0x0b,0x01,0xff,0xe3,0x81,0xa1,0xe3,0x82,0x99,0x00,0x01,0x00,0xd1,0x0f,0x10,0x04, | ||
| 2639 | 0x01,0x00,0x01,0xff,0xe3,0x81,0xa4,0xe3,0x82,0x99,0x00,0x10,0x04,0x01,0x00,0x01, | ||
| 2640 | 0xff,0xe3,0x81,0xa6,0xe3,0x82,0x99,0x00,0x92,0x13,0x91,0x0f,0x10,0x04,0x01,0x00, | ||
| 2641 | 0x01,0xff,0xe3,0x81,0xa8,0xe3,0x82,0x99,0x00,0x01,0x00,0x01,0x00,0xd3,0x4a,0xd2, | ||
| 2642 | 0x25,0xd1,0x16,0x10,0x0b,0x01,0xff,0xe3,0x81,0xaf,0xe3,0x82,0x99,0x00,0x01,0xff, | ||
| 2643 | 0xe3,0x81,0xaf,0xe3,0x82,0x9a,0x00,0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x81,0xb2, | ||
| 2644 | 0xe3,0x82,0x99,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x81,0xb2,0xe3,0x82,0x9a, | ||
| 2645 | 0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0xb5,0xe3,0x82,0x99,0x00,0x01,0xff, | ||
| 2646 | 0xe3,0x81,0xb5,0xe3,0x82,0x9a,0x00,0xd2,0x1e,0xd1,0x0f,0x10,0x04,0x01,0x00,0x01, | ||
| 2647 | 0xff,0xe3,0x81,0xb8,0xe3,0x82,0x99,0x00,0x10,0x0b,0x01,0xff,0xe3,0x81,0xb8,0xe3, | ||
| 2648 | 0x82,0x9a,0x00,0x01,0x00,0x91,0x16,0x10,0x0b,0x01,0xff,0xe3,0x81,0xbb,0xe3,0x82, | ||
| 2649 | 0x99,0x00,0x01,0xff,0xe3,0x81,0xbb,0xe3,0x82,0x9a,0x00,0x01,0x00,0xd0,0xee,0xcf, | ||
| 2650 | 0x86,0xd5,0x42,0x54,0x04,0x01,0x00,0xd3,0x1b,0x52,0x04,0x01,0x00,0xd1,0x0f,0x10, | ||
| 2651 | 0x0b,0x01,0xff,0xe3,0x81,0x86,0xe3,0x82,0x99,0x00,0x06,0x00,0x10,0x04,0x06,0x00, | ||
| 2652 | 0x00,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x01,0x08,0x10,0x04,0x01,0x08, | ||
| 2653 | 0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x82,0x9d,0xe3,0x82,0x99, | ||
| 2654 | 0x00,0x06,0x00,0xd4,0x32,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x06,0x00,0x01, | ||
| 2655 | 0x00,0x01,0x00,0x01,0x00,0x52,0x04,0x01,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3, | ||
| 2656 | 0x82,0xab,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x82,0xad,0xe3, | ||
| 2657 | 0x82,0x99,0x00,0x01,0x00,0xd3,0x3c,0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3, | ||
| 2658 | 0x82,0xaf,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x82,0xb1,0xe3, | ||
| 2659 | 0x82,0x99,0x00,0x01,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x82,0xb3,0xe3,0x82, | ||
| 2660 | 0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x82,0xb5,0xe3,0x82,0x99,0x00,0x01, | ||
| 2661 | 0x00,0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x82,0xb7,0xe3,0x82,0x99,0x00, | ||
| 2662 | 0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x82,0xb9,0xe3,0x82,0x99,0x00,0x01,0x00,0xd1, | ||
| 2663 | 0x0f,0x10,0x0b,0x01,0xff,0xe3,0x82,0xbb,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x0b, | ||
| 2664 | 0x01,0xff,0xe3,0x82,0xbd,0xe3,0x82,0x99,0x00,0x01,0x00,0xcf,0x86,0xd5,0xd5,0xd4, | ||
| 2665 | 0x53,0xd3,0x3c,0xd2,0x1e,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3,0x82,0xbf,0xe3,0x82, | ||
| 2666 | 0x99,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x83,0x81,0xe3,0x82,0x99,0x00,0x01, | ||
| 2667 | 0x00,0xd1,0x0f,0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x83,0x84,0xe3,0x82,0x99,0x00, | ||
| 2668 | 0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x83,0x86,0xe3,0x82,0x99,0x00,0x92,0x13,0x91, | ||
| 2669 | 0x0f,0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x83,0x88,0xe3,0x82,0x99,0x00,0x01,0x00, | ||
| 2670 | 0x01,0x00,0xd3,0x4a,0xd2,0x25,0xd1,0x16,0x10,0x0b,0x01,0xff,0xe3,0x83,0x8f,0xe3, | ||
| 2671 | 0x82,0x99,0x00,0x01,0xff,0xe3,0x83,0x8f,0xe3,0x82,0x9a,0x00,0x10,0x04,0x01,0x00, | ||
| 2672 | 0x01,0xff,0xe3,0x83,0x92,0xe3,0x82,0x99,0x00,0xd1,0x0f,0x10,0x0b,0x01,0xff,0xe3, | ||
| 2673 | 0x83,0x92,0xe3,0x82,0x9a,0x00,0x01,0x00,0x10,0x0b,0x01,0xff,0xe3,0x83,0x95,0xe3, | ||
| 2674 | 0x82,0x99,0x00,0x01,0xff,0xe3,0x83,0x95,0xe3,0x82,0x9a,0x00,0xd2,0x1e,0xd1,0x0f, | ||
| 2675 | 0x10,0x04,0x01,0x00,0x01,0xff,0xe3,0x83,0x98,0xe3,0x82,0x99,0x00,0x10,0x0b,0x01, | ||
| 2676 | 0xff,0xe3,0x83,0x98,0xe3,0x82,0x9a,0x00,0x01,0x00,0x91,0x16,0x10,0x0b,0x01,0xff, | ||
| 2677 | 0xe3,0x83,0x9b,0xe3,0x82,0x99,0x00,0x01,0xff,0xe3,0x83,0x9b,0xe3,0x82,0x9a,0x00, | ||
| 2678 | 0x01,0x00,0x54,0x04,0x01,0x00,0xd3,0x22,0x52,0x04,0x01,0x00,0xd1,0x0f,0x10,0x0b, | ||
| 2679 | 0x01,0xff,0xe3,0x82,0xa6,0xe3,0x82,0x99,0x00,0x01,0x00,0x10,0x04,0x01,0x00,0x01, | ||
| 2680 | 0xff,0xe3,0x83,0xaf,0xe3,0x82,0x99,0x00,0xd2,0x25,0xd1,0x16,0x10,0x0b,0x01,0xff, | ||
| 2681 | 0xe3,0x83,0xb0,0xe3,0x82,0x99,0x00,0x01,0xff,0xe3,0x83,0xb1,0xe3,0x82,0x99,0x00, | ||
| 2682 | 0x10,0x0b,0x01,0xff,0xe3,0x83,0xb2,0xe3,0x82,0x99,0x00,0x01,0x00,0x51,0x04,0x01, | ||
| 2683 | 0x00,0x10,0x0b,0x01,0xff,0xe3,0x83,0xbd,0xe3,0x82,0x99,0x00,0x06,0x00,0xd1,0x65, | ||
| 2684 | 0xd0,0x46,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x52,0x04,0x00,0x00,0x91,0x08, | ||
| 2685 | 0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd4,0x18,0x53,0x04, | ||
| 2686 | 0x01,0x00,0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x0a,0x00,0x10,0x04, | ||
| 2687 | 0x13,0x00,0x14,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00, | ||
| 2688 | 0x01,0x00,0x01,0x00,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0x94,0x15,0x93,0x11, | ||
| 2689 | 0x52,0x04,0x01,0x00,0x91,0x09,0x10,0x05,0x01,0xff,0x00,0x01,0x00,0x01,0x00,0x01, | ||
| 2690 | 0x00,0x01,0x00,0xd0,0x32,0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x01,0x00,0x52, | ||
| 2691 | 0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x54, | ||
| 2692 | 0x04,0x04,0x00,0x53,0x04,0x04,0x00,0x92,0x0c,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c, | ||
| 2693 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x08,0x14,0x04,0x08,0x00,0x0a,0x00,0x94, | ||
| 2694 | 0x0c,0x93,0x08,0x12,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0xd2,0xa4,0xd1, | ||
| 2695 | 0x5c,0xd0,0x22,0xcf,0x86,0x95,0x1c,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0x52, | ||
| 2696 | 0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x07,0x00,0x10,0x04,0x07,0x00,0x00, | ||
| 2697 | 0x00,0x01,0x00,0xcf,0x86,0xd5,0x20,0xd4,0x0c,0x93,0x08,0x12,0x04,0x01,0x00,0x0b, | ||
| 2698 | 0x00,0x0b,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x07,0x00,0x06,0x00,0x06, | ||
| 2699 | 0x00,0x06,0x00,0x06,0x00,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00,0x52,0x04,0x01, | ||
| 2700 | 0x00,0x51,0x04,0x07,0x00,0x10,0x04,0x08,0x00,0x01,0x00,0xd0,0x1e,0xcf,0x86,0x55, | ||
| 2701 | 0x04,0x01,0x00,0x54,0x04,0x01,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x01, | ||
| 2702 | 0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xcf,0x86,0xd5,0x10,0x94,0x0c,0x53, | ||
| 2703 | 0x04,0x01,0x00,0x12,0x04,0x01,0x00,0x07,0x00,0x01,0x00,0x54,0x04,0x01,0x00,0x53, | ||
| 2704 | 0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x16, | ||
| 2705 | 0x00,0xd1,0x30,0xd0,0x06,0xcf,0x06,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0x54, | ||
| 2706 | 0x04,0x01,0x00,0xd3,0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 2707 | 0x00,0x07,0x00,0x92,0x0c,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00,0x01,0x00,0x01, | ||
| 2708 | 0x00,0xd0,0x06,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x14,0x54,0x04,0x01,0x00,0x53, | ||
| 2709 | 0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x11,0x04,0x01,0x00,0x07,0x00,0x54,0x04,0x01, | ||
| 2710 | 0x00,0x53,0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 2711 | 0x00,0x07,0x00,0xcf,0x06,0x04,0x00,0xcf,0x06,0x04,0x00,0xd1,0x48,0xd0,0x40,0xcf, | ||
| 2712 | 0x86,0xd5,0x06,0xcf,0x06,0x04,0x00,0xd4,0x06,0xcf,0x06,0x04,0x00,0xd3,0x2c,0xd2, | ||
| 2713 | 0x06,0xcf,0x06,0x04,0x00,0xd1,0x06,0xcf,0x06,0x04,0x00,0xd0,0x1a,0xcf,0x86,0x55, | ||
| 2714 | 0x04,0x04,0x00,0x54,0x04,0x04,0x00,0x93,0x0c,0x52,0x04,0x04,0x00,0x11,0x04,0x04, | ||
| 2715 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x07,0x00,0xcf,0x06,0x01,0x00,0xcf,0x86,0xcf, | ||
| 2716 | 0x06,0x01,0x00,0xcf,0x86,0xcf,0x06,0x01,0x00,0xe2,0x71,0x05,0xd1,0x8c,0xd0,0x08, | ||
| 2717 | 0xcf,0x86,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x01,0x00,0xd4,0x06, | ||
| 2718 | 0xcf,0x06,0x01,0x00,0xd3,0x06,0xcf,0x06,0x01,0x00,0xd2,0x06,0xcf,0x06,0x01,0x00, | ||
| 2719 | 0xd1,0x06,0xcf,0x06,0x01,0x00,0xd0,0x22,0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x10, | ||
| 2720 | 0x93,0x0c,0x52,0x04,0x01,0x00,0x11,0x04,0x01,0x00,0x08,0x00,0x08,0x00,0x53,0x04, | ||
| 2721 | 0x08,0x00,0x12,0x04,0x08,0x00,0x0a,0x00,0xcf,0x86,0xd5,0x28,0xd4,0x18,0xd3,0x08, | ||
| 2722 | 0x12,0x04,0x0a,0x00,0x0b,0x00,0x52,0x04,0x0b,0x00,0x91,0x08,0x10,0x04,0x0d,0x00, | ||
| 2723 | 0x11,0x00,0x11,0x00,0x93,0x0c,0x52,0x04,0x11,0x00,0x11,0x04,0x11,0x00,0x13,0x00, | ||
| 2724 | 0x13,0x00,0x94,0x14,0x53,0x04,0x13,0x00,0x92,0x0c,0x51,0x04,0x13,0x00,0x10,0x04, | ||
| 2725 | 0x13,0x00,0x14,0x00,0x14,0x00,0x00,0x00,0xe0,0xdb,0x04,0xcf,0x86,0xe5,0xdf,0x01, | ||
| 2726 | 0xd4,0x06,0xcf,0x06,0x04,0x00,0xd3,0x74,0xd2,0x6e,0xd1,0x06,0xcf,0x06,0x04,0x00, | ||
| 2727 | 0xd0,0x3e,0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x04,0x00,0x52,0x04,0x04,0x00, | ||
| 2728 | 0x91,0x08,0x10,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xd4,0x10,0x93,0x0c, | ||
| 2729 | 0x92,0x08,0x11,0x04,0x04,0x00,0x06,0x00,0x04,0x00,0x04,0x00,0x93,0x10,0x52,0x04, | ||
| 2730 | 0x04,0x00,0x91,0x08,0x10,0x04,0x06,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0xcf,0x86, | ||
| 2731 | 0x95,0x24,0x94,0x20,0x93,0x1c,0xd2,0x0c,0x91,0x08,0x10,0x04,0x04,0x00,0x06,0x00, | ||
| 2732 | 0x04,0x00,0xd1,0x08,0x10,0x04,0x04,0x00,0x06,0x00,0x10,0x04,0x04,0x00,0x00,0x00, | ||
| 2733 | 0x00,0x00,0x0b,0x00,0x0b,0x00,0xcf,0x06,0x0a,0x00,0xd2,0x84,0xd1,0x4c,0xd0,0x16, | ||
| 2734 | 0xcf,0x86,0x55,0x04,0x0a,0x00,0x94,0x0c,0x53,0x04,0x0a,0x00,0x12,0x04,0x0a,0x00, | ||
| 2735 | 0x00,0x00,0x00,0x00,0xcf,0x86,0x55,0x04,0x0a,0x00,0xd4,0x1c,0xd3,0x0c,0x92,0x08, | ||
| 2736 | 0x11,0x04,0x0c,0x00,0x0a,0x00,0x0a,0x00,0x52,0x04,0x0a,0x00,0x51,0x04,0x0a,0x00, | ||
| 2737 | 0x10,0x04,0x0a,0x00,0x0a,0xe6,0xd3,0x08,0x12,0x04,0x0a,0x00,0x0d,0xe6,0x52,0x04, | ||
| 2738 | 0x0d,0xe6,0x11,0x04,0x0a,0xe6,0x0a,0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04, | ||
| 2739 | 0x0a,0x00,0x53,0x04,0x0a,0x00,0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04, | ||
| 2740 | 0x11,0xe6,0x0d,0xe6,0x0b,0x00,0xcf,0x86,0x55,0x04,0x0b,0x00,0x54,0x04,0x0b,0x00, | ||
| 2741 | 0x93,0x0c,0x92,0x08,0x11,0x04,0x0b,0xe6,0x0b,0x00,0x0b,0x00,0x00,0x00,0xd1,0x40, | ||
| 2742 | 0xd0,0x3a,0xcf,0x86,0xd5,0x24,0x54,0x04,0x08,0x00,0xd3,0x10,0x52,0x04,0x08,0x00, | ||
| 2743 | 0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x09,0x00,0x92,0x0c,0x51,0x04,0x09,0x00, | ||
| 2744 | 0x10,0x04,0x09,0x00,0x0a,0x00,0x0a,0x00,0x94,0x10,0x93,0x0c,0x92,0x08,0x11,0x04, | ||
| 2745 | 0x09,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0xcf,0x06,0x0a,0x00,0xd0,0x5e, | ||
| 2746 | 0xcf,0x86,0xd5,0x28,0xd4,0x18,0x53,0x04,0x0a,0x00,0x52,0x04,0x0a,0x00,0xd1,0x08, | ||
| 2747 | 0x10,0x04,0x0a,0x00,0x0c,0x00,0x10,0x04,0x0c,0x00,0x11,0x00,0x93,0x0c,0x92,0x08, | ||
| 2748 | 0x11,0x04,0x0c,0x00,0x0d,0x00,0x10,0x00,0x10,0x00,0xd4,0x1c,0x53,0x04,0x0c,0x00, | ||
| 2749 | 0xd2,0x0c,0x51,0x04,0x0c,0x00,0x10,0x04,0x0d,0x00,0x10,0x00,0x51,0x04,0x10,0x00, | ||
| 2750 | 0x10,0x04,0x12,0x00,0x14,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04,0x10,0x00,0x11,0x00, | ||
| 2751 | 0x11,0x00,0x92,0x08,0x11,0x04,0x14,0x00,0x15,0x00,0x15,0x00,0xcf,0x86,0xd5,0x1c, | ||
| 2752 | 0x94,0x18,0x93,0x14,0xd2,0x08,0x11,0x04,0x00,0x00,0x15,0x00,0x51,0x04,0x15,0x00, | ||
| 2753 | 0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x04,0x00,0x00,0xd3,0x10, | ||
| 2754 | 0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x92,0x0c, | ||
| 2755 | 0x51,0x04,0x0d,0x00,0x10,0x04,0x0c,0x00,0x0a,0x00,0x0a,0x00,0xe4,0xf2,0x02,0xe3, | ||
| 2756 | 0x65,0x01,0xd2,0x98,0xd1,0x48,0xd0,0x36,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10, | ||
| 2757 | 0x52,0x04,0x08,0x00,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x09,0x08,0x00,0x08,0x00, | ||
| 2758 | 0x08,0x00,0xd4,0x0c,0x53,0x04,0x08,0x00,0x12,0x04,0x08,0x00,0x00,0x00,0x53,0x04, | ||
| 2759 | 0x0b,0x00,0x92,0x08,0x11,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0x55,0x04, | ||
| 2760 | 0x09,0x00,0x54,0x04,0x09,0x00,0x13,0x04,0x09,0x00,0x00,0x00,0xd0,0x06,0xcf,0x06, | ||
| 2761 | 0x0a,0x00,0xcf,0x86,0xd5,0x2c,0xd4,0x1c,0xd3,0x10,0x52,0x04,0x0a,0x00,0x91,0x08, | ||
| 2762 | 0x10,0x04,0x0a,0x09,0x12,0x00,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00, | ||
| 2763 | 0x0a,0x00,0x53,0x04,0x0a,0x00,0x92,0x08,0x11,0x04,0x0a,0x00,0x00,0x00,0x00,0x00, | ||
| 2764 | 0x54,0x04,0x0b,0xe6,0xd3,0x0c,0x92,0x08,0x11,0x04,0x0b,0xe6,0x0b,0x00,0x0b,0x00, | ||
| 2765 | 0x52,0x04,0x0b,0x00,0x11,0x04,0x11,0x00,0x14,0x00,0xd1,0x60,0xd0,0x22,0xcf,0x86, | ||
| 2766 | 0x55,0x04,0x0a,0x00,0x94,0x18,0x53,0x04,0x0a,0x00,0xd2,0x0c,0x51,0x04,0x0a,0x00, | ||
| 2767 | 0x10,0x04,0x0a,0x00,0x0a,0xdc,0x11,0x04,0x0a,0xdc,0x0a,0x00,0x0a,0x00,0xcf,0x86, | ||
| 2768 | 0xd5,0x24,0x54,0x04,0x0a,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x0a,0x00,0x10,0x04, | ||
| 2769 | 0x0a,0x00,0x0a,0x09,0x00,0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04, | ||
| 2770 | 0x00,0x00,0x0a,0x00,0x54,0x04,0x0b,0x00,0x53,0x04,0x0b,0x00,0x52,0x04,0x0b,0x00, | ||
| 2771 | 0x91,0x08,0x10,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0xd0,0x1e,0xcf,0x86,0x55,0x04, | ||
| 2772 | 0x0b,0x00,0x54,0x04,0x0b,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x0b,0x00,0x10,0x04, | ||
| 2773 | 0x0b,0x00,0x0b,0x07,0x0b,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x34,0xd4,0x20,0xd3,0x10, | ||
| 2774 | 0x92,0x0c,0x91,0x08,0x10,0x04,0x0b,0x09,0x0b,0x00,0x0b,0x00,0x0b,0x00,0x52,0x04, | ||
| 2775 | 0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x00,0x00,0x0b,0x00,0x53,0x04,0x0b,0x00, | ||
| 2776 | 0xd2,0x08,0x11,0x04,0x0b,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x0b,0x00,0x54,0x04, | ||
| 2777 | 0x10,0x00,0x53,0x04,0x10,0x00,0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04, | ||
| 2778 | 0x10,0x00,0x00,0x00,0xd2,0xd0,0xd1,0x50,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x0a,0x00, | ||
| 2779 | 0x54,0x04,0x0a,0x00,0x93,0x10,0x52,0x04,0x0a,0x00,0x51,0x04,0x0a,0x00,0x10,0x04, | ||
| 2780 | 0x0a,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x20,0xd4,0x10,0x53,0x04,0x0a,0x00, | ||
| 2781 | 0x52,0x04,0x0a,0x00,0x11,0x04,0x0a,0x00,0x00,0x00,0x53,0x04,0x0a,0x00,0x92,0x08, | ||
| 2782 | 0x11,0x04,0x0a,0x00,0x00,0x00,0x0a,0x00,0x54,0x04,0x0b,0x00,0x53,0x04,0x0b,0x00, | ||
| 2783 | 0x12,0x04,0x0b,0x00,0x10,0x00,0xd0,0x3a,0xcf,0x86,0x55,0x04,0x0b,0x00,0x54,0x04, | ||
| 2784 | 0x0b,0x00,0xd3,0x1c,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0b,0xe6,0x0b,0x00,0x0b,0xe6, | ||
| 2785 | 0xd1,0x08,0x10,0x04,0x0b,0xdc,0x0b,0x00,0x10,0x04,0x0b,0x00,0x0b,0xe6,0xd2,0x0c, | ||
| 2786 | 0x91,0x08,0x10,0x04,0x0b,0xe6,0x0b,0x00,0x0b,0x00,0x11,0x04,0x0b,0x00,0x0b,0xe6, | ||
| 2787 | 0xcf,0x86,0xd5,0x2c,0xd4,0x18,0x93,0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x0b,0x00, | ||
| 2788 | 0x0b,0xe6,0x10,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x00,0x00, | ||
| 2789 | 0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0b,0x00,0x0b,0x00,0x54,0x04, | ||
| 2790 | 0x0d,0x00,0x93,0x10,0x52,0x04,0x0d,0x00,0x51,0x04,0x0d,0x00,0x10,0x04,0x0d,0x09, | ||
| 2791 | 0x00,0x00,0x00,0x00,0xd1,0x8c,0xd0,0x72,0xcf,0x86,0xd5,0x4c,0xd4,0x30,0xd3,0x18, | ||
| 2792 | 0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00,0x0c,0x00,0x51,0x04,0x0c,0x00, | ||
| 2793 | 0x10,0x04,0x0c,0x00,0x00,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00, | ||
| 2794 | 0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x00,0x00,0x93,0x18,0xd2,0x0c, | ||
| 2795 | 0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04, | ||
| 2796 | 0x0c,0x00,0x00,0x00,0x00,0x00,0x94,0x20,0xd3,0x10,0x52,0x04,0x0c,0x00,0x51,0x04, | ||
| 2797 | 0x0c,0x00,0x10,0x04,0x0c,0x00,0x00,0x00,0x52,0x04,0x0c,0x00,0x51,0x04,0x0c,0x00, | ||
| 2798 | 0x10,0x04,0x0c,0x00,0x00,0x00,0x10,0x00,0xcf,0x86,0x55,0x04,0x10,0x00,0x94,0x10, | ||
| 2799 | 0x93,0x0c,0x52,0x04,0x11,0x00,0x11,0x04,0x10,0x00,0x15,0x00,0x00,0x00,0x11,0x00, | ||
| 2800 | 0xd0,0x06,0xcf,0x06,0x11,0x00,0xcf,0x86,0x55,0x04,0x0b,0x00,0xd4,0x14,0x53,0x04, | ||
| 2801 | 0x0b,0x00,0x52,0x04,0x0b,0x00,0x91,0x08,0x10,0x04,0x0b,0x00,0x0b,0x09,0x00,0x00, | ||
| 2802 | 0x53,0x04,0x0b,0x00,0x92,0x08,0x11,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0xcf,0x06, | ||
| 2803 | 0x02,0xff,0xff,0xcf,0x86,0xcf,0x06,0x02,0xff,0xff,0xd1,0x76,0xd0,0x09,0xcf,0x86, | ||
| 2804 | 0xcf,0x06,0x02,0xff,0xff,0xcf,0x86,0x85,0xd4,0x07,0xcf,0x06,0x02,0xff,0xff,0xd3, | ||
| 2805 | 0x07,0xcf,0x06,0x02,0xff,0xff,0xd2,0x07,0xcf,0x06,0x02,0xff,0xff,0xd1,0x07,0xcf, | ||
| 2806 | 0x06,0x02,0xff,0xff,0xd0,0x18,0xcf,0x86,0x55,0x05,0x02,0xff,0xff,0x94,0x0d,0x93, | ||
| 2807 | 0x09,0x12,0x05,0x02,0xff,0xff,0x00,0x00,0x00,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x24, | ||
| 2808 | 0x94,0x20,0xd3,0x10,0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00, | ||
| 2809 | 0x00,0x00,0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0b,0x00,0x0b,0x00, | ||
| 2810 | 0x0b,0x00,0x54,0x04,0x0b,0x00,0x53,0x04,0x0b,0x00,0x12,0x04,0x0b,0x00,0x00,0x00, | ||
| 2811 | 0xd0,0x08,0xcf,0x86,0xcf,0x06,0x01,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x01,0x00, | ||
| 2812 | 0xe4,0x9c,0x10,0xe3,0x16,0x08,0xd2,0x06,0xcf,0x06,0x01,0x00,0xe1,0x08,0x04,0xe0, | ||
| 2813 | 0x04,0x02,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10, | ||
| 2814 | 0x08,0x01,0xff,0xe8,0xb1,0x88,0x00,0x01,0xff,0xe6,0x9b,0xb4,0x00,0x10,0x08,0x01, | ||
| 2815 | 0xff,0xe8,0xbb,0x8a,0x00,0x01,0xff,0xe8,0xb3,0x88,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 2816 | 0xff,0xe6,0xbb,0x91,0x00,0x01,0xff,0xe4,0xb8,0xb2,0x00,0x10,0x08,0x01,0xff,0xe5, | ||
| 2817 | 0x8f,0xa5,0x00,0x01,0xff,0xe9,0xbe,0x9c,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 2818 | 0xff,0xe9,0xbe,0x9c,0x00,0x01,0xff,0xe5,0xa5,0x91,0x00,0x10,0x08,0x01,0xff,0xe9, | ||
| 2819 | 0x87,0x91,0x00,0x01,0xff,0xe5,0x96,0x87,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5, | ||
| 2820 | 0xa5,0x88,0x00,0x01,0xff,0xe6,0x87,0xb6,0x00,0x10,0x08,0x01,0xff,0xe7,0x99,0xa9, | ||
| 2821 | 0x00,0x01,0xff,0xe7,0xbe,0x85,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 2822 | 0xff,0xe8,0x98,0xbf,0x00,0x01,0xff,0xe8,0x9e,0xba,0x00,0x10,0x08,0x01,0xff,0xe8, | ||
| 2823 | 0xa3,0xb8,0x00,0x01,0xff,0xe9,0x82,0x8f,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe6, | ||
| 2824 | 0xa8,0x82,0x00,0x01,0xff,0xe6,0xb4,0x9b,0x00,0x10,0x08,0x01,0xff,0xe7,0x83,0x99, | ||
| 2825 | 0x00,0x01,0xff,0xe7,0x8f,0x9e,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe8, | ||
| 2826 | 0x90,0xbd,0x00,0x01,0xff,0xe9,0x85,0xaa,0x00,0x10,0x08,0x01,0xff,0xe9,0xa7,0xb1, | ||
| 2827 | 0x00,0x01,0xff,0xe4,0xba,0x82,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5,0x8d,0xb5, | ||
| 2828 | 0x00,0x01,0xff,0xe6,0xac,0x84,0x00,0x10,0x08,0x01,0xff,0xe7,0x88,0x9b,0x00,0x01, | ||
| 2829 | 0xff,0xe8,0x98,0xad,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01, | ||
| 2830 | 0xff,0xe9,0xb8,0x9e,0x00,0x01,0xff,0xe5,0xb5,0x90,0x00,0x10,0x08,0x01,0xff,0xe6, | ||
| 2831 | 0xbf,0xab,0x00,0x01,0xff,0xe8,0x97,0x8d,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe8, | ||
| 2832 | 0xa5,0xa4,0x00,0x01,0xff,0xe6,0x8b,0x89,0x00,0x10,0x08,0x01,0xff,0xe8,0x87,0x98, | ||
| 2833 | 0x00,0x01,0xff,0xe8,0xa0,0x9f,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5, | ||
| 2834 | 0xbb,0x8a,0x00,0x01,0xff,0xe6,0x9c,0x97,0x00,0x10,0x08,0x01,0xff,0xe6,0xb5,0xaa, | ||
| 2835 | 0x00,0x01,0xff,0xe7,0x8b,0xbc,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe9,0x83,0x8e, | ||
| 2836 | 0x00,0x01,0xff,0xe4,0xbe,0x86,0x00,0x10,0x08,0x01,0xff,0xe5,0x86,0xb7,0x00,0x01, | ||
| 2837 | 0xff,0xe5,0x8b,0x9e,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe6, | ||
| 2838 | 0x93,0x84,0x00,0x01,0xff,0xe6,0xab,0x93,0x00,0x10,0x08,0x01,0xff,0xe7,0x88,0x90, | ||
| 2839 | 0x00,0x01,0xff,0xe7,0x9b,0xa7,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe8,0x80,0x81, | ||
| 2840 | 0x00,0x01,0xff,0xe8,0x98,0x86,0x00,0x10,0x08,0x01,0xff,0xe8,0x99,0x9c,0x00,0x01, | ||
| 2841 | 0xff,0xe8,0xb7,0xaf,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe9,0x9c,0xb2, | ||
| 2842 | 0x00,0x01,0xff,0xe9,0xad,0xaf,0x00,0x10,0x08,0x01,0xff,0xe9,0xb7,0xba,0x00,0x01, | ||
| 2843 | 0xff,0xe7,0xa2,0x8c,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe7,0xa5,0xbf,0x00,0x01, | ||
| 2844 | 0xff,0xe7,0xb6,0xa0,0x00,0x10,0x08,0x01,0xff,0xe8,0x8f,0x89,0x00,0x01,0xff,0xe9, | ||
| 2845 | 0x8c,0x84,0x00,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 2846 | 0x10,0x08,0x01,0xff,0xe9,0xb9,0xbf,0x00,0x01,0xff,0xe8,0xab,0x96,0x00,0x10,0x08, | ||
| 2847 | 0x01,0xff,0xe5,0xa3,0x9f,0x00,0x01,0xff,0xe5,0xbc,0x84,0x00,0xd1,0x10,0x10,0x08, | ||
| 2848 | 0x01,0xff,0xe7,0xb1,0xa0,0x00,0x01,0xff,0xe8,0x81,0xbe,0x00,0x10,0x08,0x01,0xff, | ||
| 2849 | 0xe7,0x89,0xa2,0x00,0x01,0xff,0xe7,0xa3,0x8a,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2850 | 0x01,0xff,0xe8,0xb3,0x82,0x00,0x01,0xff,0xe9,0x9b,0xb7,0x00,0x10,0x08,0x01,0xff, | ||
| 2851 | 0xe5,0xa3,0x98,0x00,0x01,0xff,0xe5,0xb1,0xa2,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2852 | 0xe6,0xa8,0x93,0x00,0x01,0xff,0xe6,0xb7,0x9a,0x00,0x10,0x08,0x01,0xff,0xe6,0xbc, | ||
| 2853 | 0x8f,0x00,0x01,0xff,0xe7,0xb4,0xaf,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2854 | 0x01,0xff,0xe7,0xb8,0xb7,0x00,0x01,0xff,0xe9,0x99,0x8b,0x00,0x10,0x08,0x01,0xff, | ||
| 2855 | 0xe5,0x8b,0x92,0x00,0x01,0xff,0xe8,0x82,0x8b,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2856 | 0xe5,0x87,0x9c,0x00,0x01,0xff,0xe5,0x87,0x8c,0x00,0x10,0x08,0x01,0xff,0xe7,0xa8, | ||
| 2857 | 0x9c,0x00,0x01,0xff,0xe7,0xb6,0xbe,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2858 | 0xe8,0x8f,0xb1,0x00,0x01,0xff,0xe9,0x99,0xb5,0x00,0x10,0x08,0x01,0xff,0xe8,0xae, | ||
| 2859 | 0x80,0x00,0x01,0xff,0xe6,0x8b,0x8f,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe6,0xa8, | ||
| 2860 | 0x82,0x00,0x01,0xff,0xe8,0xab,0xbe,0x00,0x10,0x08,0x01,0xff,0xe4,0xb8,0xb9,0x00, | ||
| 2861 | 0x01,0xff,0xe5,0xaf,0xa7,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2862 | 0x01,0xff,0xe6,0x80,0x92,0x00,0x01,0xff,0xe7,0x8e,0x87,0x00,0x10,0x08,0x01,0xff, | ||
| 2863 | 0xe7,0x95,0xb0,0x00,0x01,0xff,0xe5,0x8c,0x97,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2864 | 0xe7,0xa3,0xbb,0x00,0x01,0xff,0xe4,0xbe,0xbf,0x00,0x10,0x08,0x01,0xff,0xe5,0xbe, | ||
| 2865 | 0xa9,0x00,0x01,0xff,0xe4,0xb8,0x8d,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2866 | 0xe6,0xb3,0x8c,0x00,0x01,0xff,0xe6,0x95,0xb8,0x00,0x10,0x08,0x01,0xff,0xe7,0xb4, | ||
| 2867 | 0xa2,0x00,0x01,0xff,0xe5,0x8f,0x83,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5,0xa1, | ||
| 2868 | 0x9e,0x00,0x01,0xff,0xe7,0x9c,0x81,0x00,0x10,0x08,0x01,0xff,0xe8,0x91,0x89,0x00, | ||
| 2869 | 0x01,0xff,0xe8,0xaa,0xaa,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2870 | 0xe6,0xae,0xba,0x00,0x01,0xff,0xe8,0xbe,0xb0,0x00,0x10,0x08,0x01,0xff,0xe6,0xb2, | ||
| 2871 | 0x88,0x00,0x01,0xff,0xe6,0x8b,0xbe,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe8,0x8b, | ||
| 2872 | 0xa5,0x00,0x01,0xff,0xe6,0x8e,0xa0,0x00,0x10,0x08,0x01,0xff,0xe7,0x95,0xa5,0x00, | ||
| 2873 | 0x01,0xff,0xe4,0xba,0xae,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5,0x85, | ||
| 2874 | 0xa9,0x00,0x01,0xff,0xe5,0x87,0x89,0x00,0x10,0x08,0x01,0xff,0xe6,0xa2,0x81,0x00, | ||
| 2875 | 0x01,0xff,0xe7,0xb3,0xa7,0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe8,0x89,0xaf,0x00, | ||
| 2876 | 0x01,0xff,0xe8,0xab,0x92,0x00,0x10,0x08,0x01,0xff,0xe9,0x87,0x8f,0x00,0x01,0xff, | ||
| 2877 | 0xe5,0x8b,0xb5,0x00,0xe0,0x04,0x02,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40, | ||
| 2878 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe5,0x91,0x82,0x00,0x01,0xff,0xe5,0xa5, | ||
| 2879 | 0xb3,0x00,0x10,0x08,0x01,0xff,0xe5,0xbb,0xac,0x00,0x01,0xff,0xe6,0x97,0x85,0x00, | ||
| 2880 | 0xd1,0x10,0x10,0x08,0x01,0xff,0xe6,0xbf,0xbe,0x00,0x01,0xff,0xe7,0xa4,0xaa,0x00, | ||
| 2881 | 0x10,0x08,0x01,0xff,0xe9,0x96,0xad,0x00,0x01,0xff,0xe9,0xa9,0xaa,0x00,0xd2,0x20, | ||
| 2882 | 0xd1,0x10,0x10,0x08,0x01,0xff,0xe9,0xba,0x97,0x00,0x01,0xff,0xe9,0xbb,0x8e,0x00, | ||
| 2883 | 0x10,0x08,0x01,0xff,0xe5,0x8a,0x9b,0x00,0x01,0xff,0xe6,0x9b,0x86,0x00,0xd1,0x10, | ||
| 2884 | 0x10,0x08,0x01,0xff,0xe6,0xad,0xb7,0x00,0x01,0xff,0xe8,0xbd,0xa2,0x00,0x10,0x08, | ||
| 2885 | 0x01,0xff,0xe5,0xb9,0xb4,0x00,0x01,0xff,0xe6,0x86,0x90,0x00,0xd3,0x40,0xd2,0x20, | ||
| 2886 | 0xd1,0x10,0x10,0x08,0x01,0xff,0xe6,0x88,0x80,0x00,0x01,0xff,0xe6,0x92,0x9a,0x00, | ||
| 2887 | 0x10,0x08,0x01,0xff,0xe6,0xbc,0xa3,0x00,0x01,0xff,0xe7,0x85,0x89,0x00,0xd1,0x10, | ||
| 2888 | 0x10,0x08,0x01,0xff,0xe7,0x92,0x89,0x00,0x01,0xff,0xe7,0xa7,0x8a,0x00,0x10,0x08, | ||
| 2889 | 0x01,0xff,0xe7,0xb7,0xb4,0x00,0x01,0xff,0xe8,0x81,0xaf,0x00,0xd2,0x20,0xd1,0x10, | ||
| 2890 | 0x10,0x08,0x01,0xff,0xe8,0xbc,0xa6,0x00,0x01,0xff,0xe8,0x93,0xae,0x00,0x10,0x08, | ||
| 2891 | 0x01,0xff,0xe9,0x80,0xa3,0x00,0x01,0xff,0xe9,0x8d,0x8a,0x00,0xd1,0x10,0x10,0x08, | ||
| 2892 | 0x01,0xff,0xe5,0x88,0x97,0x00,0x01,0xff,0xe5,0x8a,0xa3,0x00,0x10,0x08,0x01,0xff, | ||
| 2893 | 0xe5,0x92,0xbd,0x00,0x01,0xff,0xe7,0x83,0x88,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20, | ||
| 2894 | 0xd1,0x10,0x10,0x08,0x01,0xff,0xe8,0xa3,0x82,0x00,0x01,0xff,0xe8,0xaa,0xaa,0x00, | ||
| 2895 | 0x10,0x08,0x01,0xff,0xe5,0xbb,0x89,0x00,0x01,0xff,0xe5,0xbf,0xb5,0x00,0xd1,0x10, | ||
| 2896 | 0x10,0x08,0x01,0xff,0xe6,0x8d,0xbb,0x00,0x01,0xff,0xe6,0xae,0xae,0x00,0x10,0x08, | ||
| 2897 | 0x01,0xff,0xe7,0xb0,0xbe,0x00,0x01,0xff,0xe7,0x8d,0xb5,0x00,0xd2,0x20,0xd1,0x10, | ||
| 2898 | 0x10,0x08,0x01,0xff,0xe4,0xbb,0xa4,0x00,0x01,0xff,0xe5,0x9b,0xb9,0x00,0x10,0x08, | ||
| 2899 | 0x01,0xff,0xe5,0xaf,0xa7,0x00,0x01,0xff,0xe5,0xb6,0xba,0x00,0xd1,0x10,0x10,0x08, | ||
| 2900 | 0x01,0xff,0xe6,0x80,0x9c,0x00,0x01,0xff,0xe7,0x8e,0xb2,0x00,0x10,0x08,0x01,0xff, | ||
| 2901 | 0xe7,0x91,0xa9,0x00,0x01,0xff,0xe7,0xbe,0x9a,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 2902 | 0x10,0x08,0x01,0xff,0xe8,0x81,0x86,0x00,0x01,0xff,0xe9,0x88,0xb4,0x00,0x10,0x08, | ||
| 2903 | 0x01,0xff,0xe9,0x9b,0xb6,0x00,0x01,0xff,0xe9,0x9d,0x88,0x00,0xd1,0x10,0x10,0x08, | ||
| 2904 | 0x01,0xff,0xe9,0xa0,0x98,0x00,0x01,0xff,0xe4,0xbe,0x8b,0x00,0x10,0x08,0x01,0xff, | ||
| 2905 | 0xe7,0xa6,0xae,0x00,0x01,0xff,0xe9,0x86,0xb4,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2906 | 0x01,0xff,0xe9,0x9a,0xb8,0x00,0x01,0xff,0xe6,0x83,0xa1,0x00,0x10,0x08,0x01,0xff, | ||
| 2907 | 0xe4,0xba,0x86,0x00,0x01,0xff,0xe5,0x83,0x9a,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2908 | 0xe5,0xaf,0xae,0x00,0x01,0xff,0xe5,0xb0,0xbf,0x00,0x10,0x08,0x01,0xff,0xe6,0x96, | ||
| 2909 | 0x99,0x00,0x01,0xff,0xe6,0xa8,0x82,0x00,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3, | ||
| 2910 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe7,0x87,0x8e,0x00,0x01,0xff,0xe7, | ||
| 2911 | 0x99,0x82,0x00,0x10,0x08,0x01,0xff,0xe8,0x93,0xbc,0x00,0x01,0xff,0xe9,0x81,0xbc, | ||
| 2912 | 0x00,0xd1,0x10,0x10,0x08,0x01,0xff,0xe9,0xbe,0x8d,0x00,0x01,0xff,0xe6,0x9a,0x88, | ||
| 2913 | 0x00,0x10,0x08,0x01,0xff,0xe9,0x98,0xae,0x00,0x01,0xff,0xe5,0x8a,0x89,0x00,0xd2, | ||
| 2914 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe6,0x9d,0xbb,0x00,0x01,0xff,0xe6,0x9f,0xb3, | ||
| 2915 | 0x00,0x10,0x08,0x01,0xff,0xe6,0xb5,0x81,0x00,0x01,0xff,0xe6,0xba,0x9c,0x00,0xd1, | ||
| 2916 | 0x10,0x10,0x08,0x01,0xff,0xe7,0x90,0x89,0x00,0x01,0xff,0xe7,0x95,0x99,0x00,0x10, | ||
| 2917 | 0x08,0x01,0xff,0xe7,0xa1,0xab,0x00,0x01,0xff,0xe7,0xb4,0x90,0x00,0xd3,0x40,0xd2, | ||
| 2918 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe9,0xa1,0x9e,0x00,0x01,0xff,0xe5,0x85,0xad, | ||
| 2919 | 0x00,0x10,0x08,0x01,0xff,0xe6,0x88,0xae,0x00,0x01,0xff,0xe9,0x99,0xb8,0x00,0xd1, | ||
| 2920 | 0x10,0x10,0x08,0x01,0xff,0xe5,0x80,0xab,0x00,0x01,0xff,0xe5,0xb4,0x99,0x00,0x10, | ||
| 2921 | 0x08,0x01,0xff,0xe6,0xb7,0xaa,0x00,0x01,0xff,0xe8,0xbc,0xaa,0x00,0xd2,0x20,0xd1, | ||
| 2922 | 0x10,0x10,0x08,0x01,0xff,0xe5,0xbe,0x8b,0x00,0x01,0xff,0xe6,0x85,0x84,0x00,0x10, | ||
| 2923 | 0x08,0x01,0xff,0xe6,0xa0,0x97,0x00,0x01,0xff,0xe7,0x8e,0x87,0x00,0xd1,0x10,0x10, | ||
| 2924 | 0x08,0x01,0xff,0xe9,0x9a,0x86,0x00,0x01,0xff,0xe5,0x88,0xa9,0x00,0x10,0x08,0x01, | ||
| 2925 | 0xff,0xe5,0x90,0x8f,0x00,0x01,0xff,0xe5,0xb1,0xa5,0x00,0xd4,0x80,0xd3,0x40,0xd2, | ||
| 2926 | 0x20,0xd1,0x10,0x10,0x08,0x01,0xff,0xe6,0x98,0x93,0x00,0x01,0xff,0xe6,0x9d,0x8e, | ||
| 2927 | 0x00,0x10,0x08,0x01,0xff,0xe6,0xa2,0xa8,0x00,0x01,0xff,0xe6,0xb3,0xa5,0x00,0xd1, | ||
| 2928 | 0x10,0x10,0x08,0x01,0xff,0xe7,0x90,0x86,0x00,0x01,0xff,0xe7,0x97,0xa2,0x00,0x10, | ||
| 2929 | 0x08,0x01,0xff,0xe7,0xbd,0xb9,0x00,0x01,0xff,0xe8,0xa3,0x8f,0x00,0xd2,0x20,0xd1, | ||
| 2930 | 0x10,0x10,0x08,0x01,0xff,0xe8,0xa3,0xa1,0x00,0x01,0xff,0xe9,0x87,0x8c,0x00,0x10, | ||
| 2931 | 0x08,0x01,0xff,0xe9,0x9b,0xa2,0x00,0x01,0xff,0xe5,0x8c,0xbf,0x00,0xd1,0x10,0x10, | ||
| 2932 | 0x08,0x01,0xff,0xe6,0xba,0xba,0x00,0x01,0xff,0xe5,0x90,0x9d,0x00,0x10,0x08,0x01, | ||
| 2933 | 0xff,0xe7,0x87,0x90,0x00,0x01,0xff,0xe7,0x92,0x98,0x00,0xd3,0x40,0xd2,0x20,0xd1, | ||
| 2934 | 0x10,0x10,0x08,0x01,0xff,0xe8,0x97,0xba,0x00,0x01,0xff,0xe9,0x9a,0xa3,0x00,0x10, | ||
| 2935 | 0x08,0x01,0xff,0xe9,0xb1,0x97,0x00,0x01,0xff,0xe9,0xba,0x9f,0x00,0xd1,0x10,0x10, | ||
| 2936 | 0x08,0x01,0xff,0xe6,0x9e,0x97,0x00,0x01,0xff,0xe6,0xb7,0x8b,0x00,0x10,0x08,0x01, | ||
| 2937 | 0xff,0xe8,0x87,0xa8,0x00,0x01,0xff,0xe7,0xab,0x8b,0x00,0xd2,0x20,0xd1,0x10,0x10, | ||
| 2938 | 0x08,0x01,0xff,0xe7,0xac,0xa0,0x00,0x01,0xff,0xe7,0xb2,0x92,0x00,0x10,0x08,0x01, | ||
| 2939 | 0xff,0xe7,0x8b,0x80,0x00,0x01,0xff,0xe7,0x82,0x99,0x00,0xd1,0x10,0x10,0x08,0x01, | ||
| 2940 | 0xff,0xe8,0xad,0x98,0x00,0x01,0xff,0xe4,0xbb,0x80,0x00,0x10,0x08,0x01,0xff,0xe8, | ||
| 2941 | 0x8c,0xb6,0x00,0x01,0xff,0xe5,0x88,0xba,0x00,0xe2,0xad,0x06,0xe1,0xc4,0x03,0xe0, | ||
| 2942 | 0xcb,0x01,0xcf,0x86,0xd5,0xe4,0xd4,0x74,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 2943 | 0x01,0xff,0xe5,0x88,0x87,0x00,0x01,0xff,0xe5,0xba,0xa6,0x00,0x10,0x08,0x01,0xff, | ||
| 2944 | 0xe6,0x8b,0x93,0x00,0x01,0xff,0xe7,0xb3,0x96,0x00,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2945 | 0xe5,0xae,0x85,0x00,0x01,0xff,0xe6,0xb4,0x9e,0x00,0x10,0x08,0x01,0xff,0xe6,0x9a, | ||
| 2946 | 0xb4,0x00,0x01,0xff,0xe8,0xbc,0xbb,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x01,0xff, | ||
| 2947 | 0xe8,0xa1,0x8c,0x00,0x01,0xff,0xe9,0x99,0x8d,0x00,0x10,0x08,0x01,0xff,0xe8,0xa6, | ||
| 2948 | 0x8b,0x00,0x01,0xff,0xe5,0xbb,0x93,0x00,0x91,0x10,0x10,0x08,0x01,0xff,0xe5,0x85, | ||
| 2949 | 0x80,0x00,0x01,0xff,0xe5,0x97,0x80,0x00,0x01,0x00,0xd3,0x34,0xd2,0x18,0xd1,0x0c, | ||
| 2950 | 0x10,0x08,0x01,0xff,0xe5,0xa1,0x9a,0x00,0x01,0x00,0x10,0x08,0x01,0xff,0xe6,0x99, | ||
| 2951 | 0xb4,0x00,0x01,0x00,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0xe5,0x87,0x9e,0x00, | ||
| 2952 | 0x10,0x08,0x01,0xff,0xe7,0x8c,0xaa,0x00,0x01,0xff,0xe7,0x9b,0x8a,0x00,0xd2,0x20, | ||
| 2953 | 0xd1,0x10,0x10,0x08,0x01,0xff,0xe7,0xa4,0xbc,0x00,0x01,0xff,0xe7,0xa5,0x9e,0x00, | ||
| 2954 | 0x10,0x08,0x01,0xff,0xe7,0xa5,0xa5,0x00,0x01,0xff,0xe7,0xa6,0x8f,0x00,0xd1,0x10, | ||
| 2955 | 0x10,0x08,0x01,0xff,0xe9,0x9d,0x96,0x00,0x01,0xff,0xe7,0xb2,0xbe,0x00,0x10,0x08, | ||
| 2956 | 0x01,0xff,0xe7,0xbe,0xbd,0x00,0x01,0x00,0xd4,0x64,0xd3,0x30,0xd2,0x18,0xd1,0x0c, | ||
| 2957 | 0x10,0x08,0x01,0xff,0xe8,0x98,0x92,0x00,0x01,0x00,0x10,0x08,0x01,0xff,0xe8,0xab, | ||
| 2958 | 0xb8,0x00,0x01,0x00,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0xe9,0x80,0xb8,0x00, | ||
| 2959 | 0x10,0x08,0x01,0xff,0xe9,0x83,0xbd,0x00,0x01,0x00,0xd2,0x14,0x51,0x04,0x01,0x00, | ||
| 2960 | 0x10,0x08,0x01,0xff,0xe9,0xa3,0xaf,0x00,0x01,0xff,0xe9,0xa3,0xbc,0x00,0xd1,0x10, | ||
| 2961 | 0x10,0x08,0x01,0xff,0xe9,0xa4,0xa8,0x00,0x01,0xff,0xe9,0xb6,0xb4,0x00,0x10,0x08, | ||
| 2962 | 0x0d,0xff,0xe9,0x83,0x9e,0x00,0x0d,0xff,0xe9,0x9a,0xb7,0x00,0xd3,0x40,0xd2,0x20, | ||
| 2963 | 0xd1,0x10,0x10,0x08,0x06,0xff,0xe4,0xbe,0xae,0x00,0x06,0xff,0xe5,0x83,0xa7,0x00, | ||
| 2964 | 0x10,0x08,0x06,0xff,0xe5,0x85,0x8d,0x00,0x06,0xff,0xe5,0x8b,0x89,0x00,0xd1,0x10, | ||
| 2965 | 0x10,0x08,0x06,0xff,0xe5,0x8b,0xa4,0x00,0x06,0xff,0xe5,0x8d,0x91,0x00,0x10,0x08, | ||
| 2966 | 0x06,0xff,0xe5,0x96,0x9d,0x00,0x06,0xff,0xe5,0x98,0x86,0x00,0xd2,0x20,0xd1,0x10, | ||
| 2967 | 0x10,0x08,0x06,0xff,0xe5,0x99,0xa8,0x00,0x06,0xff,0xe5,0xa1,0x80,0x00,0x10,0x08, | ||
| 2968 | 0x06,0xff,0xe5,0xa2,0xa8,0x00,0x06,0xff,0xe5,0xb1,0xa4,0x00,0xd1,0x10,0x10,0x08, | ||
| 2969 | 0x06,0xff,0xe5,0xb1,0xae,0x00,0x06,0xff,0xe6,0x82,0x94,0x00,0x10,0x08,0x06,0xff, | ||
| 2970 | 0xe6,0x85,0xa8,0x00,0x06,0xff,0xe6,0x86,0x8e,0x00,0xcf,0x86,0xe5,0x01,0x01,0xd4, | ||
| 2971 | 0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe6,0x87,0xb2,0x00,0x06, | ||
| 2972 | 0xff,0xe6,0x95,0x8f,0x00,0x10,0x08,0x06,0xff,0xe6,0x97,0xa2,0x00,0x06,0xff,0xe6, | ||
| 2973 | 0x9a,0x91,0x00,0xd1,0x10,0x10,0x08,0x06,0xff,0xe6,0xa2,0x85,0x00,0x06,0xff,0xe6, | ||
| 2974 | 0xb5,0xb7,0x00,0x10,0x08,0x06,0xff,0xe6,0xb8,0x9a,0x00,0x06,0xff,0xe6,0xbc,0xa2, | ||
| 2975 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe7,0x85,0xae,0x00,0x06,0xff,0xe7, | ||
| 2976 | 0x88,0xab,0x00,0x10,0x08,0x06,0xff,0xe7,0x90,0xa2,0x00,0x06,0xff,0xe7,0xa2,0x91, | ||
| 2977 | 0x00,0xd1,0x10,0x10,0x08,0x06,0xff,0xe7,0xa4,0xbe,0x00,0x06,0xff,0xe7,0xa5,0x89, | ||
| 2978 | 0x00,0x10,0x08,0x06,0xff,0xe7,0xa5,0x88,0x00,0x06,0xff,0xe7,0xa5,0x90,0x00,0xd3, | ||
| 2979 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe7,0xa5,0x96,0x00,0x06,0xff,0xe7, | ||
| 2980 | 0xa5,0x9d,0x00,0x10,0x08,0x06,0xff,0xe7,0xa6,0x8d,0x00,0x06,0xff,0xe7,0xa6,0x8e, | ||
| 2981 | 0x00,0xd1,0x10,0x10,0x08,0x06,0xff,0xe7,0xa9,0x80,0x00,0x06,0xff,0xe7,0xaa,0x81, | ||
| 2982 | 0x00,0x10,0x08,0x06,0xff,0xe7,0xaf,0x80,0x00,0x06,0xff,0xe7,0xb7,0xb4,0x00,0xd2, | ||
| 2983 | 0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe7,0xb8,0x89,0x00,0x06,0xff,0xe7,0xb9,0x81, | ||
| 2984 | 0x00,0x10,0x08,0x06,0xff,0xe7,0xbd,0xb2,0x00,0x06,0xff,0xe8,0x80,0x85,0x00,0xd1, | ||
| 2985 | 0x10,0x10,0x08,0x06,0xff,0xe8,0x87,0xad,0x00,0x06,0xff,0xe8,0x89,0xb9,0x00,0x10, | ||
| 2986 | 0x08,0x06,0xff,0xe8,0x89,0xb9,0x00,0x06,0xff,0xe8,0x91,0x97,0x00,0xd4,0x75,0xd3, | ||
| 2987 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe8,0xa4,0x90,0x00,0x06,0xff,0xe8, | ||
| 2988 | 0xa6,0x96,0x00,0x10,0x08,0x06,0xff,0xe8,0xac,0x81,0x00,0x06,0xff,0xe8,0xac,0xb9, | ||
| 2989 | 0x00,0xd1,0x10,0x10,0x08,0x06,0xff,0xe8,0xb3,0x93,0x00,0x06,0xff,0xe8,0xb4,0x88, | ||
| 2990 | 0x00,0x10,0x08,0x06,0xff,0xe8,0xbe,0xb6,0x00,0x06,0xff,0xe9,0x80,0xb8,0x00,0xd2, | ||
| 2991 | 0x20,0xd1,0x10,0x10,0x08,0x06,0xff,0xe9,0x9b,0xa3,0x00,0x06,0xff,0xe9,0x9f,0xbf, | ||
| 2992 | 0x00,0x10,0x08,0x06,0xff,0xe9,0xa0,0xbb,0x00,0x0b,0xff,0xe6,0x81,0xb5,0x00,0x91, | ||
| 2993 | 0x11,0x10,0x09,0x0b,0xff,0xf0,0xa4,0x8b,0xae,0x00,0x0b,0xff,0xe8,0x88,0x98,0x00, | ||
| 2994 | 0x00,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff,0xe4,0xb8,0xa6,0x00, | ||
| 2995 | 0x08,0xff,0xe5,0x86,0xb5,0x00,0x10,0x08,0x08,0xff,0xe5,0x85,0xa8,0x00,0x08,0xff, | ||
| 2996 | 0xe4,0xbe,0x80,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe5,0x85,0x85,0x00,0x08,0xff, | ||
| 2997 | 0xe5,0x86,0x80,0x00,0x10,0x08,0x08,0xff,0xe5,0x8b,0x87,0x00,0x08,0xff,0xe5,0x8b, | ||
| 2998 | 0xba,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff,0xe5,0x96,0x9d,0x00,0x08,0xff, | ||
| 2999 | 0xe5,0x95,0x95,0x00,0x10,0x08,0x08,0xff,0xe5,0x96,0x99,0x00,0x08,0xff,0xe5,0x97, | ||
| 3000 | 0xa2,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe5,0xa1,0x9a,0x00,0x08,0xff,0xe5,0xa2, | ||
| 3001 | 0xb3,0x00,0x10,0x08,0x08,0xff,0xe5,0xa5,0x84,0x00,0x08,0xff,0xe5,0xa5,0x94,0x00, | ||
| 3002 | 0xe0,0x04,0x02,0xcf,0x86,0xe5,0x01,0x01,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 3003 | 0x10,0x08,0x08,0xff,0xe5,0xa9,0xa2,0x00,0x08,0xff,0xe5,0xac,0xa8,0x00,0x10,0x08, | ||
| 3004 | 0x08,0xff,0xe5,0xbb,0x92,0x00,0x08,0xff,0xe5,0xbb,0x99,0x00,0xd1,0x10,0x10,0x08, | ||
| 3005 | 0x08,0xff,0xe5,0xbd,0xa9,0x00,0x08,0xff,0xe5,0xbe,0xad,0x00,0x10,0x08,0x08,0xff, | ||
| 3006 | 0xe6,0x83,0x98,0x00,0x08,0xff,0xe6,0x85,0x8e,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 3007 | 0x08,0xff,0xe6,0x84,0x88,0x00,0x08,0xff,0xe6,0x86,0x8e,0x00,0x10,0x08,0x08,0xff, | ||
| 3008 | 0xe6,0x85,0xa0,0x00,0x08,0xff,0xe6,0x87,0xb2,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3009 | 0xe6,0x88,0xb4,0x00,0x08,0xff,0xe6,0x8f,0x84,0x00,0x10,0x08,0x08,0xff,0xe6,0x90, | ||
| 3010 | 0x9c,0x00,0x08,0xff,0xe6,0x91,0x92,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 3011 | 0x08,0xff,0xe6,0x95,0x96,0x00,0x08,0xff,0xe6,0x99,0xb4,0x00,0x10,0x08,0x08,0xff, | ||
| 3012 | 0xe6,0x9c,0x97,0x00,0x08,0xff,0xe6,0x9c,0x9b,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3013 | 0xe6,0x9d,0x96,0x00,0x08,0xff,0xe6,0xad,0xb9,0x00,0x10,0x08,0x08,0xff,0xe6,0xae, | ||
| 3014 | 0xba,0x00,0x08,0xff,0xe6,0xb5,0x81,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3015 | 0xe6,0xbb,0x9b,0x00,0x08,0xff,0xe6,0xbb,0x8b,0x00,0x10,0x08,0x08,0xff,0xe6,0xbc, | ||
| 3016 | 0xa2,0x00,0x08,0xff,0xe7,0x80,0x9e,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe7,0x85, | ||
| 3017 | 0xae,0x00,0x08,0xff,0xe7,0x9e,0xa7,0x00,0x10,0x08,0x08,0xff,0xe7,0x88,0xb5,0x00, | ||
| 3018 | 0x08,0xff,0xe7,0x8a,0xaf,0x00,0xd4,0x80,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 3019 | 0x08,0xff,0xe7,0x8c,0xaa,0x00,0x08,0xff,0xe7,0x91,0xb1,0x00,0x10,0x08,0x08,0xff, | ||
| 3020 | 0xe7,0x94,0x86,0x00,0x08,0xff,0xe7,0x94,0xbb,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3021 | 0xe7,0x98,0x9d,0x00,0x08,0xff,0xe7,0x98,0x9f,0x00,0x10,0x08,0x08,0xff,0xe7,0x9b, | ||
| 3022 | 0x8a,0x00,0x08,0xff,0xe7,0x9b,0x9b,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3023 | 0xe7,0x9b,0xb4,0x00,0x08,0xff,0xe7,0x9d,0x8a,0x00,0x10,0x08,0x08,0xff,0xe7,0x9d, | ||
| 3024 | 0x80,0x00,0x08,0xff,0xe7,0xa3,0x8c,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe7,0xaa, | ||
| 3025 | 0xb1,0x00,0x08,0xff,0xe7,0xaf,0x80,0x00,0x10,0x08,0x08,0xff,0xe7,0xb1,0xbb,0x00, | ||
| 3026 | 0x08,0xff,0xe7,0xb5,0x9b,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3027 | 0xe7,0xb7,0xb4,0x00,0x08,0xff,0xe7,0xbc,0xbe,0x00,0x10,0x08,0x08,0xff,0xe8,0x80, | ||
| 3028 | 0x85,0x00,0x08,0xff,0xe8,0x8d,0x92,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe8,0x8f, | ||
| 3029 | 0xaf,0x00,0x08,0xff,0xe8,0x9d,0xb9,0x00,0x10,0x08,0x08,0xff,0xe8,0xa5,0x81,0x00, | ||
| 3030 | 0x08,0xff,0xe8,0xa6,0x86,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x08,0xff,0xe8,0xa6, | ||
| 3031 | 0x96,0x00,0x08,0xff,0xe8,0xaa,0xbf,0x00,0x10,0x08,0x08,0xff,0xe8,0xab,0xb8,0x00, | ||
| 3032 | 0x08,0xff,0xe8,0xab,0x8b,0x00,0xd1,0x10,0x10,0x08,0x08,0xff,0xe8,0xac,0x81,0x00, | ||
| 3033 | 0x08,0xff,0xe8,0xab,0xbe,0x00,0x10,0x08,0x08,0xff,0xe8,0xab,0xad,0x00,0x08,0xff, | ||
| 3034 | 0xe8,0xac,0xb9,0x00,0xcf,0x86,0x95,0xde,0xd4,0x81,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 3035 | 0x10,0x08,0x08,0xff,0xe8,0xae,0x8a,0x00,0x08,0xff,0xe8,0xb4,0x88,0x00,0x10,0x08, | ||
| 3036 | 0x08,0xff,0xe8,0xbc,0xb8,0x00,0x08,0xff,0xe9,0x81,0xb2,0x00,0xd1,0x10,0x10,0x08, | ||
| 3037 | 0x08,0xff,0xe9,0x86,0x99,0x00,0x08,0xff,0xe9,0x89,0xb6,0x00,0x10,0x08,0x08,0xff, | ||
| 3038 | 0xe9,0x99,0xbc,0x00,0x08,0xff,0xe9,0x9b,0xa3,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 3039 | 0x08,0xff,0xe9,0x9d,0x96,0x00,0x08,0xff,0xe9,0x9f,0x9b,0x00,0x10,0x08,0x08,0xff, | ||
| 3040 | 0xe9,0x9f,0xbf,0x00,0x08,0xff,0xe9,0xa0,0x8b,0x00,0xd1,0x10,0x10,0x08,0x08,0xff, | ||
| 3041 | 0xe9,0xa0,0xbb,0x00,0x08,0xff,0xe9,0xac,0x92,0x00,0x10,0x08,0x08,0xff,0xe9,0xbe, | ||
| 3042 | 0x9c,0x00,0x08,0xff,0xf0,0xa2,0xa1,0x8a,0x00,0xd3,0x45,0xd2,0x22,0xd1,0x12,0x10, | ||
| 3043 | 0x09,0x08,0xff,0xf0,0xa2,0xa1,0x84,0x00,0x08,0xff,0xf0,0xa3,0x8f,0x95,0x00,0x10, | ||
| 3044 | 0x08,0x08,0xff,0xe3,0xae,0x9d,0x00,0x08,0xff,0xe4,0x80,0x98,0x00,0xd1,0x11,0x10, | ||
| 3045 | 0x08,0x08,0xff,0xe4,0x80,0xb9,0x00,0x08,0xff,0xf0,0xa5,0x89,0x89,0x00,0x10,0x09, | ||
| 3046 | 0x08,0xff,0xf0,0xa5,0xb3,0x90,0x00,0x08,0xff,0xf0,0xa7,0xbb,0x93,0x00,0x92,0x14, | ||
| 3047 | 0x91,0x10,0x10,0x08,0x08,0xff,0xe9,0xbd,0x83,0x00,0x08,0xff,0xe9,0xbe,0x8e,0x00, | ||
| 3048 | 0x00,0x00,0x00,0x00,0x00,0x00,0xe1,0x94,0x01,0xe0,0x08,0x01,0xcf,0x86,0xd5,0x42, | ||
| 3049 | 0xd4,0x14,0x93,0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00, | ||
| 3050 | 0x00,0x00,0x00,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00, | ||
| 3051 | 0x01,0x00,0x01,0x00,0x52,0x04,0x00,0x00,0xd1,0x0d,0x10,0x04,0x00,0x00,0x04,0xff, | ||
| 3052 | 0xd7,0x99,0xd6,0xb4,0x00,0x10,0x04,0x01,0x1a,0x01,0xff,0xd7,0xb2,0xd6,0xb7,0x00, | ||
| 3053 | 0xd4,0x42,0x53,0x04,0x01,0x00,0xd2,0x16,0x51,0x04,0x01,0x00,0x10,0x09,0x01,0xff, | ||
| 3054 | 0xd7,0xa9,0xd7,0x81,0x00,0x01,0xff,0xd7,0xa9,0xd7,0x82,0x00,0xd1,0x16,0x10,0x0b, | ||
| 3055 | 0x01,0xff,0xd7,0xa9,0xd6,0xbc,0xd7,0x81,0x00,0x01,0xff,0xd7,0xa9,0xd6,0xbc,0xd7, | ||
| 3056 | 0x82,0x00,0x10,0x09,0x01,0xff,0xd7,0x90,0xd6,0xb7,0x00,0x01,0xff,0xd7,0x90,0xd6, | ||
| 3057 | 0xb8,0x00,0xd3,0x43,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd7,0x90,0xd6,0xbc, | ||
| 3058 | 0x00,0x01,0xff,0xd7,0x91,0xd6,0xbc,0x00,0x10,0x09,0x01,0xff,0xd7,0x92,0xd6,0xbc, | ||
| 3059 | 0x00,0x01,0xff,0xd7,0x93,0xd6,0xbc,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd7,0x94, | ||
| 3060 | 0xd6,0xbc,0x00,0x01,0xff,0xd7,0x95,0xd6,0xbc,0x00,0x10,0x09,0x01,0xff,0xd7,0x96, | ||
| 3061 | 0xd6,0xbc,0x00,0x00,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd7,0x98,0xd6, | ||
| 3062 | 0xbc,0x00,0x01,0xff,0xd7,0x99,0xd6,0xbc,0x00,0x10,0x09,0x01,0xff,0xd7,0x9a,0xd6, | ||
| 3063 | 0xbc,0x00,0x01,0xff,0xd7,0x9b,0xd6,0xbc,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xd7, | ||
| 3064 | 0x9c,0xd6,0xbc,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xd7,0x9e,0xd6,0xbc,0x00,0x00, | ||
| 3065 | 0x00,0xcf,0x86,0x95,0x85,0x94,0x81,0xd3,0x3e,0xd2,0x1f,0xd1,0x12,0x10,0x09,0x01, | ||
| 3066 | 0xff,0xd7,0xa0,0xd6,0xbc,0x00,0x01,0xff,0xd7,0xa1,0xd6,0xbc,0x00,0x10,0x04,0x00, | ||
| 3067 | 0x00,0x01,0xff,0xd7,0xa3,0xd6,0xbc,0x00,0xd1,0x0d,0x10,0x09,0x01,0xff,0xd7,0xa4, | ||
| 3068 | 0xd6,0xbc,0x00,0x00,0x00,0x10,0x09,0x01,0xff,0xd7,0xa6,0xd6,0xbc,0x00,0x01,0xff, | ||
| 3069 | 0xd7,0xa7,0xd6,0xbc,0x00,0xd2,0x24,0xd1,0x12,0x10,0x09,0x01,0xff,0xd7,0xa8,0xd6, | ||
| 3070 | 0xbc,0x00,0x01,0xff,0xd7,0xa9,0xd6,0xbc,0x00,0x10,0x09,0x01,0xff,0xd7,0xaa,0xd6, | ||
| 3071 | 0xbc,0x00,0x01,0xff,0xd7,0x95,0xd6,0xb9,0x00,0xd1,0x12,0x10,0x09,0x01,0xff,0xd7, | ||
| 3072 | 0x91,0xd6,0xbf,0x00,0x01,0xff,0xd7,0x9b,0xd6,0xbf,0x00,0x10,0x09,0x01,0xff,0xd7, | ||
| 3073 | 0xa4,0xd6,0xbf,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd0,0x1a,0xcf,0x86,0x55,0x04, | ||
| 3074 | 0x01,0x00,0x54,0x04,0x01,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x01,0x00,0x0c,0x00, | ||
| 3075 | 0x0c,0x00,0x0c,0x00,0xcf,0x86,0x95,0x24,0xd4,0x10,0x93,0x0c,0x92,0x08,0x11,0x04, | ||
| 3076 | 0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x00,0x00, | ||
| 3077 | 0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xd3,0x5a,0xd2,0x06, | ||
| 3078 | 0xcf,0x06,0x01,0x00,0xd1,0x14,0xd0,0x06,0xcf,0x06,0x01,0x00,0xcf,0x86,0x95,0x08, | ||
| 3079 | 0x14,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd0,0x1a,0xcf,0x86,0x95,0x14,0x54,0x04, | ||
| 3080 | 0x01,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 3081 | 0x01,0x00,0xcf,0x86,0xd5,0x0c,0x94,0x08,0x13,0x04,0x01,0x00,0x00,0x00,0x05,0x00, | ||
| 3082 | 0x54,0x04,0x05,0x00,0x53,0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x91,0x08,0x10,0x04, | ||
| 3083 | 0x06,0x00,0x07,0x00,0x00,0x00,0xd2,0xce,0xd1,0xa5,0xd0,0x37,0xcf,0x86,0xd5,0x15, | ||
| 3084 | 0x54,0x05,0x06,0xff,0x00,0x53,0x04,0x08,0x00,0x92,0x08,0x11,0x04,0x08,0x00,0x00, | ||
| 3085 | 0x00,0x00,0x00,0x94,0x1c,0xd3,0x10,0x52,0x04,0x01,0xe6,0x51,0x04,0x0a,0xe6,0x10, | ||
| 3086 | 0x04,0x0a,0xe6,0x10,0xdc,0x52,0x04,0x10,0xdc,0x11,0x04,0x10,0xdc,0x11,0xe6,0x01, | ||
| 3087 | 0x00,0xcf,0x86,0xd5,0x38,0xd4,0x24,0xd3,0x14,0x52,0x04,0x01,0x00,0xd1,0x08,0x10, | ||
| 3088 | 0x04,0x01,0x00,0x06,0x00,0x10,0x04,0x06,0x00,0x07,0x00,0x92,0x0c,0x91,0x08,0x10, | ||
| 3089 | 0x04,0x07,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x93,0x10,0x92,0x0c,0x51,0x04,0x01, | ||
| 3090 | 0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd4,0x18,0xd3,0x10,0x52, | ||
| 3091 | 0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x12,0x04,0x01, | ||
| 3092 | 0x00,0x00,0x00,0x93,0x18,0xd2,0x0c,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x06, | ||
| 3093 | 0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xd0,0x06,0xcf, | ||
| 3094 | 0x06,0x01,0x00,0xcf,0x86,0x55,0x04,0x01,0x00,0x54,0x04,0x01,0x00,0x53,0x04,0x01, | ||
| 3095 | 0x00,0x52,0x04,0x01,0x00,0xd1,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x10,0x04,0x00, | ||
| 3096 | 0x00,0x01,0xff,0x00,0xd1,0x50,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x94,0x14,0x93,0x10, | ||
| 3097 | 0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 3098 | 0x01,0x00,0x01,0x00,0xcf,0x86,0xd5,0x18,0x54,0x04,0x01,0x00,0x53,0x04,0x01,0x00, | ||
| 3099 | 0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x06,0x00,0x94,0x14, | ||
| 3100 | 0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x06,0x00,0x01,0x00,0x01,0x00,0x01,0x00, | ||
| 3101 | 0x01,0x00,0x01,0x00,0xd0,0x2f,0xcf,0x86,0x55,0x04,0x01,0x00,0xd4,0x15,0x93,0x11, | ||
| 3102 | 0x92,0x0d,0x91,0x09,0x10,0x05,0x01,0xff,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01, | ||
| 3103 | 0x00,0x53,0x04,0x01,0x00,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01, | ||
| 3104 | 0x00,0x00,0x00,0xcf,0x86,0xd5,0x38,0xd4,0x18,0xd3,0x0c,0x92,0x08,0x11,0x04,0x00, | ||
| 3105 | 0x00,0x01,0x00,0x01,0x00,0x92,0x08,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd3, | ||
| 3106 | 0x0c,0x92,0x08,0x11,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0xd2,0x08,0x11,0x04,0x00, | ||
| 3107 | 0x00,0x01,0x00,0x91,0x08,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0xd4,0x20,0xd3, | ||
| 3108 | 0x10,0x52,0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x52, | ||
| 3109 | 0x04,0x01,0x00,0x51,0x04,0x01,0x00,0x10,0x04,0x01,0x00,0x00,0x00,0x53,0x05,0x00, | ||
| 3110 | 0xff,0x00,0xd2,0x0d,0x91,0x09,0x10,0x05,0x00,0xff,0x00,0x04,0x00,0x04,0x00,0x91, | ||
| 3111 | 0x08,0x10,0x04,0x03,0x00,0x01,0x00,0x01,0x00,0x83,0xe2,0x46,0x3e,0xe1,0x1f,0x3b, | ||
| 3112 | 0xe0,0x9c,0x39,0xcf,0x86,0xe5,0x40,0x26,0xc4,0xe3,0x16,0x14,0xe2,0xef,0x11,0xe1, | ||
| 3113 | 0xd0,0x10,0xe0,0x60,0x07,0xcf,0x86,0xe5,0x53,0x03,0xe4,0x4c,0x02,0xe3,0x3d,0x01, | ||
| 3114 | 0xd2,0x94,0xd1,0x70,0xd0,0x4a,0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x07,0x00, | ||
| 3115 | 0x52,0x04,0x07,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x07,0x00,0x07,0x00,0x07,0x00, | ||
| 3116 | 0xd4,0x14,0x93,0x10,0x52,0x04,0x07,0x00,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00, | ||
| 3117 | 0x00,0x00,0x07,0x00,0x53,0x04,0x07,0x00,0xd2,0x0c,0x51,0x04,0x07,0x00,0x10,0x04, | ||
| 3118 | 0x07,0x00,0x00,0x00,0x51,0x04,0x07,0x00,0x10,0x04,0x00,0x00,0x07,0x00,0xcf,0x86, | ||
| 3119 | 0x95,0x20,0xd4,0x10,0x53,0x04,0x07,0x00,0x52,0x04,0x07,0x00,0x11,0x04,0x07,0x00, | ||
| 3120 | 0x00,0x00,0x53,0x04,0x07,0x00,0x52,0x04,0x07,0x00,0x11,0x04,0x07,0x00,0x00,0x00, | ||
| 3121 | 0x00,0x00,0xd0,0x06,0xcf,0x06,0x07,0x00,0xcf,0x86,0x55,0x04,0x07,0x00,0x54,0x04, | ||
| 3122 | 0x07,0x00,0x53,0x04,0x07,0x00,0x92,0x0c,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00, | ||
| 3123 | 0x00,0x00,0x00,0x00,0xd1,0x40,0xd0,0x3a,0xcf,0x86,0xd5,0x20,0x94,0x1c,0x93,0x18, | ||
| 3124 | 0xd2,0x0c,0x51,0x04,0x07,0x00,0x10,0x04,0x07,0x00,0x00,0x00,0x51,0x04,0x00,0x00, | ||
| 3125 | 0x10,0x04,0x00,0x00,0x07,0x00,0x07,0x00,0x07,0x00,0x54,0x04,0x07,0x00,0x93,0x10, | ||
| 3126 | 0x52,0x04,0x07,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x07,0x00,0x07,0x00, | ||
| 3127 | 0xcf,0x06,0x08,0x00,0xd0,0x46,0xcf,0x86,0xd5,0x2c,0xd4,0x20,0x53,0x04,0x08,0x00, | ||
| 3128 | 0xd2,0x0c,0x51,0x04,0x08,0x00,0x10,0x04,0x08,0x00,0x10,0x00,0xd1,0x08,0x10,0x04, | ||
| 3129 | 0x10,0x00,0x12,0x00,0x10,0x04,0x12,0x00,0x00,0x00,0x53,0x04,0x0a,0x00,0x12,0x04, | ||
| 3130 | 0x0a,0x00,0x00,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x10,0x00, | ||
| 3131 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x08,0x14,0x04, | ||
| 3132 | 0x00,0x00,0x0a,0x00,0x54,0x04,0x0a,0x00,0x53,0x04,0x0a,0x00,0x52,0x04,0x0a,0x00, | ||
| 3133 | 0x91,0x08,0x10,0x04,0x0a,0x00,0x0a,0xdc,0x00,0x00,0xd2,0x5e,0xd1,0x06,0xcf,0x06, | ||
| 3134 | 0x00,0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04,0x0a,0x00,0x53,0x04,0x0a,0x00, | ||
| 3135 | 0x52,0x04,0x0a,0x00,0x91,0x08,0x10,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, | ||
| 3136 | 0xcf,0x86,0xd5,0x18,0x54,0x04,0x0a,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 3137 | 0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x14,0x93,0x10,0x92,0x0c, | ||
| 3138 | 0x91,0x08,0x10,0x04,0x10,0xdc,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x53,0x04, | ||
| 3139 | 0x10,0x00,0x12,0x04,0x10,0x00,0x00,0x00,0xd1,0x70,0xd0,0x36,0xcf,0x86,0xd5,0x18, | ||
| 3140 | 0x54,0x04,0x05,0x00,0x53,0x04,0x05,0x00,0x52,0x04,0x05,0x00,0x51,0x04,0x05,0x00, | ||
| 3141 | 0x10,0x04,0x05,0x00,0x10,0x00,0x94,0x18,0xd3,0x08,0x12,0x04,0x05,0x00,0x00,0x00, | ||
| 3142 | 0x52,0x04,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x13,0x00,0x13,0x00,0x05,0x00, | ||
| 3143 | 0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x05,0x00,0x92,0x0c,0x51,0x04,0x05,0x00, | ||
| 3144 | 0x10,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x54,0x04,0x10,0x00,0xd3,0x0c, | ||
| 3145 | 0x52,0x04,0x10,0x00,0x11,0x04,0x10,0x00,0x10,0xe6,0x92,0x0c,0x51,0x04,0x10,0xe6, | ||
| 3146 | 0x10,0x04,0x10,0xe6,0x00,0x00,0x00,0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04, | ||
| 3147 | 0x07,0x00,0x53,0x04,0x07,0x00,0x52,0x04,0x07,0x00,0x51,0x04,0x07,0x00,0x10,0x04, | ||
| 3148 | 0x00,0x00,0x07,0x00,0x08,0x00,0xcf,0x86,0x95,0x1c,0xd4,0x0c,0x93,0x08,0x12,0x04, | ||
| 3149 | 0x08,0x00,0x00,0x00,0x08,0x00,0x93,0x0c,0x52,0x04,0x08,0x00,0x11,0x04,0x08,0x00, | ||
| 3150 | 0x00,0x00,0x00,0x00,0x00,0x00,0xd3,0xba,0xd2,0x80,0xd1,0x34,0xd0,0x1a,0xcf,0x86, | ||
| 3151 | 0x55,0x04,0x05,0x00,0x94,0x10,0x93,0x0c,0x52,0x04,0x05,0x00,0x11,0x04,0x05,0x00, | ||
| 3152 | 0x07,0x00,0x05,0x00,0x05,0x00,0xcf,0x86,0x95,0x14,0x94,0x10,0x53,0x04,0x05,0x00, | ||
| 3153 | 0x52,0x04,0x05,0x00,0x11,0x04,0x05,0x00,0x07,0x00,0x07,0x00,0x07,0x00,0xd0,0x2a, | ||
| 3154 | 0xcf,0x86,0xd5,0x14,0x54,0x04,0x07,0x00,0x53,0x04,0x07,0x00,0x52,0x04,0x07,0x00, | ||
| 3155 | 0x11,0x04,0x07,0x00,0x00,0x00,0x94,0x10,0x53,0x04,0x07,0x00,0x92,0x08,0x11,0x04, | ||
| 3156 | 0x07,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0xcf,0x86,0xd5,0x10,0x54,0x04,0x12,0x00, | ||
| 3157 | 0x93,0x08,0x12,0x04,0x12,0x00,0x00,0x00,0x12,0x00,0x54,0x04,0x12,0x00,0x53,0x04, | ||
| 3158 | 0x12,0x00,0x12,0x04,0x12,0x00,0x00,0x00,0xd1,0x34,0xd0,0x12,0xcf,0x86,0x55,0x04, | ||
| 3159 | 0x10,0x00,0x94,0x08,0x13,0x04,0x10,0x00,0x00,0x00,0x10,0x00,0xcf,0x86,0x55,0x04, | ||
| 3160 | 0x10,0x00,0x94,0x18,0xd3,0x08,0x12,0x04,0x10,0x00,0x00,0x00,0x52,0x04,0x00,0x00, | ||
| 3161 | 0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x00,0x00,0xcf,0x06,0x00,0x00, | ||
| 3162 | 0xd2,0x06,0xcf,0x06,0x10,0x00,0xd1,0x40,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x10,0x00, | ||
| 3163 | 0x54,0x04,0x10,0x00,0x93,0x10,0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04, | ||
| 3164 | 0x10,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x14,0x54,0x04,0x10,0x00,0x93,0x0c, | ||
| 3165 | 0x52,0x04,0x10,0x00,0x11,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x94,0x08,0x13,0x04, | ||
| 3166 | 0x10,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xe4,0xce,0x02,0xe3,0x45,0x01, | ||
| 3167 | 0xd2,0xd0,0xd1,0x70,0xd0,0x52,0xcf,0x86,0xd5,0x20,0x94,0x1c,0xd3,0x0c,0x52,0x04, | ||
| 3168 | 0x07,0x00,0x11,0x04,0x07,0x00,0x00,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x07,0x00, | ||
| 3169 | 0x00,0x00,0x07,0x00,0x07,0x00,0x07,0x00,0x54,0x04,0x07,0x00,0xd3,0x10,0x52,0x04, | ||
| 3170 | 0x07,0x00,0x51,0x04,0x07,0x00,0x10,0x04,0x00,0x00,0x07,0x00,0xd2,0x0c,0x91,0x08, | ||
| 3171 | 0x10,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x07,0x00,0x00,0x00, | ||
| 3172 | 0x10,0x04,0x00,0x00,0x07,0x00,0xcf,0x86,0x95,0x18,0x54,0x04,0x0b,0x00,0x93,0x10, | ||
| 3173 | 0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x00,0x00,0x0b,0x00,0x0b,0x00, | ||
| 3174 | 0x10,0x00,0xd0,0x32,0xcf,0x86,0xd5,0x18,0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00, | ||
| 3175 | 0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x00,0x00,0x94,0x14, | ||
| 3176 | 0x93,0x10,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00, | ||
| 3177 | 0x10,0x00,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x11,0x00,0xd3,0x14, | ||
| 3178 | 0xd2,0x0c,0x51,0x04,0x11,0x00,0x10,0x04,0x11,0x00,0x00,0x00,0x11,0x04,0x11,0x00, | ||
| 3179 | 0x00,0x00,0x92,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x11,0x00,0x11,0x00, | ||
| 3180 | 0xd1,0x40,0xd0,0x3a,0xcf,0x86,0xd5,0x1c,0x54,0x04,0x09,0x00,0x53,0x04,0x09,0x00, | ||
| 3181 | 0xd2,0x08,0x11,0x04,0x09,0x00,0x0b,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00, | ||
| 3182 | 0x09,0x00,0x54,0x04,0x0a,0x00,0x53,0x04,0x0a,0x00,0xd2,0x08,0x11,0x04,0x0a,0x00, | ||
| 3183 | 0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0a,0x00,0xcf,0x06,0x00,0x00, | ||
| 3184 | 0xd0,0x1a,0xcf,0x86,0x55,0x04,0x0d,0x00,0x54,0x04,0x0d,0x00,0x53,0x04,0x0d,0x00, | ||
| 3185 | 0x52,0x04,0x00,0x00,0x11,0x04,0x11,0x00,0x0d,0x00,0xcf,0x86,0x95,0x14,0x54,0x04, | ||
| 3186 | 0x11,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x00,0x00,0x11,0x00,0x11,0x00,0x11,0x00, | ||
| 3187 | 0x11,0x00,0xd2,0xec,0xd1,0xa4,0xd0,0x76,0xcf,0x86,0xd5,0x48,0xd4,0x28,0xd3,0x14, | ||
| 3188 | 0x52,0x04,0x08,0x00,0xd1,0x08,0x10,0x04,0x00,0x00,0x08,0x00,0x10,0x04,0x08,0x00, | ||
| 3189 | 0x00,0x00,0x52,0x04,0x00,0x00,0xd1,0x08,0x10,0x04,0x08,0x00,0x08,0xdc,0x10,0x04, | ||
| 3190 | 0x08,0x00,0x08,0xe6,0xd3,0x10,0x52,0x04,0x08,0x00,0x91,0x08,0x10,0x04,0x00,0x00, | ||
| 3191 | 0x08,0x00,0x08,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x08,0x00,0x08,0x00, | ||
| 3192 | 0x08,0x00,0x54,0x04,0x08,0x00,0xd3,0x0c,0x52,0x04,0x08,0x00,0x11,0x04,0x14,0x00, | ||
| 3193 | 0x00,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x08,0xe6,0x08,0x01,0x10,0x04,0x08,0xdc, | ||
| 3194 | 0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x08,0x09,0xcf,0x86,0x95,0x28, | ||
| 3195 | 0xd4,0x14,0x53,0x04,0x08,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00, | ||
| 3196 | 0x00,0x00,0x00,0x00,0x53,0x04,0x08,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x08,0x00, | ||
| 3197 | 0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0xd0,0x0a,0xcf,0x86,0x15,0x04,0x10,0x00, | ||
| 3198 | 0x00,0x00,0xcf,0x86,0x55,0x04,0x10,0x00,0xd4,0x24,0xd3,0x14,0x52,0x04,0x10,0x00, | ||
| 3199 | 0xd1,0x08,0x10,0x04,0x10,0x00,0x10,0xe6,0x10,0x04,0x10,0xdc,0x00,0x00,0x92,0x0c, | ||
| 3200 | 0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x93,0x10,0x52,0x04, | ||
| 3201 | 0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd1,0x54, | ||
| 3202 | 0xd0,0x26,0xcf,0x86,0x55,0x04,0x0b,0x00,0x54,0x04,0x0b,0x00,0xd3,0x0c,0x52,0x04, | ||
| 3203 | 0x0b,0x00,0x11,0x04,0x0b,0x00,0x00,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00, | ||
| 3204 | 0x0b,0x00,0x0b,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x14,0x54,0x04,0x0b,0x00,0x93,0x0c, | ||
| 3205 | 0x52,0x04,0x0b,0x00,0x11,0x04,0x0b,0x00,0x00,0x00,0x0b,0x00,0x54,0x04,0x0b,0x00, | ||
| 3206 | 0x93,0x10,0x92,0x0c,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00,0x00,0x00,0x00,0x00, | ||
| 3207 | 0x0b,0x00,0xd0,0x42,0xcf,0x86,0xd5,0x28,0x54,0x04,0x10,0x00,0xd3,0x0c,0x92,0x08, | ||
| 3208 | 0x11,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00, | ||
| 3209 | 0x10,0x00,0x10,0x00,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x94,0x14, | ||
| 3210 | 0x53,0x04,0x00,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00, | ||
| 3211 | 0x10,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd3,0x96,0xd2,0x68,0xd1,0x24,0xd0,0x06, | ||
| 3212 | 0xcf,0x06,0x0b,0x00,0xcf,0x86,0x95,0x18,0x94,0x14,0x53,0x04,0x0b,0x00,0x92,0x0c, | ||
| 3213 | 0x91,0x08,0x10,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 3214 | 0xd0,0x1e,0xcf,0x86,0x55,0x04,0x11,0x00,0x54,0x04,0x11,0x00,0x93,0x10,0x92,0x0c, | ||
| 3215 | 0x51,0x04,0x11,0x00,0x10,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86, | ||
| 3216 | 0x55,0x04,0x11,0x00,0x54,0x04,0x11,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x11,0x00, | ||
| 3217 | 0x10,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0x92,0x08,0x11,0x04,0x00,0x00,0x11,0x00, | ||
| 3218 | 0x11,0x00,0xd1,0x28,0xd0,0x22,0xcf,0x86,0x55,0x04,0x14,0x00,0xd4,0x0c,0x93,0x08, | ||
| 3219 | 0x12,0x04,0x14,0x00,0x14,0xe6,0x00,0x00,0x53,0x04,0x14,0x00,0x92,0x08,0x11,0x04, | ||
| 3220 | 0x14,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xd2,0x2a, | ||
| 3221 | 0xd1,0x24,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04, | ||
| 3222 | 0x0b,0x00,0x53,0x04,0x0b,0x00,0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04, | ||
| 3223 | 0x0b,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1,0x58,0xd0,0x12,0xcf,0x86,0x55,0x04, | ||
| 3224 | 0x14,0x00,0x94,0x08,0x13,0x04,0x14,0x00,0x00,0x00,0x14,0x00,0xcf,0x86,0x95,0x40, | ||
| 3225 | 0xd4,0x24,0xd3,0x0c,0x52,0x04,0x14,0x00,0x11,0x04,0x14,0x00,0x14,0xdc,0xd2,0x0c, | ||
| 3226 | 0x51,0x04,0x14,0xe6,0x10,0x04,0x14,0xe6,0x14,0xdc,0x91,0x08,0x10,0x04,0x14,0xe6, | ||
| 3227 | 0x14,0xdc,0x14,0xdc,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0xdc,0x14,0x00, | ||
| 3228 | 0x14,0x00,0x14,0x00,0x92,0x08,0x11,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 3229 | 0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x15,0x00, | ||
| 3230 | 0x93,0x10,0x52,0x04,0x15,0x00,0x51,0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00,0x00, | ||
| 3231 | 0x00,0x00,0xcf,0x86,0xe5,0x0f,0x06,0xe4,0xf8,0x03,0xe3,0x02,0x02,0xd2,0xfb,0xd1, | ||
| 3232 | 0x4c,0xd0,0x06,0xcf,0x06,0x0c,0x00,0xcf,0x86,0xd5,0x2c,0xd4,0x1c,0xd3,0x10,0x52, | ||
| 3233 | 0x04,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x09,0x0c,0x00,0x52,0x04,0x0c, | ||
| 3234 | 0x00,0x11,0x04,0x0c,0x00,0x00,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x00,0x00,0x0c, | ||
| 3235 | 0x00,0x0c,0x00,0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00, | ||
| 3236 | 0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x09,0xd0,0x69,0xcf,0x86,0xd5, | ||
| 3237 | 0x32,0x54,0x04,0x0b,0x00,0x53,0x04,0x0b,0x00,0xd2,0x15,0x51,0x04,0x0b,0x00,0x10, | ||
| 3238 | 0x0d,0x0b,0xff,0xf0,0x91,0x82,0x99,0xf0,0x91,0x82,0xba,0x00,0x0b,0x00,0x91,0x11, | ||
| 3239 | 0x10,0x0d,0x0b,0xff,0xf0,0x91,0x82,0x9b,0xf0,0x91,0x82,0xba,0x00,0x0b,0x00,0x0b, | ||
| 3240 | 0x00,0xd4,0x1d,0x53,0x04,0x0b,0x00,0x92,0x15,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b, | ||
| 3241 | 0x00,0x0b,0xff,0xf0,0x91,0x82,0xa5,0xf0,0x91,0x82,0xba,0x00,0x0b,0x00,0x53,0x04, | ||
| 3242 | 0x0b,0x00,0x92,0x10,0xd1,0x08,0x10,0x04,0x0b,0x00,0x0b,0x09,0x10,0x04,0x0b,0x07, | ||
| 3243 | 0x0b,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x20,0x94,0x1c,0xd3,0x0c,0x92,0x08,0x11,0x04, | ||
| 3244 | 0x0b,0x00,0x00,0x00,0x00,0x00,0x52,0x04,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00, | ||
| 3245 | 0x14,0x00,0x00,0x00,0x0d,0x00,0xd4,0x14,0x53,0x04,0x0d,0x00,0x92,0x0c,0x91,0x08, | ||
| 3246 | 0x10,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x0d,0x00,0x92,0x08, | ||
| 3247 | 0x11,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0xd1,0x96,0xd0,0x5c,0xcf,0x86,0xd5,0x18, | ||
| 3248 | 0x94,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x0d,0xe6,0x10,0x04,0x0d,0xe6,0x0d,0x00, | ||
| 3249 | 0x0d,0x00,0x0d,0x00,0x0d,0x00,0xd4,0x26,0x53,0x04,0x0d,0x00,0x52,0x04,0x0d,0x00, | ||
| 3250 | 0x51,0x04,0x0d,0x00,0x10,0x0d,0x0d,0xff,0xf0,0x91,0x84,0xb1,0xf0,0x91,0x84,0xa7, | ||
| 3251 | 0x00,0x0d,0xff,0xf0,0x91,0x84,0xb2,0xf0,0x91,0x84,0xa7,0x00,0x93,0x18,0xd2,0x0c, | ||
| 3252 | 0x51,0x04,0x0d,0x00,0x10,0x04,0x0d,0x00,0x0d,0x09,0x91,0x08,0x10,0x04,0x0d,0x09, | ||
| 3253 | 0x00,0x00,0x0d,0x00,0x0d,0x00,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x52,0x04, | ||
| 3254 | 0x0d,0x00,0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x10,0x00, | ||
| 3255 | 0x54,0x04,0x10,0x00,0x93,0x18,0xd2,0x0c,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00, | ||
| 3256 | 0x10,0x07,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd0,0x06, | ||
| 3257 | 0xcf,0x06,0x0d,0x00,0xcf,0x86,0xd5,0x40,0xd4,0x2c,0xd3,0x10,0x92,0x0c,0x91,0x08, | ||
| 3258 | 0x10,0x04,0x0d,0x09,0x0d,0x00,0x0d,0x00,0x0d,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04, | ||
| 3259 | 0x0d,0x00,0x11,0x00,0x10,0x04,0x11,0x07,0x11,0x00,0x91,0x08,0x10,0x04,0x11,0x00, | ||
| 3260 | 0x10,0x00,0x00,0x00,0x53,0x04,0x0d,0x00,0x92,0x0c,0x51,0x04,0x0d,0x00,0x10,0x04, | ||
| 3261 | 0x10,0x00,0x11,0x00,0x11,0x00,0xd4,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 3262 | 0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x93,0x10,0x52,0x04,0x10,0x00, | ||
| 3263 | 0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd2,0xc8,0xd1,0x48, | ||
| 3264 | 0xd0,0x42,0xcf,0x86,0xd5,0x18,0x54,0x04,0x10,0x00,0x93,0x10,0x92,0x0c,0x51,0x04, | ||
| 3265 | 0x10,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x54,0x04,0x10,0x00, | ||
| 3266 | 0xd3,0x14,0x52,0x04,0x10,0x00,0xd1,0x08,0x10,0x04,0x10,0x00,0x10,0x09,0x10,0x04, | ||
| 3267 | 0x10,0x07,0x10,0x00,0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x12,0x00, | ||
| 3268 | 0x00,0x00,0xcf,0x06,0x00,0x00,0xd0,0x52,0xcf,0x86,0xd5,0x3c,0xd4,0x28,0xd3,0x10, | ||
| 3269 | 0x52,0x04,0x11,0x00,0x51,0x04,0x11,0x00,0x10,0x04,0x11,0x00,0x00,0x00,0xd2,0x0c, | ||
| 3270 | 0x91,0x08,0x10,0x04,0x11,0x00,0x00,0x00,0x11,0x00,0x51,0x04,0x11,0x00,0x10,0x04, | ||
| 3271 | 0x00,0x00,0x11,0x00,0x53,0x04,0x11,0x00,0x52,0x04,0x11,0x00,0x51,0x04,0x11,0x00, | ||
| 3272 | 0x10,0x04,0x00,0x00,0x11,0x00,0x94,0x10,0x53,0x04,0x11,0x00,0x92,0x08,0x11,0x04, | ||
| 3273 | 0x11,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xcf,0x86,0x55,0x04,0x10,0x00,0xd4,0x18, | ||
| 3274 | 0x53,0x04,0x10,0x00,0x92,0x10,0xd1,0x08,0x10,0x04,0x10,0x00,0x10,0x07,0x10,0x04, | ||
| 3275 | 0x10,0x09,0x00,0x00,0x00,0x00,0x53,0x04,0x10,0x00,0x92,0x08,0x11,0x04,0x10,0x00, | ||
| 3276 | 0x00,0x00,0x00,0x00,0xe1,0x27,0x01,0xd0,0x8a,0xcf,0x86,0xd5,0x44,0xd4,0x2c,0xd3, | ||
| 3277 | 0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x11,0x00,0x10,0x00,0x10,0x00,0x91,0x08,0x10, | ||
| 3278 | 0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x52,0x04,0x10,0x00,0xd1,0x08,0x10,0x04,0x10, | ||
| 3279 | 0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x93,0x14,0x92,0x10,0xd1,0x08,0x10, | ||
| 3280 | 0x04,0x10,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0xd4, | ||
| 3281 | 0x14,0x53,0x04,0x10,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x10, | ||
| 3282 | 0x00,0x10,0x00,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x10, | ||
| 3283 | 0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0xd2,0x0c,0x51,0x04,0x10, | ||
| 3284 | 0x00,0x10,0x04,0x00,0x00,0x14,0x07,0x91,0x08,0x10,0x04,0x10,0x07,0x10,0x00,0x10, | ||
| 3285 | 0x00,0xcf,0x86,0xd5,0x6a,0xd4,0x42,0xd3,0x14,0x52,0x04,0x10,0x00,0xd1,0x08,0x10, | ||
| 3286 | 0x04,0x10,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0xd2,0x19,0xd1,0x08,0x10, | ||
| 3287 | 0x04,0x10,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0xff,0xf0,0x91,0x8d,0x87,0xf0, | ||
| 3288 | 0x91,0x8c,0xbe,0x00,0x91,0x11,0x10,0x0d,0x10,0xff,0xf0,0x91,0x8d,0x87,0xf0,0x91, | ||
| 3289 | 0x8d,0x97,0x00,0x10,0x09,0x00,0x00,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x11, | ||
| 3290 | 0x00,0x00,0x00,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x52, | ||
| 3291 | 0x04,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0xd4,0x1c,0xd3, | ||
| 3292 | 0x0c,0x52,0x04,0x10,0x00,0x11,0x04,0x00,0x00,0x10,0xe6,0x52,0x04,0x10,0xe6,0x91, | ||
| 3293 | 0x08,0x10,0x04,0x10,0xe6,0x00,0x00,0x00,0x00,0x93,0x10,0x52,0x04,0x10,0xe6,0x91, | ||
| 3294 | 0x08,0x10,0x04,0x10,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xe3, | ||
| 3295 | 0x30,0x01,0xd2,0xb7,0xd1,0x48,0xd0,0x06,0xcf,0x06,0x12,0x00,0xcf,0x86,0x95,0x3c, | ||
| 3296 | 0xd4,0x1c,0x93,0x18,0xd2,0x0c,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x09,0x12,0x00, | ||
| 3297 | 0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x07,0x12,0x00,0x12,0x00,0x53,0x04,0x12,0x00, | ||
| 3298 | 0xd2,0x0c,0x51,0x04,0x12,0x00,0x10,0x04,0x00,0x00,0x12,0x00,0xd1,0x08,0x10,0x04, | ||
| 3299 | 0x00,0x00,0x12,0x00,0x10,0x04,0x14,0xe6,0x15,0x00,0x00,0x00,0xd0,0x45,0xcf,0x86, | ||
| 3300 | 0x55,0x04,0x10,0x00,0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00,0xd2,0x15,0x51,0x04, | ||
| 3301 | 0x10,0x00,0x10,0x04,0x10,0x00,0x10,0xff,0xf0,0x91,0x92,0xb9,0xf0,0x91,0x92,0xba, | ||
| 3302 | 0x00,0xd1,0x11,0x10,0x0d,0x10,0xff,0xf0,0x91,0x92,0xb9,0xf0,0x91,0x92,0xb0,0x00, | ||
| 3303 | 0x10,0x00,0x10,0x0d,0x10,0xff,0xf0,0x91,0x92,0xb9,0xf0,0x91,0x92,0xbd,0x00,0x10, | ||
| 3304 | 0x00,0xcf,0x86,0x95,0x24,0xd4,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x10,0x00,0x10, | ||
| 3305 | 0x04,0x10,0x09,0x10,0x07,0x10,0x00,0x00,0x00,0x53,0x04,0x10,0x00,0x92,0x08,0x11, | ||
| 3306 | 0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0, | ||
| 3307 | 0x40,0xcf,0x86,0x55,0x04,0x10,0x00,0x54,0x04,0x10,0x00,0xd3,0x0c,0x52,0x04,0x10, | ||
| 3308 | 0x00,0x11,0x04,0x10,0x00,0x00,0x00,0xd2,0x1e,0x51,0x04,0x10,0x00,0x10,0x0d,0x10, | ||
| 3309 | 0xff,0xf0,0x91,0x96,0xb8,0xf0,0x91,0x96,0xaf,0x00,0x10,0xff,0xf0,0x91,0x96,0xb9, | ||
| 3310 | 0xf0,0x91,0x96,0xaf,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x10,0x09,0xcf, | ||
| 3311 | 0x86,0x95,0x2c,0xd4,0x1c,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x10,0x07,0x10, | ||
| 3312 | 0x00,0x10,0x00,0x10,0x00,0x92,0x08,0x11,0x04,0x10,0x00,0x11,0x00,0x11,0x00,0x53, | ||
| 3313 | 0x04,0x11,0x00,0x52,0x04,0x11,0x00,0x11,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0xd2, | ||
| 3314 | 0xa0,0xd1,0x5c,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x10,0x00,0x54,0x04,0x10,0x00,0x53, | ||
| 3315 | 0x04,0x10,0x00,0x52,0x04,0x10,0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x10, | ||
| 3316 | 0x09,0xcf,0x86,0xd5,0x24,0xd4,0x14,0x93,0x10,0x52,0x04,0x10,0x00,0x91,0x08,0x10, | ||
| 3317 | 0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x10,0x00,0x92,0x08,0x11, | ||
| 3318 | 0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x94,0x14,0x53,0x04,0x12,0x00,0x52,0x04,0x12, | ||
| 3319 | 0x00,0x91,0x08,0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x2a,0xcf, | ||
| 3320 | 0x86,0x55,0x04,0x0d,0x00,0x54,0x04,0x0d,0x00,0xd3,0x10,0x52,0x04,0x0d,0x00,0x51, | ||
| 3321 | 0x04,0x0d,0x00,0x10,0x04,0x0d,0x09,0x0d,0x07,0x92,0x0c,0x91,0x08,0x10,0x04,0x15, | ||
| 3322 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0x95,0x14,0x94,0x10,0x53,0x04,0x0d, | ||
| 3323 | 0x00,0x92,0x08,0x11,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd1, | ||
| 3324 | 0x40,0xd0,0x3a,0xcf,0x86,0xd5,0x20,0x54,0x04,0x11,0x00,0x53,0x04,0x11,0x00,0xd2, | ||
| 3325 | 0x0c,0x51,0x04,0x11,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x00, | ||
| 3326 | 0x00,0x11,0x00,0x11,0x00,0x94,0x14,0x53,0x04,0x11,0x00,0x92,0x0c,0x51,0x04,0x11, | ||
| 3327 | 0x00,0x10,0x04,0x11,0x00,0x11,0x09,0x00,0x00,0x11,0x00,0xcf,0x06,0x00,0x00,0xcf, | ||
| 3328 | 0x06,0x00,0x00,0xe4,0x59,0x01,0xd3,0xb2,0xd2,0x5c,0xd1,0x28,0xd0,0x22,0xcf,0x86, | ||
| 3329 | 0x55,0x04,0x14,0x00,0x54,0x04,0x14,0x00,0x53,0x04,0x14,0x00,0x92,0x10,0xd1,0x08, | ||
| 3330 | 0x10,0x04,0x14,0x00,0x14,0x09,0x10,0x04,0x14,0x07,0x14,0x00,0x00,0x00,0xcf,0x06, | ||
| 3331 | 0x00,0x00,0xd0,0x0a,0xcf,0x86,0x15,0x04,0x00,0x00,0x10,0x00,0xcf,0x86,0x55,0x04, | ||
| 3332 | 0x10,0x00,0x54,0x04,0x10,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x10,0x00,0x10,0x04, | ||
| 3333 | 0x10,0x00,0x00,0x00,0x00,0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04, | ||
| 3334 | 0x00,0x00,0x10,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x1a,0xcf,0x86,0x55,0x04, | ||
| 3335 | 0x00,0x00,0x94,0x10,0x53,0x04,0x15,0x00,0x92,0x08,0x11,0x04,0x00,0x00,0x15,0x00, | ||
| 3336 | 0x15,0x00,0x15,0x00,0xcf,0x86,0xd5,0x14,0x54,0x04,0x15,0x00,0x53,0x04,0x15,0x00, | ||
| 3337 | 0x92,0x08,0x11,0x04,0x00,0x00,0x15,0x00,0x15,0x00,0x94,0x1c,0x93,0x18,0xd2,0x0c, | ||
| 3338 | 0x91,0x08,0x10,0x04,0x15,0x09,0x15,0x00,0x15,0x00,0x91,0x08,0x10,0x04,0x15,0x00, | ||
| 3339 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd2,0xa0,0xd1,0x3c,0xd0,0x1e,0xcf,0x86, | ||
| 3340 | 0x55,0x04,0x13,0x00,0x54,0x04,0x13,0x00,0x93,0x10,0x52,0x04,0x13,0x00,0x91,0x08, | ||
| 3341 | 0x10,0x04,0x13,0x09,0x13,0x00,0x13,0x00,0x13,0x00,0xcf,0x86,0x95,0x18,0x94,0x14, | ||
| 3342 | 0x93,0x10,0x52,0x04,0x13,0x00,0x51,0x04,0x13,0x00,0x10,0x04,0x13,0x00,0x13,0x09, | ||
| 3343 | 0x00,0x00,0x13,0x00,0x13,0x00,0xd0,0x46,0xcf,0x86,0xd5,0x2c,0xd4,0x10,0x93,0x0c, | ||
| 3344 | 0x52,0x04,0x13,0x00,0x11,0x04,0x15,0x00,0x13,0x00,0x13,0x00,0x53,0x04,0x13,0x00, | ||
| 3345 | 0xd2,0x0c,0x91,0x08,0x10,0x04,0x13,0x00,0x13,0x09,0x13,0x00,0x91,0x08,0x10,0x04, | ||
| 3346 | 0x13,0x00,0x14,0x00,0x13,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x13,0x00, | ||
| 3347 | 0x10,0x04,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0x55,0x04, | ||
| 3348 | 0x10,0x00,0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 3349 | 0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xe3,0xa9,0x01,0xd2, | ||
| 3350 | 0xb0,0xd1,0x6c,0xd0,0x3e,0xcf,0x86,0xd5,0x18,0x94,0x14,0x53,0x04,0x12,0x00,0x92, | ||
| 3351 | 0x0c,0x91,0x08,0x10,0x04,0x12,0x00,0x00,0x00,0x12,0x00,0x12,0x00,0x12,0x00,0x54, | ||
| 3352 | 0x04,0x12,0x00,0xd3,0x10,0x52,0x04,0x12,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12, | ||
| 3353 | 0x00,0x00,0x00,0x52,0x04,0x12,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x12, | ||
| 3354 | 0x09,0xcf,0x86,0xd5,0x14,0x94,0x10,0x93,0x0c,0x52,0x04,0x12,0x00,0x11,0x04,0x12, | ||
| 3355 | 0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x94,0x14,0x53,0x04,0x12,0x00,0x52,0x04,0x12, | ||
| 3356 | 0x00,0x91,0x08,0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0xd0,0x3e,0xcf, | ||
| 3357 | 0x86,0xd5,0x14,0x54,0x04,0x12,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x00,0x00,0x12, | ||
| 3358 | 0x00,0x12,0x00,0x12,0x00,0xd4,0x14,0x53,0x04,0x12,0x00,0x92,0x0c,0x91,0x08,0x10, | ||
| 3359 | 0x04,0x00,0x00,0x12,0x00,0x12,0x00,0x12,0x00,0x93,0x10,0x52,0x04,0x12,0x00,0x51, | ||
| 3360 | 0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1, | ||
| 3361 | 0xa0,0xd0,0x52,0xcf,0x86,0xd5,0x24,0x94,0x20,0xd3,0x10,0x52,0x04,0x13,0x00,0x51, | ||
| 3362 | 0x04,0x13,0x00,0x10,0x04,0x13,0x00,0x00,0x00,0x92,0x0c,0x51,0x04,0x13,0x00,0x10, | ||
| 3363 | 0x04,0x00,0x00,0x13,0x00,0x13,0x00,0x13,0x00,0x54,0x04,0x13,0x00,0xd3,0x10,0x52, | ||
| 3364 | 0x04,0x13,0x00,0x51,0x04,0x13,0x00,0x10,0x04,0x13,0x00,0x00,0x00,0xd2,0x0c,0x51, | ||
| 3365 | 0x04,0x00,0x00,0x10,0x04,0x13,0x00,0x00,0x00,0x51,0x04,0x13,0x00,0x10,0x04,0x00, | ||
| 3366 | 0x00,0x13,0x00,0xcf,0x86,0xd5,0x28,0xd4,0x18,0x93,0x14,0xd2,0x0c,0x51,0x04,0x13, | ||
| 3367 | 0x00,0x10,0x04,0x13,0x07,0x13,0x00,0x11,0x04,0x13,0x09,0x13,0x00,0x00,0x00,0x53, | ||
| 3368 | 0x04,0x13,0x00,0x92,0x08,0x11,0x04,0x13,0x00,0x00,0x00,0x00,0x00,0x94,0x20,0xd3, | ||
| 3369 | 0x10,0x52,0x04,0x14,0x00,0x51,0x04,0x14,0x00,0x10,0x04,0x00,0x00,0x14,0x00,0x92, | ||
| 3370 | 0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0xd0, | ||
| 3371 | 0x52,0xcf,0x86,0xd5,0x3c,0xd4,0x14,0x53,0x04,0x14,0x00,0x52,0x04,0x14,0x00,0x51, | ||
| 3372 | 0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x14, | ||
| 3373 | 0x00,0x10,0x04,0x00,0x00,0x14,0x00,0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x14, | ||
| 3374 | 0x09,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94, | ||
| 3375 | 0x10,0x53,0x04,0x14,0x00,0x92,0x08,0x11,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 3376 | 0x00,0xcf,0x06,0x00,0x00,0xd2,0x2a,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf, | ||
| 3377 | 0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x14,0x00,0x53,0x04,0x14, | ||
| 3378 | 0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd1, | ||
| 3379 | 0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x15, | ||
| 3380 | 0x00,0x54,0x04,0x15,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04,0x15,0x00,0x00,0x00,0x00, | ||
| 3381 | 0x00,0x52,0x04,0x00,0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x15,0x00,0xd0, | ||
| 3382 | 0xca,0xcf,0x86,0xd5,0xc2,0xd4,0x54,0xd3,0x06,0xcf,0x06,0x09,0x00,0xd2,0x06,0xcf, | ||
| 3383 | 0x06,0x09,0x00,0xd1,0x24,0xd0,0x06,0xcf,0x06,0x09,0x00,0xcf,0x86,0x55,0x04,0x09, | ||
| 3384 | 0x00,0x94,0x14,0x53,0x04,0x09,0x00,0x52,0x04,0x09,0x00,0x51,0x04,0x09,0x00,0x10, | ||
| 3385 | 0x04,0x09,0x00,0x10,0x00,0x10,0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04,0x10, | ||
| 3386 | 0x00,0x53,0x04,0x10,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x10,0x00,0x11,0x00,0x00, | ||
| 3387 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd3,0x68,0xd2,0x46,0xd1,0x40,0xd0, | ||
| 3388 | 0x06,0xcf,0x06,0x09,0x00,0xcf,0x86,0x55,0x04,0x09,0x00,0xd4,0x20,0xd3,0x10,0x92, | ||
| 3389 | 0x0c,0x51,0x04,0x09,0x00,0x10,0x04,0x09,0x00,0x10,0x00,0x10,0x00,0x52,0x04,0x10, | ||
| 3390 | 0x00,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x00,0x00,0x93,0x10,0x52,0x04,0x09, | ||
| 3391 | 0x00,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x11, | ||
| 3392 | 0x00,0xd1,0x1c,0xd0,0x06,0xcf,0x06,0x11,0x00,0xcf,0x86,0x95,0x10,0x94,0x0c,0x93, | ||
| 3393 | 0x08,0x12,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00, | ||
| 3394 | 0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x86,0xd5,0x4c,0xd4,0x06,0xcf, | ||
| 3395 | 0x06,0x0b,0x00,0xd3,0x40,0xd2,0x3a,0xd1,0x34,0xd0,0x2e,0xcf,0x86,0x55,0x04,0x0b, | ||
| 3396 | 0x00,0xd4,0x14,0x53,0x04,0x0b,0x00,0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10, | ||
| 3397 | 0x04,0x0b,0x00,0x00,0x00,0x53,0x04,0x15,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x15, | ||
| 3398 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf, | ||
| 3399 | 0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1,0x4c,0xd0,0x44,0xcf, | ||
| 3400 | 0x86,0xd5,0x3c,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf,0x06,0x11,0x00,0xd2, | ||
| 3401 | 0x2a,0xd1,0x24,0xd0,0x06,0xcf,0x06,0x11,0x00,0xcf,0x86,0x95,0x18,0x94,0x14,0x93, | ||
| 3402 | 0x10,0x52,0x04,0x11,0x00,0x51,0x04,0x11,0x00,0x10,0x04,0x11,0x00,0x00,0x00,0x00, | ||
| 3403 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00, | ||
| 3404 | 0x00,0xcf,0x86,0xcf,0x06,0x00,0x00,0xe0,0xd2,0x01,0xcf,0x86,0xd5,0x06,0xcf,0x06, | ||
| 3405 | 0x00,0x00,0xe4,0x0b,0x01,0xd3,0x06,0xcf,0x06,0x0c,0x00,0xd2,0x84,0xd1,0x50,0xd0, | ||
| 3406 | 0x1e,0xcf,0x86,0x55,0x04,0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x0c,0x00,0x92, | ||
| 3407 | 0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5, | ||
| 3408 | 0x18,0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00,0x52,0x04,0x10,0x00,0x51,0x04,0x10, | ||
| 3409 | 0x00,0x10,0x04,0x10,0x00,0x00,0x00,0x94,0x14,0x53,0x04,0x10,0x00,0xd2,0x08,0x11, | ||
| 3410 | 0x04,0x10,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x10,0x00,0x00,0x00,0xd0,0x06,0xcf, | ||
| 3411 | 0x06,0x00,0x00,0xcf,0x86,0xd5,0x08,0x14,0x04,0x00,0x00,0x10,0x00,0xd4,0x10,0x53, | ||
| 3412 | 0x04,0x10,0x00,0x52,0x04,0x10,0x00,0x11,0x04,0x10,0x00,0x00,0x00,0x93,0x10,0x52, | ||
| 3413 | 0x04,0x10,0x01,0x91,0x08,0x10,0x04,0x10,0x01,0x10,0x00,0x00,0x00,0x00,0x00,0xd1, | ||
| 3414 | 0x6c,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x10,0x00,0x54,0x04,0x10,0x00,0x93,0x10,0x52, | ||
| 3415 | 0x04,0x10,0xe6,0x51,0x04,0x10,0xe6,0x10,0x04,0x10,0xe6,0x10,0x00,0x10,0x00,0xcf, | ||
| 3416 | 0x86,0xd5,0x24,0xd4,0x10,0x93,0x0c,0x52,0x04,0x10,0x00,0x11,0x04,0x10,0x00,0x00, | ||
| 3417 | 0x00,0x00,0x00,0x53,0x04,0x10,0x00,0x92,0x0c,0x51,0x04,0x10,0x00,0x10,0x04,0x00, | ||
| 3418 | 0x00,0x10,0x00,0x10,0x00,0xd4,0x14,0x93,0x10,0x92,0x0c,0x51,0x04,0x10,0x00,0x10, | ||
| 3419 | 0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x53,0x04,0x10,0x00,0x52,0x04,0x00, | ||
| 3420 | 0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0xd0,0x0e,0xcf,0x86,0x95, | ||
| 3421 | 0x08,0x14,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf, | ||
| 3422 | 0x06,0x00,0x00,0xd2,0x30,0xd1,0x0c,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x06,0x14, | ||
| 3423 | 0x00,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04,0x14,0x00,0x53,0x04,0x14,0x00,0x92, | ||
| 3424 | 0x0c,0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf, | ||
| 3425 | 0x06,0x00,0x00,0xd1,0x4c,0xd0,0x06,0xcf,0x06,0x0d,0x00,0xcf,0x86,0xd5,0x2c,0x94, | ||
| 3426 | 0x28,0xd3,0x10,0x52,0x04,0x0d,0x00,0x91,0x08,0x10,0x04,0x0d,0x00,0x15,0x00,0x15, | ||
| 3427 | 0x00,0xd2,0x0c,0x51,0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00,0x00,0x51,0x04,0x00, | ||
| 3428 | 0x00,0x10,0x04,0x00,0x00,0x15,0x00,0x0d,0x00,0x54,0x04,0x0d,0x00,0x53,0x04,0x0d, | ||
| 3429 | 0x00,0x52,0x04,0x0d,0x00,0x51,0x04,0x0d,0x00,0x10,0x04,0x0d,0x00,0x15,0x00,0xd0, | ||
| 3430 | 0x1e,0xcf,0x86,0x95,0x18,0x94,0x14,0x53,0x04,0x15,0x00,0x52,0x04,0x00,0x00,0x51, | ||
| 3431 | 0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0x00,0x00,0xcf,0x86,0x55, | ||
| 3432 | 0x04,0x00,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x12,0x00,0x13, | ||
| 3433 | 0x00,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xcf,0x06,0x12,0x00,0xe2, | ||
| 3434 | 0xc6,0x01,0xd1,0x8e,0xd0,0x86,0xcf,0x86,0xd5,0x48,0xd4,0x06,0xcf,0x06,0x12,0x00, | ||
| 3435 | 0xd3,0x06,0xcf,0x06,0x12,0x00,0xd2,0x06,0xcf,0x06,0x12,0x00,0xd1,0x06,0xcf,0x06, | ||
| 3436 | 0x12,0x00,0xd0,0x06,0xcf,0x06,0x12,0x00,0xcf,0x86,0x55,0x04,0x12,0x00,0xd4,0x14, | ||
| 3437 | 0x53,0x04,0x12,0x00,0x52,0x04,0x12,0x00,0x91,0x08,0x10,0x04,0x12,0x00,0x14,0x00, | ||
| 3438 | 0x14,0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x14,0x00,0x15,0x00,0x15,0x00,0x00,0x00, | ||
| 3439 | 0xd4,0x36,0xd3,0x06,0xcf,0x06,0x12,0x00,0xd2,0x2a,0xd1,0x06,0xcf,0x06,0x12,0x00, | ||
| 3440 | 0xd0,0x06,0xcf,0x06,0x12,0x00,0xcf,0x86,0x55,0x04,0x12,0x00,0x54,0x04,0x12,0x00, | ||
| 3441 | 0x93,0x10,0x92,0x0c,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00, | ||
| 3442 | 0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 3443 | 0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86,0xd5,0xa2,0xd4,0x9c,0xd3,0x74, | ||
| 3444 | 0xd2,0x26,0xd1,0x20,0xd0,0x1a,0xcf,0x86,0x95,0x14,0x94,0x10,0x93,0x0c,0x92,0x08, | ||
| 3445 | 0x11,0x04,0x0c,0x00,0x13,0x00,0x13,0x00,0x13,0x00,0x13,0x00,0x13,0x00,0xcf,0x06, | ||
| 3446 | 0x13,0x00,0xcf,0x06,0x13,0x00,0xd1,0x48,0xd0,0x1e,0xcf,0x86,0x95,0x18,0x54,0x04, | ||
| 3447 | 0x13,0x00,0x53,0x04,0x13,0x00,0x52,0x04,0x13,0x00,0x51,0x04,0x13,0x00,0x10,0x04, | ||
| 3448 | 0x13,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0xd5,0x18,0x54,0x04,0x00,0x00,0x93,0x10, | ||
| 3449 | 0x92,0x0c,0x51,0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 3450 | 0x94,0x0c,0x93,0x08,0x12,0x04,0x00,0x00,0x15,0x00,0x00,0x00,0x13,0x00,0xcf,0x06, | ||
| 3451 | 0x13,0x00,0xd2,0x22,0xd1,0x06,0xcf,0x06,0x13,0x00,0xd0,0x06,0xcf,0x06,0x13,0x00, | ||
| 3452 | 0xcf,0x86,0x55,0x04,0x13,0x00,0x54,0x04,0x13,0x00,0x53,0x04,0x13,0x00,0x12,0x04, | ||
| 3453 | 0x13,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06, | ||
| 3454 | 0x00,0x00,0xd3,0x7f,0xd2,0x79,0xd1,0x34,0xd0,0x06,0xcf,0x06,0x10,0x00,0xcf,0x86, | ||
| 3455 | 0x55,0x04,0x10,0x00,0xd4,0x14,0x53,0x04,0x10,0x00,0x92,0x0c,0x51,0x04,0x10,0x00, | ||
| 3456 | 0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x10,0x00,0x52,0x04,0x10,0x00, | ||
| 3457 | 0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd0,0x3f,0xcf,0x86,0xd5,0x2c, | ||
| 3458 | 0xd4,0x14,0x53,0x04,0x10,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00, | ||
| 3459 | 0x00,0x00,0x00,0x00,0x53,0x04,0x10,0x00,0xd2,0x08,0x11,0x04,0x10,0x00,0x00,0x00, | ||
| 3460 | 0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x01,0x10,0x00,0x94,0x0d,0x93,0x09,0x12,0x05, | ||
| 3461 | 0x10,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00, | ||
| 3462 | 0x00,0xcf,0x06,0x00,0x00,0xe1,0x96,0x04,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 3463 | 0xcf,0x86,0xe5,0x33,0x04,0xe4,0x83,0x02,0xe3,0xf8,0x01,0xd2,0x26,0xd1,0x06,0xcf, | ||
| 3464 | 0x06,0x05,0x00,0xd0,0x06,0xcf,0x06,0x05,0x00,0xcf,0x86,0x55,0x04,0x05,0x00,0x54, | ||
| 3465 | 0x04,0x05,0x00,0x93,0x0c,0x52,0x04,0x05,0x00,0x11,0x04,0x05,0x00,0x00,0x00,0x00, | ||
| 3466 | 0x00,0xd1,0xef,0xd0,0x2a,0xcf,0x86,0x55,0x04,0x05,0x00,0x94,0x20,0xd3,0x10,0x52, | ||
| 3467 | 0x04,0x05,0x00,0x51,0x04,0x05,0x00,0x10,0x04,0x05,0x00,0x00,0x00,0x92,0x0c,0x91, | ||
| 3468 | 0x08,0x10,0x04,0x00,0x00,0x0a,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0xcf,0x86,0xd5, | ||
| 3469 | 0x2a,0x54,0x04,0x05,0x00,0x53,0x04,0x05,0x00,0x52,0x04,0x05,0x00,0x51,0x04,0x05, | ||
| 3470 | 0x00,0x10,0x0d,0x05,0xff,0xf0,0x9d,0x85,0x97,0xf0,0x9d,0x85,0xa5,0x00,0x05,0xff, | ||
| 3471 | 0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0x00,0xd4,0x75,0xd3,0x61,0xd2,0x44,0xd1, | ||
| 3472 | 0x22,0x10,0x11,0x05,0xff,0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0xf0,0x9d,0x85, | ||
| 3473 | 0xae,0x00,0x05,0xff,0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0xf0,0x9d,0x85,0xaf, | ||
| 3474 | 0x00,0x10,0x11,0x05,0xff,0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0xf0,0x9d,0x85, | ||
| 3475 | 0xb0,0x00,0x05,0xff,0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0xf0,0x9d,0x85,0xb1, | ||
| 3476 | 0x00,0xd1,0x15,0x10,0x11,0x05,0xff,0xf0,0x9d,0x85,0x98,0xf0,0x9d,0x85,0xa5,0xf0, | ||
| 3477 | 0x9d,0x85,0xb2,0x00,0x05,0xd8,0x10,0x04,0x05,0xd8,0x05,0x01,0xd2,0x08,0x11,0x04, | ||
| 3478 | 0x05,0x01,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x05,0xe2,0x05,0xd8,0xd3,0x12, | ||
| 3479 | 0x92,0x0d,0x51,0x04,0x05,0xd8,0x10,0x04,0x05,0xd8,0x05,0xff,0x00,0x05,0xff,0x00, | ||
| 3480 | 0x92,0x0e,0x51,0x05,0x05,0xff,0x00,0x10,0x05,0x05,0xff,0x00,0x05,0xdc,0x05,0xdc, | ||
| 3481 | 0xd0,0x97,0xcf,0x86,0xd5,0x28,0x94,0x24,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x05,0xdc, | ||
| 3482 | 0x10,0x04,0x05,0xdc,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x05,0xe6,0x05,0xe6, | ||
| 3483 | 0x92,0x08,0x11,0x04,0x05,0xe6,0x05,0xdc,0x05,0x00,0x05,0x00,0xd4,0x14,0x53,0x04, | ||
| 3484 | 0x05,0x00,0xd2,0x08,0x11,0x04,0x05,0x00,0x05,0xe6,0x11,0x04,0x05,0xe6,0x05,0x00, | ||
| 3485 | 0x53,0x04,0x05,0x00,0xd2,0x15,0x51,0x04,0x05,0x00,0x10,0x04,0x05,0x00,0x05,0xff, | ||
| 3486 | 0xf0,0x9d,0x86,0xb9,0xf0,0x9d,0x85,0xa5,0x00,0xd1,0x1e,0x10,0x0d,0x05,0xff,0xf0, | ||
| 3487 | 0x9d,0x86,0xba,0xf0,0x9d,0x85,0xa5,0x00,0x05,0xff,0xf0,0x9d,0x86,0xb9,0xf0,0x9d, | ||
| 3488 | 0x85,0xa5,0xf0,0x9d,0x85,0xae,0x00,0x10,0x11,0x05,0xff,0xf0,0x9d,0x86,0xba,0xf0, | ||
| 3489 | 0x9d,0x85,0xa5,0xf0,0x9d,0x85,0xae,0x00,0x05,0xff,0xf0,0x9d,0x86,0xb9,0xf0,0x9d, | ||
| 3490 | 0x85,0xa5,0xf0,0x9d,0x85,0xaf,0x00,0xcf,0x86,0xd5,0x31,0xd4,0x21,0x93,0x1d,0x92, | ||
| 3491 | 0x19,0x91,0x15,0x10,0x11,0x05,0xff,0xf0,0x9d,0x86,0xba,0xf0,0x9d,0x85,0xa5,0xf0, | ||
| 3492 | 0x9d,0x85,0xaf,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0x53,0x04,0x05,0x00, | ||
| 3493 | 0x52,0x04,0x05,0x00,0x11,0x04,0x05,0x00,0x11,0x00,0x94,0x14,0x53,0x04,0x11,0x00, | ||
| 3494 | 0x92,0x0c,0x91,0x08,0x10,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, | ||
| 3495 | 0xd2,0x44,0xd1,0x28,0xd0,0x06,0xcf,0x06,0x08,0x00,0xcf,0x86,0x95,0x1c,0x94,0x18, | ||
| 3496 | 0x93,0x14,0xd2,0x08,0x11,0x04,0x08,0x00,0x08,0xe6,0x91,0x08,0x10,0x04,0x08,0xe6, | ||
| 3497 | 0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00, | ||
| 3498 | 0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x14,0x00,0x93,0x08,0x12,0x04,0x14,0x00, | ||
| 3499 | 0x00,0x00,0x00,0x00,0xd1,0x40,0xd0,0x06,0xcf,0x06,0x07,0x00,0xcf,0x86,0xd5,0x18, | ||
| 3500 | 0x54,0x04,0x07,0x00,0x93,0x10,0x52,0x04,0x07,0x00,0x51,0x04,0x07,0x00,0x10,0x04, | ||
| 3501 | 0x07,0x00,0x00,0x00,0x00,0x00,0x54,0x04,0x09,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04, | ||
| 3502 | 0x09,0x00,0x14,0x00,0x14,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x14,0x00,0x00,0x00, | ||
| 3503 | 0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xe3,0x5f,0x01,0xd2,0xb4,0xd1,0x24,0xd0, | ||
| 3504 | 0x06,0xcf,0x06,0x05,0x00,0xcf,0x86,0x95,0x18,0x54,0x04,0x05,0x00,0x93,0x10,0x52, | ||
| 3505 | 0x04,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05,0x00,0x05,0x00,0x05, | ||
| 3506 | 0x00,0xd0,0x6a,0xcf,0x86,0xd5,0x18,0x54,0x04,0x05,0x00,0x53,0x04,0x05,0x00,0x52, | ||
| 3507 | 0x04,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05,0x00,0xd4,0x34,0xd3, | ||
| 3508 | 0x1c,0xd2,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x05,0x00,0x00,0x00,0xd1,0x08,0x10, | ||
| 3509 | 0x04,0x00,0x00,0x05,0x00,0x10,0x04,0x05,0x00,0x00,0x00,0xd2,0x0c,0x91,0x08,0x10, | ||
| 3510 | 0x04,0x00,0x00,0x05,0x00,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05, | ||
| 3511 | 0x00,0x53,0x04,0x05,0x00,0xd2,0x0c,0x51,0x04,0x05,0x00,0x10,0x04,0x00,0x00,0x05, | ||
| 3512 | 0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x05,0x00,0x05,0x00,0xcf,0x86,0x95,0x20,0x94, | ||
| 3513 | 0x1c,0x93,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x05,0x00,0x07,0x00,0x05,0x00,0x91, | ||
| 3514 | 0x08,0x10,0x04,0x00,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0x05,0x00,0xd1, | ||
| 3515 | 0xa4,0xd0,0x6a,0xcf,0x86,0xd5,0x48,0xd4,0x28,0xd3,0x10,0x52,0x04,0x05,0x00,0x51, | ||
| 3516 | 0x04,0x05,0x00,0x10,0x04,0x00,0x00,0x05,0x00,0xd2,0x0c,0x51,0x04,0x05,0x00,0x10, | ||
| 3517 | 0x04,0x05,0x00,0x00,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x05,0x00,0x05,0x00,0xd3, | ||
| 3518 | 0x10,0x52,0x04,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05,0x00,0x52, | ||
| 3519 | 0x04,0x05,0x00,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05,0x00,0x54,0x04,0x05, | ||
| 3520 | 0x00,0x53,0x04,0x05,0x00,0xd2,0x0c,0x51,0x04,0x05,0x00,0x10,0x04,0x00,0x00,0x05, | ||
| 3521 | 0x00,0x51,0x04,0x05,0x00,0x10,0x04,0x05,0x00,0x00,0x00,0xcf,0x86,0x95,0x34,0xd4, | ||
| 3522 | 0x20,0xd3,0x14,0x52,0x04,0x05,0x00,0xd1,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x10, | ||
| 3523 | 0x04,0x05,0x00,0x00,0x00,0x92,0x08,0x11,0x04,0x00,0x00,0x05,0x00,0x05,0x00,0x93, | ||
| 3524 | 0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x05,0x00,0x00,0x00,0x05,0x00,0x05,0x00,0x05, | ||
| 3525 | 0x00,0x05,0x00,0xcf,0x06,0x05,0x00,0xd2,0x26,0xd1,0x06,0xcf,0x06,0x05,0x00,0xd0, | ||
| 3526 | 0x1a,0xcf,0x86,0x55,0x04,0x05,0x00,0x94,0x10,0x93,0x0c,0x52,0x04,0x05,0x00,0x11, | ||
| 3527 | 0x04,0x08,0x00,0x00,0x00,0x05,0x00,0x05,0x00,0xcf,0x06,0x05,0x00,0xd1,0x06,0xcf, | ||
| 3528 | 0x06,0x05,0x00,0xd0,0x06,0xcf,0x06,0x05,0x00,0xcf,0x86,0x95,0x18,0x94,0x14,0x53, | ||
| 3529 | 0x04,0x05,0x00,0xd2,0x08,0x11,0x04,0x05,0x00,0x09,0x00,0x11,0x04,0x00,0x00,0x05, | ||
| 3530 | 0x00,0x05,0x00,0x05,0x00,0xd4,0x52,0xd3,0x06,0xcf,0x06,0x11,0x00,0xd2,0x46,0xd1, | ||
| 3531 | 0x06,0xcf,0x06,0x11,0x00,0xd0,0x3a,0xcf,0x86,0xd5,0x20,0xd4,0x0c,0x53,0x04,0x11, | ||
| 3532 | 0x00,0x12,0x04,0x11,0x00,0x00,0x00,0x53,0x04,0x00,0x00,0x92,0x0c,0x51,0x04,0x00, | ||
| 3533 | 0x00,0x10,0x04,0x00,0x00,0x11,0x00,0x11,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x91, | ||
| 3534 | 0x08,0x10,0x04,0x00,0x00,0x11,0x00,0x11,0x00,0x11,0x00,0x11,0x00,0x00,0x00,0xcf, | ||
| 3535 | 0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xe0,0xc2,0x03,0xcf,0x86, | ||
| 3536 | 0xe5,0x03,0x01,0xd4,0xfc,0xd3,0xc0,0xd2,0x66,0xd1,0x60,0xd0,0x5a,0xcf,0x86,0xd5, | ||
| 3537 | 0x2c,0xd4,0x14,0x93,0x10,0x52,0x04,0x12,0xe6,0x51,0x04,0x12,0xe6,0x10,0x04,0x12, | ||
| 3538 | 0xe6,0x00,0x00,0x12,0xe6,0x53,0x04,0x12,0xe6,0x92,0x10,0xd1,0x08,0x10,0x04,0x12, | ||
| 3539 | 0xe6,0x00,0x00,0x10,0x04,0x00,0x00,0x12,0xe6,0x12,0xe6,0x94,0x28,0xd3,0x18,0xd2, | ||
| 3540 | 0x0c,0x51,0x04,0x12,0xe6,0x10,0x04,0x00,0x00,0x12,0xe6,0x91,0x08,0x10,0x04,0x12, | ||
| 3541 | 0xe6,0x00,0x00,0x12,0xe6,0x92,0x0c,0x51,0x04,0x12,0xe6,0x10,0x04,0x12,0xe6,0x00, | ||
| 3542 | 0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1,0x54,0xd0, | ||
| 3543 | 0x36,0xcf,0x86,0x55,0x04,0x15,0x00,0xd4,0x14,0x53,0x04,0x15,0x00,0x52,0x04,0x15, | ||
| 3544 | 0x00,0x91,0x08,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0xd3,0x10,0x52,0x04,0x15, | ||
| 3545 | 0xe6,0x51,0x04,0x15,0xe6,0x10,0x04,0x15,0xe6,0x15,0x00,0x52,0x04,0x15,0x00,0x11, | ||
| 3546 | 0x04,0x15,0x00,0x00,0x00,0xcf,0x86,0x95,0x18,0x94,0x14,0x53,0x04,0x15,0x00,0xd2, | ||
| 3547 | 0x08,0x11,0x04,0x15,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x15,0x00,0x00,0x00,0x00, | ||
| 3548 | 0x00,0xcf,0x06,0x00,0x00,0xd2,0x36,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf, | ||
| 3549 | 0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x15,0x00,0xd4,0x0c,0x53,0x04,0x15,0x00,0x12, | ||
| 3550 | 0x04,0x15,0x00,0x15,0xe6,0x53,0x04,0x15,0x00,0xd2,0x08,0x11,0x04,0x15,0x00,0x00, | ||
| 3551 | 0x00,0x51,0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x15,0x00,0xcf,0x06,0x00,0x00,0xcf, | ||
| 3552 | 0x06,0x00,0x00,0xd4,0x82,0xd3,0x7c,0xd2,0x3e,0xd1,0x06,0xcf,0x06,0x10,0x00,0xd0, | ||
| 3553 | 0x06,0xcf,0x06,0x10,0x00,0xcf,0x86,0x95,0x2c,0xd4,0x18,0x93,0x14,0x52,0x04,0x10, | ||
| 3554 | 0x00,0xd1,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x10,0x00,0x10, | ||
| 3555 | 0x00,0x93,0x10,0x52,0x04,0x10,0xdc,0x51,0x04,0x10,0xdc,0x10,0x04,0x10,0xdc,0x00, | ||
| 3556 | 0x00,0x00,0x00,0x00,0x00,0xd1,0x38,0xd0,0x06,0xcf,0x06,0x12,0x00,0xcf,0x86,0x95, | ||
| 3557 | 0x2c,0xd4,0x18,0xd3,0x08,0x12,0x04,0x12,0x00,0x12,0xe6,0x92,0x0c,0x51,0x04,0x12, | ||
| 3558 | 0xe6,0x10,0x04,0x12,0x07,0x15,0x00,0x00,0x00,0x53,0x04,0x12,0x00,0xd2,0x08,0x11, | ||
| 3559 | 0x04,0x12,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x12,0x00,0x00,0x00,0xcf,0x06,0x00, | ||
| 3560 | 0x00,0xcf,0x06,0x00,0x00,0xd3,0x82,0xd2,0x48,0xd1,0x24,0xd0,0x06,0xcf,0x06,0x00, | ||
| 3561 | 0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x93,0x10,0x92,0x0c,0x91, | ||
| 3562 | 0x08,0x10,0x04,0x00,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0xd0,0x1e,0xcf, | ||
| 3563 | 0x86,0x55,0x04,0x14,0x00,0x54,0x04,0x14,0x00,0x93,0x10,0x52,0x04,0x14,0x00,0x91, | ||
| 3564 | 0x08,0x10,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1, | ||
| 3565 | 0x34,0xd0,0x2e,0xcf,0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10, | ||
| 3566 | 0x04,0x00,0x00,0x15,0x00,0x15,0x00,0x15,0x00,0x15,0x00,0x15,0x00,0x54,0x04,0x15, | ||
| 3567 | 0x00,0x53,0x04,0x15,0x00,0x52,0x04,0x15,0x00,0x11,0x04,0x15,0x00,0x00,0x00,0xcf, | ||
| 3568 | 0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xe2,0xb2,0x01,0xe1,0x41,0x01,0xd0,0x6e,0xcf, | ||
| 3569 | 0x86,0xd5,0x18,0x94,0x14,0x93,0x10,0x52,0x04,0x0d,0x00,0x91,0x08,0x10,0x04,0x00, | ||
| 3570 | 0x00,0x0d,0x00,0x0d,0x00,0x0d,0x00,0x0d,0x00,0xd4,0x30,0xd3,0x20,0xd2,0x10,0xd1, | ||
| 3571 | 0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0xd1,0x08,0x10, | ||
| 3572 | 0x04,0x0d,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0x92,0x0c,0x91,0x08,0x10, | ||
| 3573 | 0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0x0d,0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x0d, | ||
| 3574 | 0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0x0d,0x00,0x92,0x10,0xd1,0x08,0x10,0x04,0x00, | ||
| 3575 | 0x00,0x0d,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0xcf,0x86,0xd5,0x74,0xd4, | ||
| 3576 | 0x34,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x00,0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0x51, | ||
| 3577 | 0x04,0x00,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00, | ||
| 3578 | 0x00,0x0d,0x00,0x10,0x04,0x00,0x00,0x0d,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x0d, | ||
| 3579 | 0x00,0x0d,0x00,0xd3,0x20,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x10, | ||
| 3580 | 0x04,0x0d,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x0d,0x00,0x00,0x00,0x10,0x04,0x00, | ||
| 3581 | 0x00,0x0d,0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x10,0x04,0x00, | ||
| 3582 | 0x00,0x0d,0x00,0xd1,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x10,0x04,0x00,0x00,0x0d, | ||
| 3583 | 0x00,0xd4,0x30,0xd3,0x20,0xd2,0x10,0xd1,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x10, | ||
| 3584 | 0x04,0x0d,0x00,0x00,0x00,0xd1,0x08,0x10,0x04,0x0d,0x00,0x00,0x00,0x10,0x04,0x00, | ||
| 3585 | 0x00,0x0d,0x00,0x92,0x0c,0x51,0x04,0x0d,0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0x0d, | ||
| 3586 | 0x00,0xd3,0x10,0x92,0x0c,0x51,0x04,0x0d,0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0x0d, | ||
| 3587 | 0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0xd1,0x08,0x10, | ||
| 3588 | 0x04,0x0d,0x00,0x00,0x00,0x10,0x04,0x0d,0x00,0x00,0x00,0xd0,0x56,0xcf,0x86,0xd5, | ||
| 3589 | 0x20,0xd4,0x14,0x53,0x04,0x0d,0x00,0x92,0x0c,0x51,0x04,0x0d,0x00,0x10,0x04,0x00, | ||
| 3590 | 0x00,0x0d,0x00,0x0d,0x00,0x53,0x04,0x0d,0x00,0x12,0x04,0x0d,0x00,0x00,0x00,0xd4, | ||
| 3591 | 0x28,0xd3,0x18,0xd2,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0x91, | ||
| 3592 | 0x08,0x10,0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0x92,0x0c,0x51,0x04,0x0d,0x00,0x10, | ||
| 3593 | 0x04,0x00,0x00,0x0d,0x00,0x0d,0x00,0x53,0x04,0x0d,0x00,0x12,0x04,0x0d,0x00,0x00, | ||
| 3594 | 0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x93,0x0c,0x92,0x08,0x11, | ||
| 3595 | 0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x86,0xe5, | ||
| 3596 | 0x96,0x05,0xe4,0x28,0x03,0xe3,0xed,0x01,0xd2,0xa0,0xd1,0x1c,0xd0,0x16,0xcf,0x86, | ||
| 3597 | 0x55,0x04,0x0a,0x00,0x94,0x0c,0x53,0x04,0x0a,0x00,0x12,0x04,0x0a,0x00,0x00,0x00, | ||
| 3598 | 0x0a,0x00,0xcf,0x06,0x0a,0x00,0xd0,0x46,0xcf,0x86,0xd5,0x10,0x54,0x04,0x0a,0x00, | ||
| 3599 | 0x93,0x08,0x12,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0xd4,0x14,0x53,0x04,0x0c,0x00, | ||
| 3600 | 0x52,0x04,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x00,0x00,0xd3,0x10, | ||
| 3601 | 0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0x52,0x04, | ||
| 3602 | 0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x10,0x00,0xcf,0x86,0xd5,0x28, | ||
| 3603 | 0xd4,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00,0x0c,0x00, | ||
| 3604 | 0x0c,0x00,0x0c,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x00,0x00,0x0c,0x00, | ||
| 3605 | 0x0c,0x00,0x0c,0x00,0x0c,0x00,0x54,0x04,0x10,0x00,0x93,0x0c,0x52,0x04,0x10,0x00, | ||
| 3606 | 0x11,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd1,0xe4,0xd0,0x5a,0xcf,0x86,0xd5,0x20, | ||
| 3607 | 0x94,0x1c,0x53,0x04,0x0b,0x00,0xd2,0x0c,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00, | ||
| 3608 | 0x10,0x00,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0xd4,0x14, | ||
| 3609 | 0x53,0x04,0x0b,0x00,0x52,0x04,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04,0x0b,0x00, | ||
| 3610 | 0x14,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x0b,0x00,0x0c,0x00, | ||
| 3611 | 0x0c,0x00,0x52,0x04,0x0c,0x00,0xd1,0x08,0x10,0x04,0x0c,0x00,0x0b,0x00,0x10,0x04, | ||
| 3612 | 0x0c,0x00,0x0b,0x00,0xcf,0x86,0xd5,0x4c,0xd4,0x2c,0xd3,0x18,0xd2,0x0c,0x51,0x04, | ||
| 3613 | 0x0c,0x00,0x10,0x04,0x0b,0x00,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0b,0x00, | ||
| 3614 | 0x0c,0x00,0xd2,0x08,0x11,0x04,0x0c,0x00,0x0b,0x00,0x51,0x04,0x0b,0x00,0x10,0x04, | ||
| 3615 | 0x0b,0x00,0x0c,0x00,0xd3,0x10,0x52,0x04,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04, | ||
| 3616 | 0x0c,0x00,0x0b,0x00,0x52,0x04,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00, | ||
| 3617 | 0x0b,0x00,0xd4,0x18,0x53,0x04,0x0c,0x00,0xd2,0x08,0x11,0x04,0x0c,0x00,0x0d,0x00, | ||
| 3618 | 0x91,0x08,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0x53,0x04,0x0c,0x00,0xd2,0x10, | ||
| 3619 | 0xd1,0x08,0x10,0x04,0x0c,0x00,0x0b,0x00,0x10,0x04,0x0c,0x00,0x0b,0x00,0xd1,0x08, | ||
| 3620 | 0x10,0x04,0x0b,0x00,0x0c,0x00,0x10,0x04,0x0c,0x00,0x0b,0x00,0xd0,0x4e,0xcf,0x86, | ||
| 3621 | 0xd5,0x34,0xd4,0x14,0x53,0x04,0x0c,0x00,0xd2,0x08,0x11,0x04,0x0c,0x00,0x0b,0x00, | ||
| 3622 | 0x11,0x04,0x0b,0x00,0x0c,0x00,0xd3,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0b,0x00, | ||
| 3623 | 0x0c,0x00,0x0c,0x00,0x0c,0x00,0x92,0x0c,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00, | ||
| 3624 | 0x12,0x00,0x12,0x00,0x94,0x14,0x53,0x04,0x12,0x00,0x52,0x04,0x12,0x00,0x91,0x08, | ||
| 3625 | 0x10,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00, | ||
| 3626 | 0x94,0x10,0x93,0x0c,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x0c,0x00,0x0c,0x00, | ||
| 3627 | 0x0c,0x00,0xd2,0x7e,0xd1,0x78,0xd0,0x3e,0xcf,0x86,0xd5,0x1c,0x94,0x18,0x93,0x14, | ||
| 3628 | 0x92,0x10,0xd1,0x08,0x10,0x04,0x0b,0x00,0x0c,0x00,0x10,0x04,0x0c,0x00,0x00,0x00, | ||
| 3629 | 0x00,0x00,0x00,0x00,0x0b,0x00,0x54,0x04,0x0b,0x00,0xd3,0x0c,0x92,0x08,0x11,0x04, | ||
| 3630 | 0x0b,0x00,0x0c,0x00,0x0c,0x00,0x92,0x0c,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00, | ||
| 3631 | 0x12,0x00,0x00,0x00,0xcf,0x86,0xd5,0x24,0xd4,0x14,0x53,0x04,0x0b,0x00,0x92,0x0c, | ||
| 3632 | 0x91,0x08,0x10,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x0c,0x92,0x08, | ||
| 3633 | 0x11,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x10,0x93,0x0c,0x52,0x04, | ||
| 3634 | 0x13,0x00,0x11,0x04,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00, | ||
| 3635 | 0xd1,0x58,0xd0,0x3a,0xcf,0x86,0x55,0x04,0x0c,0x00,0xd4,0x20,0xd3,0x10,0x92,0x0c, | ||
| 3636 | 0x91,0x08,0x10,0x04,0x0c,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x52,0x04,0x10,0x00, | ||
| 3637 | 0x91,0x08,0x10,0x04,0x10,0x00,0x11,0x00,0x11,0x00,0x93,0x10,0x52,0x04,0x0c,0x00, | ||
| 3638 | 0x51,0x04,0x0c,0x00,0x10,0x04,0x10,0x00,0x0c,0x00,0x0c,0x00,0xcf,0x86,0x55,0x04, | ||
| 3639 | 0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x0c,0x00,0x52,0x04,0x0c,0x00,0x91,0x08, | ||
| 3640 | 0x10,0x04,0x0c,0x00,0x10,0x00,0x11,0x00,0xd0,0x16,0xcf,0x86,0x95,0x10,0x54,0x04, | ||
| 3641 | 0x0c,0x00,0x93,0x08,0x12,0x04,0x0c,0x00,0x10,0x00,0x10,0x00,0x0c,0x00,0xcf,0x86, | ||
| 3642 | 0xd5,0x34,0xd4,0x28,0xd3,0x10,0x52,0x04,0x0c,0x00,0x91,0x08,0x10,0x04,0x0c,0x00, | ||
| 3643 | 0x10,0x00,0x0c,0x00,0xd2,0x0c,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x10,0x00, | ||
| 3644 | 0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x11,0x00,0x93,0x08,0x12,0x04,0x11,0x00, | ||
| 3645 | 0x10,0x00,0x10,0x00,0x54,0x04,0x0c,0x00,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04, | ||
| 3646 | 0x0c,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x11,0x00,0xd3,0xfc,0xd2,0x6c,0xd1,0x3c, | ||
| 3647 | 0xd0,0x1e,0xcf,0x86,0x55,0x04,0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x0c,0x00, | ||
| 3648 | 0x52,0x04,0x0c,0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x10,0x00,0xcf,0x86, | ||
| 3649 | 0x95,0x18,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x10,0x00, | ||
| 3650 | 0x0c,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0xd0,0x06,0xcf,0x06,0x0c,0x00, | ||
| 3651 | 0xcf,0x86,0x55,0x04,0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x0c,0x00,0xd2,0x0c, | ||
| 3652 | 0x91,0x08,0x10,0x04,0x10,0x00,0x0c,0x00,0x0c,0x00,0xd1,0x08,0x10,0x04,0x0c,0x00, | ||
| 3653 | 0x10,0x00,0x10,0x04,0x10,0x00,0x11,0x00,0xd1,0x54,0xd0,0x1a,0xcf,0x86,0x55,0x04, | ||
| 3654 | 0x0c,0x00,0x54,0x04,0x0c,0x00,0x53,0x04,0x0c,0x00,0x52,0x04,0x0c,0x00,0x11,0x04, | ||
| 3655 | 0x0c,0x00,0x10,0x00,0xcf,0x86,0xd5,0x1c,0x94,0x18,0xd3,0x08,0x12,0x04,0x0d,0x00, | ||
| 3656 | 0x10,0x00,0x92,0x0c,0x51,0x04,0x10,0x00,0x10,0x04,0x10,0x00,0x11,0x00,0x11,0x00, | ||
| 3657 | 0x0c,0x00,0xd4,0x08,0x13,0x04,0x0c,0x00,0x10,0x00,0x53,0x04,0x10,0x00,0x92,0x0c, | ||
| 3658 | 0x51,0x04,0x10,0x00,0x10,0x04,0x12,0x00,0x10,0x00,0x10,0x00,0xd0,0x1e,0xcf,0x86, | ||
| 3659 | 0x55,0x04,0x10,0x00,0x94,0x14,0x93,0x10,0x52,0x04,0x10,0x00,0x91,0x08,0x10,0x04, | ||
| 3660 | 0x12,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0xcf,0x86,0x55,0x04,0x10,0x00, | ||
| 3661 | 0x54,0x04,0x10,0x00,0x53,0x04,0x10,0x00,0x92,0x0c,0x51,0x04,0x10,0x00,0x10,0x04, | ||
| 3662 | 0x10,0x00,0x0c,0x00,0x0c,0x00,0xe2,0x19,0x01,0xd1,0xa8,0xd0,0x7e,0xcf,0x86,0xd5, | ||
| 3663 | 0x4c,0xd4,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x0d,0x00,0x0c,0x00,0x0c, | ||
| 3664 | 0x00,0x0c,0x00,0x0c,0x00,0xd3,0x1c,0xd2,0x0c,0x91,0x08,0x10,0x04,0x0c,0x00,0x0d, | ||
| 3665 | 0x00,0x0c,0x00,0xd1,0x08,0x10,0x04,0x0c,0x00,0x0d,0x00,0x10,0x04,0x0c,0x00,0x0d, | ||
| 3666 | 0x00,0xd2,0x10,0xd1,0x08,0x10,0x04,0x0c,0x00,0x0d,0x00,0x10,0x04,0x0c,0x00,0x0d, | ||
| 3667 | 0x00,0x51,0x04,0x0c,0x00,0x10,0x04,0x0c,0x00,0x0d,0x00,0xd4,0x1c,0xd3,0x0c,0x52, | ||
| 3668 | 0x04,0x0c,0x00,0x11,0x04,0x0c,0x00,0x0d,0x00,0x52,0x04,0x0c,0x00,0x91,0x08,0x10, | ||
| 3669 | 0x04,0x0d,0x00,0x0c,0x00,0x0d,0x00,0x93,0x10,0x52,0x04,0x0c,0x00,0x91,0x08,0x10, | ||
| 3670 | 0x04,0x0d,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0xcf,0x86,0x95,0x24,0x94,0x20,0x93, | ||
| 3671 | 0x1c,0xd2,0x10,0xd1,0x08,0x10,0x04,0x0c,0x00,0x10,0x00,0x10,0x04,0x10,0x00,0x11, | ||
| 3672 | 0x00,0x91,0x08,0x10,0x04,0x11,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00,0x10,0x00,0x10, | ||
| 3673 | 0x00,0xd0,0x06,0xcf,0x06,0x0c,0x00,0xcf,0x86,0xd5,0x30,0xd4,0x10,0x93,0x0c,0x52, | ||
| 3674 | 0x04,0x0c,0x00,0x11,0x04,0x0c,0x00,0x10,0x00,0x10,0x00,0x93,0x1c,0xd2,0x10,0xd1, | ||
| 3675 | 0x08,0x10,0x04,0x11,0x00,0x12,0x00,0x10,0x04,0x12,0x00,0x13,0x00,0x91,0x08,0x10, | ||
| 3676 | 0x04,0x13,0x00,0x15,0x00,0x00,0x00,0x00,0x00,0xd4,0x14,0x53,0x04,0x10,0x00,0x52, | ||
| 3677 | 0x04,0x10,0x00,0x91,0x08,0x10,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0xd3,0x10,0x52, | ||
| 3678 | 0x04,0x10,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x13,0x00,0x92,0x10,0xd1, | ||
| 3679 | 0x08,0x10,0x04,0x13,0x00,0x14,0x00,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0xd1, | ||
| 3680 | 0x1c,0xd0,0x06,0xcf,0x06,0x0c,0x00,0xcf,0x86,0x55,0x04,0x0c,0x00,0x54,0x04,0x0c, | ||
| 3681 | 0x00,0x93,0x08,0x12,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0xd0,0x06,0xcf,0x06,0x10, | ||
| 3682 | 0x00,0xcf,0x86,0xd5,0x24,0x54,0x04,0x10,0x00,0xd3,0x10,0x52,0x04,0x10,0x00,0x91, | ||
| 3683 | 0x08,0x10,0x04,0x10,0x00,0x14,0x00,0x14,0x00,0x92,0x0c,0x91,0x08,0x10,0x04,0x14, | ||
| 3684 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x0c,0x53,0x04,0x15,0x00,0x12,0x04,0x15, | ||
| 3685 | 0x00,0x00,0x00,0x00,0x00,0xe4,0x40,0x02,0xe3,0xc9,0x01,0xd2,0x5c,0xd1,0x34,0xd0, | ||
| 3686 | 0x16,0xcf,0x86,0x95,0x10,0x94,0x0c,0x53,0x04,0x10,0x00,0x12,0x04,0x10,0x00,0x00, | ||
| 3687 | 0x00,0x10,0x00,0x10,0x00,0xcf,0x86,0x95,0x18,0xd4,0x08,0x13,0x04,0x10,0x00,0x00, | ||
| 3688 | 0x00,0x53,0x04,0x10,0x00,0x92,0x08,0x11,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x10, | ||
| 3689 | 0x00,0xd0,0x22,0xcf,0x86,0xd5,0x0c,0x94,0x08,0x13,0x04,0x10,0x00,0x00,0x00,0x10, | ||
| 3690 | 0x00,0x94,0x10,0x53,0x04,0x10,0x00,0x52,0x04,0x10,0x00,0x11,0x04,0x10,0x00,0x00, | ||
| 3691 | 0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xd1,0xc0,0xd0,0x5e,0xcf,0x86,0xd5,0x30,0xd4, | ||
| 3692 | 0x14,0x53,0x04,0x13,0x00,0x52,0x04,0x13,0x00,0x91,0x08,0x10,0x04,0x00,0x00,0x15, | ||
| 3693 | 0x00,0x15,0x00,0x53,0x04,0x11,0x00,0xd2,0x0c,0x91,0x08,0x10,0x04,0x11,0x00,0x12, | ||
| 3694 | 0x00,0x12,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x13,0x00,0xd4,0x08,0x13, | ||
| 3695 | 0x04,0x12,0x00,0x13,0x00,0xd3,0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x12,0x00,0x13, | ||
| 3696 | 0x00,0x10,0x04,0x13,0x00,0x12,0x00,0x12,0x00,0x52,0x04,0x12,0x00,0x51,0x04,0x12, | ||
| 3697 | 0x00,0x10,0x04,0x12,0x00,0x15,0x00,0xcf,0x86,0xd5,0x28,0xd4,0x14,0x53,0x04,0x12, | ||
| 3698 | 0x00,0x52,0x04,0x12,0x00,0x91,0x08,0x10,0x04,0x13,0x00,0x14,0x00,0x14,0x00,0x53, | ||
| 3699 | 0x04,0x12,0x00,0x52,0x04,0x12,0x00,0x51,0x04,0x12,0x00,0x10,0x04,0x12,0x00,0x13, | ||
| 3700 | 0x00,0xd4,0x0c,0x53,0x04,0x13,0x00,0x12,0x04,0x13,0x00,0x14,0x00,0xd3,0x1c,0xd2, | ||
| 3701 | 0x10,0xd1,0x08,0x10,0x04,0x14,0x00,0x15,0x00,0x10,0x04,0x00,0x00,0x14,0x00,0x51, | ||
| 3702 | 0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0x92,0x0c,0x51,0x04,0x00,0x00,0x10, | ||
| 3703 | 0x04,0x14,0x00,0x15,0x00,0x14,0x00,0xd0,0x62,0xcf,0x86,0xd5,0x24,0xd4,0x14,0x93, | ||
| 3704 | 0x10,0x52,0x04,0x11,0x00,0x91,0x08,0x10,0x04,0x11,0x00,0x12,0x00,0x12,0x00,0x12, | ||
| 3705 | 0x00,0x93,0x0c,0x92,0x08,0x11,0x04,0x12,0x00,0x13,0x00,0x13,0x00,0x14,0x00,0xd4, | ||
| 3706 | 0x2c,0xd3,0x18,0xd2,0x0c,0x51,0x04,0x14,0x00,0x10,0x04,0x14,0x00,0x00,0x00,0x91, | ||
| 3707 | 0x08,0x10,0x04,0x00,0x00,0x15,0x00,0x15,0x00,0xd2,0x0c,0x51,0x04,0x15,0x00,0x10, | ||
| 3708 | 0x04,0x15,0x00,0x00,0x00,0x11,0x04,0x00,0x00,0x15,0x00,0x53,0x04,0x14,0x00,0x92, | ||
| 3709 | 0x08,0x11,0x04,0x14,0x00,0x15,0x00,0x15,0x00,0xcf,0x86,0xd5,0x30,0x94,0x2c,0xd3, | ||
| 3710 | 0x14,0x92,0x10,0xd1,0x08,0x10,0x04,0x11,0x00,0x14,0x00,0x10,0x04,0x14,0x00,0x15, | ||
| 3711 | 0x00,0x15,0x00,0xd2,0x0c,0x51,0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00,0x00,0x91, | ||
| 3712 | 0x08,0x10,0x04,0x00,0x00,0x15,0x00,0x15,0x00,0x13,0x00,0x94,0x14,0x93,0x10,0x52, | ||
| 3713 | 0x04,0x13,0x00,0x51,0x04,0x13,0x00,0x10,0x04,0x13,0x00,0x14,0x00,0x14,0x00,0x14, | ||
| 3714 | 0x00,0xd2,0x70,0xd1,0x40,0xd0,0x06,0xcf,0x06,0x15,0x00,0xcf,0x86,0xd5,0x10,0x54, | ||
| 3715 | 0x04,0x15,0x00,0x93,0x08,0x12,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0xd4,0x10,0x53, | ||
| 3716 | 0x04,0x14,0x00,0x52,0x04,0x14,0x00,0x11,0x04,0x14,0x00,0x00,0x00,0xd3,0x08,0x12, | ||
| 3717 | 0x04,0x15,0x00,0x00,0x00,0x92,0x0c,0x51,0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00, | ||
| 3718 | 0x00,0x00,0x00,0xd0,0x2a,0xcf,0x86,0x95,0x24,0xd4,0x14,0x93,0x10,0x92,0x0c,0x51, | ||
| 3719 | 0x04,0x15,0x00,0x10,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x93,0x0c,0x52, | ||
| 3720 | 0x04,0x15,0x00,0x11,0x04,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00, | ||
| 3721 | 0x00,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00, | ||
| 3722 | 0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55, | ||
| 3723 | 0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11, | ||
| 3724 | 0x04,0x00,0x00,0x02,0x00,0xe4,0xf9,0x12,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00, | ||
| 3725 | 0xd2,0xc2,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x05,0x00,0xd0,0x44,0xcf,0x86,0xd5,0x3c, | ||
| 3726 | 0xd4,0x06,0xcf,0x06,0x05,0x00,0xd3,0x06,0xcf,0x06,0x05,0x00,0xd2,0x2a,0xd1,0x06, | ||
| 3727 | 0xcf,0x06,0x05,0x00,0xd0,0x06,0xcf,0x06,0x05,0x00,0xcf,0x86,0x95,0x18,0x54,0x04, | ||
| 3728 | 0x05,0x00,0x93,0x10,0x52,0x04,0x05,0x00,0x51,0x04,0x05,0x00,0x10,0x04,0x05,0x00, | ||
| 3729 | 0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x0b,0x00,0xcf,0x06,0x0b,0x00,0xcf,0x86, | ||
| 3730 | 0xd5,0x3c,0xd4,0x06,0xcf,0x06,0x0b,0x00,0xd3,0x06,0xcf,0x06,0x0b,0x00,0xd2,0x06, | ||
| 3731 | 0xcf,0x06,0x0b,0x00,0xd1,0x24,0xd0,0x1e,0xcf,0x86,0x55,0x04,0x0b,0x00,0x54,0x04, | ||
| 3732 | 0x0b,0x00,0x93,0x10,0x52,0x04,0x0b,0x00,0x91,0x08,0x10,0x04,0x0b,0x00,0x00,0x00, | ||
| 3733 | 0x00,0x00,0x00,0x00,0xcf,0x06,0x0c,0x00,0xcf,0x06,0x0c,0x00,0xd4,0x32,0xd3,0x2c, | ||
| 3734 | 0xd2,0x26,0xd1,0x20,0xd0,0x1a,0xcf,0x86,0x95,0x14,0x54,0x04,0x0c,0x00,0x53,0x04, | ||
| 3735 | 0x0c,0x00,0x52,0x04,0x0c,0x00,0x11,0x04,0x0c,0x00,0x00,0x00,0x11,0x00,0xcf,0x06, | ||
| 3736 | 0x11,0x00,0xcf,0x06,0x11,0x00,0xcf,0x06,0x11,0x00,0xcf,0x06,0x11,0x00,0xcf,0x06, | ||
| 3737 | 0x11,0x00,0xd1,0x48,0xd0,0x40,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x11,0x00,0xd4,0x06, | ||
| 3738 | 0xcf,0x06,0x11,0x00,0xd3,0x06,0xcf,0x06,0x11,0x00,0xd2,0x26,0xd1,0x06,0xcf,0x06, | ||
| 3739 | 0x11,0x00,0xd0,0x1a,0xcf,0x86,0x55,0x04,0x11,0x00,0x94,0x10,0x93,0x0c,0x92,0x08, | ||
| 3740 | 0x11,0x04,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x00,0xcf,0x06,0x13,0x00, | ||
| 3741 | 0xcf,0x06,0x13,0x00,0xcf,0x86,0xcf,0x06,0x13,0x00,0xd0,0x44,0xcf,0x86,0xd5,0x06, | ||
| 3742 | 0xcf,0x06,0x13,0x00,0xd4,0x36,0xd3,0x06,0xcf,0x06,0x13,0x00,0xd2,0x06,0xcf,0x06, | ||
| 3743 | 0x13,0x00,0xd1,0x06,0xcf,0x06,0x13,0x00,0xd0,0x06,0xcf,0x06,0x13,0x00,0xcf,0x86, | ||
| 3744 | 0x55,0x04,0x13,0x00,0x94,0x14,0x93,0x10,0x92,0x0c,0x91,0x08,0x10,0x04,0x13,0x00, | ||
| 3745 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x86, | ||
| 3746 | 0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0x68,0x11,0xe3,0x51,0x10,0xe2,0x17,0x08,0xe1, | ||
| 3747 | 0x06,0x04,0xe0,0x03,0x02,0xcf,0x86,0xe5,0x06,0x01,0xd4,0x82,0xd3,0x41,0xd2,0x21, | ||
| 3748 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe4,0xb8,0xbd,0x00,0x05,0xff,0xe4,0xb8,0xb8,0x00, | ||
| 3749 | 0x10,0x08,0x05,0xff,0xe4,0xb9,0x81,0x00,0x05,0xff,0xf0,0xa0,0x84,0xa2,0x00,0xd1, | ||
| 3750 | 0x10,0x10,0x08,0x05,0xff,0xe4,0xbd,0xa0,0x00,0x05,0xff,0xe4,0xbe,0xae,0x00,0x10, | ||
| 3751 | 0x08,0x05,0xff,0xe4,0xbe,0xbb,0x00,0x05,0xff,0xe5,0x80,0x82,0x00,0xd2,0x20,0xd1, | ||
| 3752 | 0x10,0x10,0x08,0x05,0xff,0xe5,0x81,0xba,0x00,0x05,0xff,0xe5,0x82,0x99,0x00,0x10, | ||
| 3753 | 0x08,0x05,0xff,0xe5,0x83,0xa7,0x00,0x05,0xff,0xe5,0x83,0x8f,0x00,0xd1,0x11,0x10, | ||
| 3754 | 0x08,0x05,0xff,0xe3,0x92,0x9e,0x00,0x05,0xff,0xf0,0xa0,0x98,0xba,0x00,0x10,0x08, | ||
| 3755 | 0x05,0xff,0xe5,0x85,0x8d,0x00,0x05,0xff,0xe5,0x85,0x94,0x00,0xd3,0x42,0xd2,0x21, | ||
| 3756 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x85,0xa4,0x00,0x05,0xff,0xe5,0x85,0xb7,0x00, | ||
| 3757 | 0x10,0x09,0x05,0xff,0xf0,0xa0,0x94,0x9c,0x00,0x05,0xff,0xe3,0x92,0xb9,0x00,0xd1, | ||
| 3758 | 0x10,0x10,0x08,0x05,0xff,0xe5,0x85,0xa7,0x00,0x05,0xff,0xe5,0x86,0x8d,0x00,0x10, | ||
| 3759 | 0x09,0x05,0xff,0xf0,0xa0,0x95,0x8b,0x00,0x05,0xff,0xe5,0x86,0x97,0x00,0xd2,0x20, | ||
| 3760 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x86,0xa4,0x00,0x05,0xff,0xe4,0xbb,0x8c,0x00, | ||
| 3761 | 0x10,0x08,0x05,0xff,0xe5,0x86,0xac,0x00,0x05,0xff,0xe5,0x86,0xb5,0x00,0xd1,0x11, | ||
| 3762 | 0x10,0x09,0x05,0xff,0xf0,0xa9,0x87,0x9f,0x00,0x05,0xff,0xe5,0x87,0xb5,0x00,0x10, | ||
| 3763 | 0x08,0x05,0xff,0xe5,0x88,0x83,0x00,0x05,0xff,0xe3,0x93,0x9f,0x00,0xd4,0x80,0xd3, | ||
| 3764 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x88,0xbb,0x00,0x05,0xff,0xe5, | ||
| 3765 | 0x89,0x86,0x00,0x10,0x08,0x05,0xff,0xe5,0x89,0xb2,0x00,0x05,0xff,0xe5,0x89,0xb7, | ||
| 3766 | 0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe3,0x94,0x95,0x00,0x05,0xff,0xe5,0x8b,0x87, | ||
| 3767 | 0x00,0x10,0x08,0x05,0xff,0xe5,0x8b,0x89,0x00,0x05,0xff,0xe5,0x8b,0xa4,0x00,0xd2, | ||
| 3768 | 0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x8b,0xba,0x00,0x05,0xff,0xe5,0x8c,0x85, | ||
| 3769 | 0x00,0x10,0x08,0x05,0xff,0xe5,0x8c,0x86,0x00,0x05,0xff,0xe5,0x8c,0x97,0x00,0xd1, | ||
| 3770 | 0x10,0x10,0x08,0x05,0xff,0xe5,0x8d,0x89,0x00,0x05,0xff,0xe5,0x8d,0x91,0x00,0x10, | ||
| 3771 | 0x08,0x05,0xff,0xe5,0x8d,0x9a,0x00,0x05,0xff,0xe5,0x8d,0xb3,0x00,0xd3,0x39,0xd2, | ||
| 3772 | 0x18,0x91,0x10,0x10,0x08,0x05,0xff,0xe5,0x8d,0xbd,0x00,0x05,0xff,0xe5,0x8d,0xbf, | ||
| 3773 | 0x00,0x05,0xff,0xe5,0x8d,0xbf,0x00,0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa0,0xa8, | ||
| 3774 | 0xac,0x00,0x05,0xff,0xe7,0x81,0xb0,0x00,0x10,0x08,0x05,0xff,0xe5,0x8f,0x8a,0x00, | ||
| 3775 | 0x05,0xff,0xe5,0x8f,0x9f,0x00,0xd2,0x21,0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa0, | ||
| 3776 | 0xad,0xa3,0x00,0x05,0xff,0xe5,0x8f,0xab,0x00,0x10,0x08,0x05,0xff,0xe5,0x8f,0xb1, | ||
| 3777 | 0x00,0x05,0xff,0xe5,0x90,0x86,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x92,0x9e, | ||
| 3778 | 0x00,0x05,0xff,0xe5,0x90,0xb8,0x00,0x10,0x08,0x05,0xff,0xe5,0x91,0x88,0x00,0x05, | ||
| 3779 | 0xff,0xe5,0x91,0xa8,0x00,0xcf,0x86,0xe5,0x02,0x01,0xd4,0x80,0xd3,0x40,0xd2,0x20, | ||
| 3780 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0x92,0xa2,0x00,0x05,0xff,0xe5,0x93,0xb6,0x00, | ||
| 3781 | 0x10,0x08,0x05,0xff,0xe5,0x94,0x90,0x00,0x05,0xff,0xe5,0x95,0x93,0x00,0xd1,0x10, | ||
| 3782 | 0x10,0x08,0x05,0xff,0xe5,0x95,0xa3,0x00,0x05,0xff,0xe5,0x96,0x84,0x00,0x10,0x08, | ||
| 3783 | 0x05,0xff,0xe5,0x96,0x84,0x00,0x05,0xff,0xe5,0x96,0x99,0x00,0xd2,0x20,0xd1,0x10, | ||
| 3784 | 0x10,0x08,0x05,0xff,0xe5,0x96,0xab,0x00,0x05,0xff,0xe5,0x96,0xb3,0x00,0x10,0x08, | ||
| 3785 | 0x05,0xff,0xe5,0x97,0x82,0x00,0x05,0xff,0xe5,0x9c,0x96,0x00,0xd1,0x10,0x10,0x08, | ||
| 3786 | 0x05,0xff,0xe5,0x98,0x86,0x00,0x05,0xff,0xe5,0x9c,0x97,0x00,0x10,0x08,0x05,0xff, | ||
| 3787 | 0xe5,0x99,0x91,0x00,0x05,0xff,0xe5,0x99,0xb4,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10, | ||
| 3788 | 0x10,0x08,0x05,0xff,0xe5,0x88,0x87,0x00,0x05,0xff,0xe5,0xa3,0xae,0x00,0x10,0x08, | ||
| 3789 | 0x05,0xff,0xe5,0x9f,0x8e,0x00,0x05,0xff,0xe5,0x9f,0xb4,0x00,0xd1,0x10,0x10,0x08, | ||
| 3790 | 0x05,0xff,0xe5,0xa0,0x8d,0x00,0x05,0xff,0xe5,0x9e,0x8b,0x00,0x10,0x08,0x05,0xff, | ||
| 3791 | 0xe5,0xa0,0xb2,0x00,0x05,0xff,0xe5,0xa0,0xb1,0x00,0xd2,0x21,0xd1,0x11,0x10,0x08, | ||
| 3792 | 0x05,0xff,0xe5,0xa2,0xac,0x00,0x05,0xff,0xf0,0xa1,0x93,0xa4,0x00,0x10,0x08,0x05, | ||
| 3793 | 0xff,0xe5,0xa3,0xb2,0x00,0x05,0xff,0xe5,0xa3,0xb7,0x00,0xd1,0x10,0x10,0x08,0x05, | ||
| 3794 | 0xff,0xe5,0xa4,0x86,0x00,0x05,0xff,0xe5,0xa4,0x9a,0x00,0x10,0x08,0x05,0xff,0xe5, | ||
| 3795 | 0xa4,0xa2,0x00,0x05,0xff,0xe5,0xa5,0xa2,0x00,0xd4,0x7b,0xd3,0x42,0xd2,0x22,0xd1, | ||
| 3796 | 0x12,0x10,0x09,0x05,0xff,0xf0,0xa1,0x9a,0xa8,0x00,0x05,0xff,0xf0,0xa1,0x9b,0xaa, | ||
| 3797 | 0x00,0x10,0x08,0x05,0xff,0xe5,0xa7,0xac,0x00,0x05,0xff,0xe5,0xa8,0x9b,0x00,0xd1, | ||
| 3798 | 0x10,0x10,0x08,0x05,0xff,0xe5,0xa8,0xa7,0x00,0x05,0xff,0xe5,0xa7,0x98,0x00,0x10, | ||
| 3799 | 0x08,0x05,0xff,0xe5,0xa9,0xa6,0x00,0x05,0xff,0xe3,0x9b,0xae,0x00,0xd2,0x18,0x91, | ||
| 3800 | 0x10,0x10,0x08,0x05,0xff,0xe3,0x9b,0xbc,0x00,0x05,0xff,0xe5,0xac,0x88,0x00,0x05, | ||
| 3801 | 0xff,0xe5,0xac,0xbe,0x00,0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa1,0xa7,0x88,0x00, | ||
| 3802 | 0x05,0xff,0xe5,0xaf,0x83,0x00,0x10,0x08,0x05,0xff,0xe5,0xaf,0x98,0x00,0x05,0xff, | ||
| 3803 | 0xe5,0xaf,0xa7,0x00,0xd3,0x41,0xd2,0x21,0xd1,0x11,0x10,0x08,0x05,0xff,0xe5,0xaf, | ||
| 3804 | 0xb3,0x00,0x05,0xff,0xf0,0xa1,0xac,0x98,0x00,0x10,0x08,0x05,0xff,0xe5,0xaf,0xbf, | ||
| 3805 | 0x00,0x05,0xff,0xe5,0xb0,0x86,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0xbd,0x93, | ||
| 3806 | 0x00,0x05,0xff,0xe5,0xb0,0xa2,0x00,0x10,0x08,0x05,0xff,0xe3,0x9e,0x81,0x00,0x05, | ||
| 3807 | 0xff,0xe5,0xb1,0xa0,0x00,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0xb1,0xae, | ||
| 3808 | 0x00,0x05,0xff,0xe5,0xb3,0x80,0x00,0x10,0x08,0x05,0xff,0xe5,0xb2,0x8d,0x00,0x05, | ||
| 3809 | 0xff,0xf0,0xa1,0xb7,0xa4,0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe5,0xb5,0x83,0x00, | ||
| 3810 | 0x05,0xff,0xf0,0xa1,0xb7,0xa6,0x00,0x10,0x08,0x05,0xff,0xe5,0xb5,0xae,0x00,0x05, | ||
| 3811 | 0xff,0xe5,0xb5,0xab,0x00,0xe0,0x04,0x02,0xcf,0x86,0xd5,0xfe,0xd4,0x82,0xd3,0x40, | ||
| 3812 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0xb5,0xbc,0x00,0x05,0xff,0xe5,0xb7, | ||
| 3813 | 0xa1,0x00,0x10,0x08,0x05,0xff,0xe5,0xb7,0xa2,0x00,0x05,0xff,0xe3,0xa0,0xaf,0x00, | ||
| 3814 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0xb7,0xbd,0x00,0x05,0xff,0xe5,0xb8,0xa8,0x00, | ||
| 3815 | 0x10,0x08,0x05,0xff,0xe5,0xb8,0xbd,0x00,0x05,0xff,0xe5,0xb9,0xa9,0x00,0xd2,0x21, | ||
| 3816 | 0xd1,0x11,0x10,0x08,0x05,0xff,0xe3,0xa1,0xa2,0x00,0x05,0xff,0xf0,0xa2,0x86,0x83, | ||
| 3817 | 0x00,0x10,0x08,0x05,0xff,0xe3,0xa1,0xbc,0x00,0x05,0xff,0xe5,0xba,0xb0,0x00,0xd1, | ||
| 3818 | 0x10,0x10,0x08,0x05,0xff,0xe5,0xba,0xb3,0x00,0x05,0xff,0xe5,0xba,0xb6,0x00,0x10, | ||
| 3819 | 0x08,0x05,0xff,0xe5,0xbb,0x8a,0x00,0x05,0xff,0xf0,0xaa,0x8e,0x92,0x00,0xd3,0x3b, | ||
| 3820 | 0xd2,0x22,0xd1,0x11,0x10,0x08,0x05,0xff,0xe5,0xbb,0xbe,0x00,0x05,0xff,0xf0,0xa2, | ||
| 3821 | 0x8c,0xb1,0x00,0x10,0x09,0x05,0xff,0xf0,0xa2,0x8c,0xb1,0x00,0x05,0xff,0xe8,0x88, | ||
| 3822 | 0x81,0x00,0x51,0x08,0x05,0xff,0xe5,0xbc,0xa2,0x00,0x10,0x08,0x05,0xff,0xe3,0xa3, | ||
| 3823 | 0x87,0x00,0x05,0xff,0xf0,0xa3,0x8a,0xb8,0x00,0xd2,0x21,0xd1,0x11,0x10,0x09,0x05, | ||
| 3824 | 0xff,0xf0,0xa6,0x87,0x9a,0x00,0x05,0xff,0xe5,0xbd,0xa2,0x00,0x10,0x08,0x05,0xff, | ||
| 3825 | 0xe5,0xbd,0xab,0x00,0x05,0xff,0xe3,0xa3,0xa3,0x00,0xd1,0x10,0x10,0x08,0x05,0xff, | ||
| 3826 | 0xe5,0xbe,0x9a,0x00,0x05,0xff,0xe5,0xbf,0x8d,0x00,0x10,0x08,0x05,0xff,0xe5,0xbf, | ||
| 3827 | 0x97,0x00,0x05,0xff,0xe5,0xbf,0xb9,0x00,0xd4,0x81,0xd3,0x41,0xd2,0x20,0xd1,0x10, | ||
| 3828 | 0x10,0x08,0x05,0xff,0xe6,0x82,0x81,0x00,0x05,0xff,0xe3,0xa4,0xba,0x00,0x10,0x08, | ||
| 3829 | 0x05,0xff,0xe3,0xa4,0x9c,0x00,0x05,0xff,0xe6,0x82,0x94,0x00,0xd1,0x11,0x10,0x09, | ||
| 3830 | 0x05,0xff,0xf0,0xa2,0x9b,0x94,0x00,0x05,0xff,0xe6,0x83,0x87,0x00,0x10,0x08,0x05, | ||
| 3831 | 0xff,0xe6,0x85,0x88,0x00,0x05,0xff,0xe6,0x85,0x8c,0x00,0xd2,0x20,0xd1,0x10,0x10, | ||
| 3832 | 0x08,0x05,0xff,0xe6,0x85,0x8e,0x00,0x05,0xff,0xe6,0x85,0x8c,0x00,0x10,0x08,0x05, | ||
| 3833 | 0xff,0xe6,0x85,0xba,0x00,0x05,0xff,0xe6,0x86,0x8e,0x00,0xd1,0x10,0x10,0x08,0x05, | ||
| 3834 | 0xff,0xe6,0x86,0xb2,0x00,0x05,0xff,0xe6,0x86,0xa4,0x00,0x10,0x08,0x05,0xff,0xe6, | ||
| 3835 | 0x86,0xaf,0x00,0x05,0xff,0xe6,0x87,0x9e,0x00,0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10, | ||
| 3836 | 0x08,0x05,0xff,0xe6,0x87,0xb2,0x00,0x05,0xff,0xe6,0x87,0xb6,0x00,0x10,0x08,0x05, | ||
| 3837 | 0xff,0xe6,0x88,0x90,0x00,0x05,0xff,0xe6,0x88,0x9b,0x00,0xd1,0x10,0x10,0x08,0x05, | ||
| 3838 | 0xff,0xe6,0x89,0x9d,0x00,0x05,0xff,0xe6,0x8a,0xb1,0x00,0x10,0x08,0x05,0xff,0xe6, | ||
| 3839 | 0x8b,0x94,0x00,0x05,0xff,0xe6,0x8d,0x90,0x00,0xd2,0x21,0xd1,0x11,0x10,0x09,0x05, | ||
| 3840 | 0xff,0xf0,0xa2,0xac,0x8c,0x00,0x05,0xff,0xe6,0x8c,0xbd,0x00,0x10,0x08,0x05,0xff, | ||
| 3841 | 0xe6,0x8b,0xbc,0x00,0x05,0xff,0xe6,0x8d,0xa8,0x00,0xd1,0x10,0x10,0x08,0x05,0xff, | ||
| 3842 | 0xe6,0x8e,0x83,0x00,0x05,0xff,0xe6,0x8f,0xa4,0x00,0x10,0x09,0x05,0xff,0xf0,0xa2, | ||
| 3843 | 0xaf,0xb1,0x00,0x05,0xff,0xe6,0x90,0xa2,0x00,0xcf,0x86,0xe5,0x03,0x01,0xd4,0x81, | ||
| 3844 | 0xd3,0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x8f,0x85,0x00,0x05,0xff, | ||
| 3845 | 0xe6,0x8e,0xa9,0x00,0x10,0x08,0x05,0xff,0xe3,0xa8,0xae,0x00,0x05,0xff,0xe6,0x91, | ||
| 3846 | 0xa9,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x91,0xbe,0x00,0x05,0xff,0xe6,0x92, | ||
| 3847 | 0x9d,0x00,0x10,0x08,0x05,0xff,0xe6,0x91,0xb7,0x00,0x05,0xff,0xe3,0xa9,0xac,0x00, | ||
| 3848 | 0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x95,0x8f,0x00,0x05,0xff,0xe6,0x95, | ||
| 3849 | 0xac,0x00,0x10,0x09,0x05,0xff,0xf0,0xa3,0x80,0x8a,0x00,0x05,0xff,0xe6,0x97,0xa3, | ||
| 3850 | 0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x9b,0xb8,0x00,0x05,0xff,0xe6,0x99,0x89, | ||
| 3851 | 0x00,0x10,0x08,0x05,0xff,0xe3,0xac,0x99,0x00,0x05,0xff,0xe6,0x9a,0x91,0x00,0xd3, | ||
| 3852 | 0x40,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe3,0xac,0x88,0x00,0x05,0xff,0xe3, | ||
| 3853 | 0xab,0xa4,0x00,0x10,0x08,0x05,0xff,0xe5,0x86,0x92,0x00,0x05,0xff,0xe5,0x86,0x95, | ||
| 3854 | 0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x9c,0x80,0x00,0x05,0xff,0xe6,0x9a,0x9c, | ||
| 3855 | 0x00,0x10,0x08,0x05,0xff,0xe8,0x82,0xad,0x00,0x05,0xff,0xe4,0x8f,0x99,0x00,0xd2, | ||
| 3856 | 0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x9c,0x97,0x00,0x05,0xff,0xe6,0x9c,0x9b, | ||
| 3857 | 0x00,0x10,0x08,0x05,0xff,0xe6,0x9c,0xa1,0x00,0x05,0xff,0xe6,0x9d,0x9e,0x00,0xd1, | ||
| 3858 | 0x11,0x10,0x08,0x05,0xff,0xe6,0x9d,0x93,0x00,0x05,0xff,0xf0,0xa3,0x8f,0x83,0x00, | ||
| 3859 | 0x10,0x08,0x05,0xff,0xe3,0xad,0x89,0x00,0x05,0xff,0xe6,0x9f,0xba,0x00,0xd4,0x82, | ||
| 3860 | 0xd3,0x41,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0x9e,0x85,0x00,0x05,0xff, | ||
| 3861 | 0xe6,0xa1,0x92,0x00,0x10,0x08,0x05,0xff,0xe6,0xa2,0x85,0x00,0x05,0xff,0xf0,0xa3, | ||
| 3862 | 0x91,0xad,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xa2,0x8e,0x00,0x05,0xff,0xe6, | ||
| 3863 | 0xa0,0x9f,0x00,0x10,0x08,0x05,0xff,0xe6,0xa4,0x94,0x00,0x05,0xff,0xe3,0xae,0x9d, | ||
| 3864 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xa5,0x82,0x00,0x05,0xff,0xe6, | ||
| 3865 | 0xa6,0xa3,0x00,0x10,0x08,0x05,0xff,0xe6,0xa7,0xaa,0x00,0x05,0xff,0xe6,0xaa,0xa8, | ||
| 3866 | 0x00,0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa3,0x9a,0xa3,0x00,0x05,0xff,0xe6,0xab, | ||
| 3867 | 0x9b,0x00,0x10,0x08,0x05,0xff,0xe3,0xb0,0x98,0x00,0x05,0xff,0xe6,0xac,0xa1,0x00, | ||
| 3868 | 0xd3,0x42,0xd2,0x21,0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa3,0xa2,0xa7,0x00,0x05, | ||
| 3869 | 0xff,0xe6,0xad,0x94,0x00,0x10,0x08,0x05,0xff,0xe3,0xb1,0x8e,0x00,0x05,0xff,0xe6, | ||
| 3870 | 0xad,0xb2,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xae,0x9f,0x00,0x05,0xff,0xe6, | ||
| 3871 | 0xae,0xba,0x00,0x10,0x08,0x05,0xff,0xe6,0xae,0xbb,0x00,0x05,0xff,0xf0,0xa3,0xaa, | ||
| 3872 | 0x8d,0x00,0xd2,0x23,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa1,0xb4,0x8b,0x00,0x05, | ||
| 3873 | 0xff,0xf0,0xa3,0xab,0xba,0x00,0x10,0x08,0x05,0xff,0xe6,0xb1,0x8e,0x00,0x05,0xff, | ||
| 3874 | 0xf0,0xa3,0xb2,0xbc,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xb2,0xbf,0x00,0x05, | ||
| 3875 | 0xff,0xe6,0xb3,0x8d,0x00,0x10,0x08,0x05,0xff,0xe6,0xb1,0xa7,0x00,0x05,0xff,0xe6, | ||
| 3876 | 0xb4,0x96,0x00,0xe1,0x1d,0x04,0xe0,0x0c,0x02,0xcf,0x86,0xe5,0x08,0x01,0xd4,0x82, | ||
| 3877 | 0xd3,0x41,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xb4,0xbe,0x00,0x05,0xff, | ||
| 3878 | 0xe6,0xb5,0xb7,0x00,0x10,0x08,0x05,0xff,0xe6,0xb5,0x81,0x00,0x05,0xff,0xe6,0xb5, | ||
| 3879 | 0xa9,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xb5,0xb8,0x00,0x05,0xff,0xe6,0xb6, | ||
| 3880 | 0x85,0x00,0x10,0x09,0x05,0xff,0xf0,0xa3,0xb4,0x9e,0x00,0x05,0xff,0xe6,0xb4,0xb4, | ||
| 3881 | 0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe6,0xb8,0xaf,0x00,0x05,0xff,0xe6, | ||
| 3882 | 0xb9,0xae,0x00,0x10,0x08,0x05,0xff,0xe3,0xb4,0xb3,0x00,0x05,0xff,0xe6,0xbb,0x8b, | ||
| 3883 | 0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe6,0xbb,0x87,0x00,0x05,0xff,0xf0,0xa3,0xbb, | ||
| 3884 | 0x91,0x00,0x10,0x08,0x05,0xff,0xe6,0xb7,0xb9,0x00,0x05,0xff,0xe6,0xbd,0xae,0x00, | ||
| 3885 | 0xd3,0x42,0xd2,0x22,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa3,0xbd,0x9e,0x00,0x05, | ||
| 3886 | 0xff,0xf0,0xa3,0xbe,0x8e,0x00,0x10,0x08,0x05,0xff,0xe6,0xbf,0x86,0x00,0x05,0xff, | ||
| 3887 | 0xe7,0x80,0xb9,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0x80,0x9e,0x00,0x05,0xff, | ||
| 3888 | 0xe7,0x80,0x9b,0x00,0x10,0x08,0x05,0xff,0xe3,0xb6,0x96,0x00,0x05,0xff,0xe7,0x81, | ||
| 3889 | 0x8a,0x00,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0x81,0xbd,0x00,0x05,0xff, | ||
| 3890 | 0xe7,0x81,0xb7,0x00,0x10,0x08,0x05,0xff,0xe7,0x82,0xad,0x00,0x05,0xff,0xf0,0xa0, | ||
| 3891 | 0x94,0xa5,0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe7,0x85,0x85,0x00,0x05,0xff,0xf0, | ||
| 3892 | 0xa4,0x89,0xa3,0x00,0x10,0x08,0x05,0xff,0xe7,0x86,0x9c,0x00,0x05,0xff,0xf0,0xa4, | ||
| 3893 | 0x8e,0xab,0x00,0xd4,0x7b,0xd3,0x43,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7, | ||
| 3894 | 0x88,0xa8,0x00,0x05,0xff,0xe7,0x88,0xb5,0x00,0x10,0x08,0x05,0xff,0xe7,0x89,0x90, | ||
| 3895 | 0x00,0x05,0xff,0xf0,0xa4,0x98,0x88,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0x8a, | ||
| 3896 | 0x80,0x00,0x05,0xff,0xe7,0x8a,0x95,0x00,0x10,0x09,0x05,0xff,0xf0,0xa4,0x9c,0xb5, | ||
| 3897 | 0x00,0x05,0xff,0xf0,0xa4,0xa0,0x94,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff, | ||
| 3898 | 0xe7,0x8d,0xba,0x00,0x05,0xff,0xe7,0x8e,0x8b,0x00,0x10,0x08,0x05,0xff,0xe3,0xba, | ||
| 3899 | 0xac,0x00,0x05,0xff,0xe7,0x8e,0xa5,0x00,0x51,0x08,0x05,0xff,0xe3,0xba,0xb8,0x00, | ||
| 3900 | 0x10,0x08,0x05,0xff,0xe7,0x91,0x87,0x00,0x05,0xff,0xe7,0x91,0x9c,0x00,0xd3,0x42, | ||
| 3901 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0x91,0xb1,0x00,0x05,0xff,0xe7,0x92, | ||
| 3902 | 0x85,0x00,0x10,0x08,0x05,0xff,0xe7,0x93,0x8a,0x00,0x05,0xff,0xe3,0xbc,0x9b,0x00, | ||
| 3903 | 0xd1,0x11,0x10,0x08,0x05,0xff,0xe7,0x94,0xa4,0x00,0x05,0xff,0xf0,0xa4,0xb0,0xb6, | ||
| 3904 | 0x00,0x10,0x08,0x05,0xff,0xe7,0x94,0xbe,0x00,0x05,0xff,0xf0,0xa4,0xb2,0x92,0x00, | ||
| 3905 | 0xd2,0x22,0xd1,0x11,0x10,0x08,0x05,0xff,0xe7,0x95,0xb0,0x00,0x05,0xff,0xf0,0xa2, | ||
| 3906 | 0x86,0x9f,0x00,0x10,0x08,0x05,0xff,0xe7,0x98,0x90,0x00,0x05,0xff,0xf0,0xa4,0xbe, | ||
| 3907 | 0xa1,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa4,0xbe,0xb8,0x00,0x05,0xff,0xf0, | ||
| 3908 | 0xa5,0x81,0x84,0x00,0x10,0x08,0x05,0xff,0xe3,0xbf,0xbc,0x00,0x05,0xff,0xe4,0x80, | ||
| 3909 | 0x88,0x00,0xcf,0x86,0xe5,0x04,0x01,0xd4,0x7d,0xd3,0x3c,0xd2,0x23,0xd1,0x11,0x10, | ||
| 3910 | 0x08,0x05,0xff,0xe7,0x9b,0xb4,0x00,0x05,0xff,0xf0,0xa5,0x83,0xb3,0x00,0x10,0x09, | ||
| 3911 | 0x05,0xff,0xf0,0xa5,0x83,0xb2,0x00,0x05,0xff,0xf0,0xa5,0x84,0x99,0x00,0x91,0x11, | ||
| 3912 | 0x10,0x09,0x05,0xff,0xf0,0xa5,0x84,0xb3,0x00,0x05,0xff,0xe7,0x9c,0x9e,0x00,0x05, | ||
| 3913 | 0xff,0xe7,0x9c,0x9f,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0x9d,0x8a, | ||
| 3914 | 0x00,0x05,0xff,0xe4,0x80,0xb9,0x00,0x10,0x08,0x05,0xff,0xe7,0x9e,0x8b,0x00,0x05, | ||
| 3915 | 0xff,0xe4,0x81,0x86,0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe4,0x82,0x96,0x00,0x05, | ||
| 3916 | 0xff,0xf0,0xa5,0x90,0x9d,0x00,0x10,0x08,0x05,0xff,0xe7,0xa1,0x8e,0x00,0x05,0xff, | ||
| 3917 | 0xe7,0xa2,0x8c,0x00,0xd3,0x43,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0xa3, | ||
| 3918 | 0x8c,0x00,0x05,0xff,0xe4,0x83,0xa3,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0x98,0xa6, | ||
| 3919 | 0x00,0x05,0xff,0xe7,0xa5,0x96,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0x9a, | ||
| 3920 | 0x9a,0x00,0x05,0xff,0xf0,0xa5,0x9b,0x85,0x00,0x10,0x08,0x05,0xff,0xe7,0xa6,0x8f, | ||
| 3921 | 0x00,0x05,0xff,0xe7,0xa7,0xab,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe4, | ||
| 3922 | 0x84,0xaf,0x00,0x05,0xff,0xe7,0xa9,0x80,0x00,0x10,0x08,0x05,0xff,0xe7,0xa9,0x8a, | ||
| 3923 | 0x00,0x05,0xff,0xe7,0xa9,0x8f,0x00,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa5,0xa5, | ||
| 3924 | 0xbc,0x00,0x05,0xff,0xf0,0xa5,0xaa,0xa7,0x00,0x10,0x09,0x05,0xff,0xf0,0xa5,0xaa, | ||
| 3925 | 0xa7,0x00,0x05,0xff,0xe7,0xab,0xae,0x00,0xd4,0x83,0xd3,0x42,0xd2,0x21,0xd1,0x11, | ||
| 3926 | 0x10,0x08,0x05,0xff,0xe4,0x88,0x82,0x00,0x05,0xff,0xf0,0xa5,0xae,0xab,0x00,0x10, | ||
| 3927 | 0x08,0x05,0xff,0xe7,0xaf,0x86,0x00,0x05,0xff,0xe7,0xaf,0x89,0x00,0xd1,0x11,0x10, | ||
| 3928 | 0x08,0x05,0xff,0xe4,0x88,0xa7,0x00,0x05,0xff,0xf0,0xa5,0xb2,0x80,0x00,0x10,0x08, | ||
| 3929 | 0x05,0xff,0xe7,0xb3,0x92,0x00,0x05,0xff,0xe4,0x8a,0xa0,0x00,0xd2,0x21,0xd1,0x10, | ||
| 3930 | 0x10,0x08,0x05,0xff,0xe7,0xb3,0xa8,0x00,0x05,0xff,0xe7,0xb3,0xa3,0x00,0x10,0x08, | ||
| 3931 | 0x05,0xff,0xe7,0xb4,0x80,0x00,0x05,0xff,0xf0,0xa5,0xbe,0x86,0x00,0xd1,0x10,0x10, | ||
| 3932 | 0x08,0x05,0xff,0xe7,0xb5,0xa3,0x00,0x05,0xff,0xe4,0x8c,0x81,0x00,0x10,0x08,0x05, | ||
| 3933 | 0xff,0xe7,0xb7,0x87,0x00,0x05,0xff,0xe7,0xb8,0x82,0x00,0xd3,0x44,0xd2,0x22,0xd1, | ||
| 3934 | 0x10,0x10,0x08,0x05,0xff,0xe7,0xb9,0x85,0x00,0x05,0xff,0xe4,0x8c,0xb4,0x00,0x10, | ||
| 3935 | 0x09,0x05,0xff,0xf0,0xa6,0x88,0xa8,0x00,0x05,0xff,0xf0,0xa6,0x89,0x87,0x00,0xd1, | ||
| 3936 | 0x11,0x10,0x08,0x05,0xff,0xe4,0x8d,0x99,0x00,0x05,0xff,0xf0,0xa6,0x8b,0x99,0x00, | ||
| 3937 | 0x10,0x08,0x05,0xff,0xe7,0xbd,0xba,0x00,0x05,0xff,0xf0,0xa6,0x8c,0xbe,0x00,0xd2, | ||
| 3938 | 0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe7,0xbe,0x95,0x00,0x05,0xff,0xe7,0xbf,0xba, | ||
| 3939 | 0x00,0x10,0x08,0x05,0xff,0xe8,0x80,0x85,0x00,0x05,0xff,0xf0,0xa6,0x93,0x9a,0x00, | ||
| 3940 | 0xd1,0x11,0x10,0x09,0x05,0xff,0xf0,0xa6,0x94,0xa3,0x00,0x05,0xff,0xe8,0x81,0xa0, | ||
| 3941 | 0x00,0x10,0x09,0x05,0xff,0xf0,0xa6,0x96,0xa8,0x00,0x05,0xff,0xe8,0x81,0xb0,0x00, | ||
| 3942 | 0xe0,0x11,0x02,0xcf,0x86,0xe5,0x07,0x01,0xd4,0x85,0xd3,0x42,0xd2,0x21,0xd1,0x11, | ||
| 3943 | 0x10,0x09,0x05,0xff,0xf0,0xa3,0x8d,0x9f,0x00,0x05,0xff,0xe4,0x8f,0x95,0x00,0x10, | ||
| 3944 | 0x08,0x05,0xff,0xe8,0x82,0xb2,0x00,0x05,0xff,0xe8,0x84,0x83,0x00,0xd1,0x10,0x10, | ||
| 3945 | 0x08,0x05,0xff,0xe4,0x90,0x8b,0x00,0x05,0xff,0xe8,0x84,0xbe,0x00,0x10,0x08,0x05, | ||
| 3946 | 0xff,0xe5,0xaa,0xb5,0x00,0x05,0xff,0xf0,0xa6,0x9e,0xa7,0x00,0xd2,0x23,0xd1,0x12, | ||
| 3947 | 0x10,0x09,0x05,0xff,0xf0,0xa6,0x9e,0xb5,0x00,0x05,0xff,0xf0,0xa3,0x8e,0x93,0x00, | ||
| 3948 | 0x10,0x09,0x05,0xff,0xf0,0xa3,0x8e,0x9c,0x00,0x05,0xff,0xe8,0x88,0x81,0x00,0xd1, | ||
| 3949 | 0x10,0x10,0x08,0x05,0xff,0xe8,0x88,0x84,0x00,0x05,0xff,0xe8,0xbe,0x9e,0x00,0x10, | ||
| 3950 | 0x08,0x05,0xff,0xe4,0x91,0xab,0x00,0x05,0xff,0xe8,0x8a,0x91,0x00,0xd3,0x41,0xd2, | ||
| 3951 | 0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x8a,0x8b,0x00,0x05,0xff,0xe8,0x8a,0x9d, | ||
| 3952 | 0x00,0x10,0x08,0x05,0xff,0xe5,0x8a,0xb3,0x00,0x05,0xff,0xe8,0x8a,0xb1,0x00,0xd1, | ||
| 3953 | 0x10,0x10,0x08,0x05,0xff,0xe8,0x8a,0xb3,0x00,0x05,0xff,0xe8,0x8a,0xbd,0x00,0x10, | ||
| 3954 | 0x08,0x05,0xff,0xe8,0x8b,0xa6,0x00,0x05,0xff,0xf0,0xa6,0xac,0xbc,0x00,0xd2,0x20, | ||
| 3955 | 0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x8b,0xa5,0x00,0x05,0xff,0xe8,0x8c,0x9d,0x00, | ||
| 3956 | 0x10,0x08,0x05,0xff,0xe8,0x8d,0xa3,0x00,0x05,0xff,0xe8,0x8e,0xad,0x00,0xd1,0x10, | ||
| 3957 | 0x10,0x08,0x05,0xff,0xe8,0x8c,0xa3,0x00,0x05,0xff,0xe8,0x8e,0xbd,0x00,0x10,0x08, | ||
| 3958 | 0x05,0xff,0xe8,0x8f,0xa7,0x00,0x05,0xff,0xe8,0x91,0x97,0x00,0xd4,0x85,0xd3,0x43, | ||
| 3959 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x8d,0x93,0x00,0x05,0xff,0xe8,0x8f, | ||
| 3960 | 0x8a,0x00,0x10,0x08,0x05,0xff,0xe8,0x8f,0x8c,0x00,0x05,0xff,0xe8,0x8f,0x9c,0x00, | ||
| 3961 | 0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa6,0xb0,0xb6,0x00,0x05,0xff,0xf0,0xa6,0xb5, | ||
| 3962 | 0xab,0x00,0x10,0x09,0x05,0xff,0xf0,0xa6,0xb3,0x95,0x00,0x05,0xff,0xe4,0x94,0xab, | ||
| 3963 | 0x00,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x93,0xb1,0x00,0x05,0xff,0xe8, | ||
| 3964 | 0x93,0xb3,0x00,0x10,0x08,0x05,0xff,0xe8,0x94,0x96,0x00,0x05,0xff,0xf0,0xa7,0x8f, | ||
| 3965 | 0x8a,0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe8,0x95,0xa4,0x00,0x05,0xff,0xf0,0xa6, | ||
| 3966 | 0xbc,0xac,0x00,0x10,0x08,0x05,0xff,0xe4,0x95,0x9d,0x00,0x05,0xff,0xe4,0x95,0xa1, | ||
| 3967 | 0x00,0xd3,0x42,0xd2,0x22,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa6,0xbe,0xb1,0x00, | ||
| 3968 | 0x05,0xff,0xf0,0xa7,0x83,0x92,0x00,0x10,0x08,0x05,0xff,0xe4,0x95,0xab,0x00,0x05, | ||
| 3969 | 0xff,0xe8,0x99,0x90,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x99,0x9c,0x00,0x05, | ||
| 3970 | 0xff,0xe8,0x99,0xa7,0x00,0x10,0x08,0x05,0xff,0xe8,0x99,0xa9,0x00,0x05,0xff,0xe8, | ||
| 3971 | 0x9a,0xa9,0x00,0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x9a,0x88,0x00,0x05, | ||
| 3972 | 0xff,0xe8,0x9c,0x8e,0x00,0x10,0x08,0x05,0xff,0xe8,0x9b,0xa2,0x00,0x05,0xff,0xe8, | ||
| 3973 | 0x9d,0xb9,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe8,0x9c,0xa8,0x00,0x05,0xff,0xe8, | ||
| 3974 | 0x9d,0xab,0x00,0x10,0x08,0x05,0xff,0xe8,0x9e,0x86,0x00,0x05,0xff,0xe4,0x97,0x97, | ||
| 3975 | 0x00,0xcf,0x86,0xe5,0x08,0x01,0xd4,0x83,0xd3,0x41,0xd2,0x20,0xd1,0x10,0x10,0x08, | ||
| 3976 | 0x05,0xff,0xe8,0x9f,0xa1,0x00,0x05,0xff,0xe8,0xa0,0x81,0x00,0x10,0x08,0x05,0xff, | ||
| 3977 | 0xe4,0x97,0xb9,0x00,0x05,0xff,0xe8,0xa1,0xa0,0x00,0xd1,0x11,0x10,0x08,0x05,0xff, | ||
| 3978 | 0xe8,0xa1,0xa3,0x00,0x05,0xff,0xf0,0xa7,0x99,0xa7,0x00,0x10,0x08,0x05,0xff,0xe8, | ||
| 3979 | 0xa3,0x97,0x00,0x05,0xff,0xe8,0xa3,0x9e,0x00,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05, | ||
| 3980 | 0xff,0xe4,0x98,0xb5,0x00,0x05,0xff,0xe8,0xa3,0xba,0x00,0x10,0x08,0x05,0xff,0xe3, | ||
| 3981 | 0x92,0xbb,0x00,0x05,0xff,0xf0,0xa7,0xa2,0xae,0x00,0xd1,0x11,0x10,0x09,0x05,0xff, | ||
| 3982 | 0xf0,0xa7,0xa5,0xa6,0x00,0x05,0xff,0xe4,0x9a,0xbe,0x00,0x10,0x08,0x05,0xff,0xe4, | ||
| 3983 | 0x9b,0x87,0x00,0x05,0xff,0xe8,0xaa,0xa0,0x00,0xd3,0x41,0xd2,0x21,0xd1,0x10,0x10, | ||
| 3984 | 0x08,0x05,0xff,0xe8,0xab,0xad,0x00,0x05,0xff,0xe8,0xae,0x8a,0x00,0x10,0x08,0x05, | ||
| 3985 | 0xff,0xe8,0xb1,0x95,0x00,0x05,0xff,0xf0,0xa7,0xb2,0xa8,0x00,0xd1,0x10,0x10,0x08, | ||
| 3986 | 0x05,0xff,0xe8,0xb2,0xab,0x00,0x05,0xff,0xe8,0xb3,0x81,0x00,0x10,0x08,0x05,0xff, | ||
| 3987 | 0xe8,0xb4,0x9b,0x00,0x05,0xff,0xe8,0xb5,0xb7,0x00,0xd2,0x22,0xd1,0x12,0x10,0x09, | ||
| 3988 | 0x05,0xff,0xf0,0xa7,0xbc,0xaf,0x00,0x05,0xff,0xf0,0xa0,0xa0,0x84,0x00,0x10,0x08, | ||
| 3989 | 0x05,0xff,0xe8,0xb7,0x8b,0x00,0x05,0xff,0xe8,0xb6,0xbc,0x00,0xd1,0x11,0x10,0x08, | ||
| 3990 | 0x05,0xff,0xe8,0xb7,0xb0,0x00,0x05,0xff,0xf0,0xa0,0xa3,0x9e,0x00,0x10,0x08,0x05, | ||
| 3991 | 0xff,0xe8,0xbb,0x94,0x00,0x05,0xff,0xe8,0xbc,0xb8,0x00,0xd4,0x84,0xd3,0x43,0xd2, | ||
| 3992 | 0x22,0xd1,0x12,0x10,0x09,0x05,0xff,0xf0,0xa8,0x97,0x92,0x00,0x05,0xff,0xf0,0xa8, | ||
| 3993 | 0x97,0xad,0x00,0x10,0x08,0x05,0xff,0xe9,0x82,0x94,0x00,0x05,0xff,0xe9,0x83,0xb1, | ||
| 3994 | 0x00,0xd1,0x11,0x10,0x08,0x05,0xff,0xe9,0x84,0x91,0x00,0x05,0xff,0xf0,0xa8,0x9c, | ||
| 3995 | 0xae,0x00,0x10,0x08,0x05,0xff,0xe9,0x84,0x9b,0x00,0x05,0xff,0xe9,0x88,0xb8,0x00, | ||
| 3996 | 0xd2,0x20,0xd1,0x10,0x10,0x08,0x05,0xff,0xe9,0x8b,0x97,0x00,0x05,0xff,0xe9,0x8b, | ||
| 3997 | 0x98,0x00,0x10,0x08,0x05,0xff,0xe9,0x89,0xbc,0x00,0x05,0xff,0xe9,0x8f,0xb9,0x00, | ||
| 3998 | 0xd1,0x11,0x10,0x08,0x05,0xff,0xe9,0x90,0x95,0x00,0x05,0xff,0xf0,0xa8,0xaf,0xba, | ||
| 3999 | 0x00,0x10,0x08,0x05,0xff,0xe9,0x96,0x8b,0x00,0x05,0xff,0xe4,0xa6,0x95,0x00,0xd3, | ||
| 4000 | 0x43,0xd2,0x21,0xd1,0x11,0x10,0x08,0x05,0xff,0xe9,0x96,0xb7,0x00,0x05,0xff,0xf0, | ||
| 4001 | 0xa8,0xb5,0xb7,0x00,0x10,0x08,0x05,0xff,0xe4,0xa7,0xa6,0x00,0x05,0xff,0xe9,0x9b, | ||
| 4002 | 0x83,0x00,0xd1,0x10,0x10,0x08,0x05,0xff,0xe5,0xb6,0xb2,0x00,0x05,0xff,0xe9,0x9c, | ||
| 4003 | 0xa3,0x00,0x10,0x09,0x05,0xff,0xf0,0xa9,0x85,0x85,0x00,0x05,0xff,0xf0,0xa9,0x88, | ||
| 4004 | 0x9a,0x00,0xd2,0x21,0xd1,0x10,0x10,0x08,0x05,0xff,0xe4,0xa9,0xae,0x00,0x05,0xff, | ||
| 4005 | 0xe4,0xa9,0xb6,0x00,0x10,0x08,0x05,0xff,0xe9,0x9f,0xa0,0x00,0x05,0xff,0xf0,0xa9, | ||
| 4006 | 0x90,0x8a,0x00,0x91,0x11,0x10,0x08,0x05,0xff,0xe4,0xaa,0xb2,0x00,0x05,0xff,0xf0, | ||
| 4007 | 0xa9,0x92,0x96,0x00,0x05,0xff,0xe9,0xa0,0x8b,0x00,0xe2,0x10,0x01,0xe1,0x09,0x01, | ||
| 4008 | 0xe0,0x02,0x01,0xcf,0x86,0x95,0xfb,0xd4,0x82,0xd3,0x41,0xd2,0x21,0xd1,0x11,0x10, | ||
| 4009 | 0x08,0x05,0xff,0xe9,0xa0,0xa9,0x00,0x05,0xff,0xf0,0xa9,0x96,0xb6,0x00,0x10,0x08, | ||
| 4010 | 0x05,0xff,0xe9,0xa3,0xa2,0x00,0x05,0xff,0xe4,0xac,0xb3,0x00,0xd1,0x10,0x10,0x08, | ||
| 4011 | 0x05,0xff,0xe9,0xa4,0xa9,0x00,0x05,0xff,0xe9,0xa6,0xa7,0x00,0x10,0x08,0x05,0xff, | ||
| 4012 | 0xe9,0xa7,0x82,0x00,0x05,0xff,0xe9,0xa7,0xbe,0x00,0xd2,0x21,0xd1,0x11,0x10,0x08, | ||
| 4013 | 0x05,0xff,0xe4,0xaf,0x8e,0x00,0x05,0xff,0xf0,0xa9,0xac,0xb0,0x00,0x10,0x08,0x05, | ||
| 4014 | 0xff,0xe9,0xac,0x92,0x00,0x05,0xff,0xe9,0xb1,0x80,0x00,0xd1,0x10,0x10,0x08,0x05, | ||
| 4015 | 0xff,0xe9,0xb3,0xbd,0x00,0x05,0xff,0xe4,0xb3,0x8e,0x00,0x10,0x08,0x05,0xff,0xe4, | ||
| 4016 | 0xb3,0xad,0x00,0x05,0xff,0xe9,0xb5,0xa7,0x00,0xd3,0x44,0xd2,0x23,0xd1,0x11,0x10, | ||
| 4017 | 0x09,0x05,0xff,0xf0,0xaa,0x83,0x8e,0x00,0x05,0xff,0xe4,0xb3,0xb8,0x00,0x10,0x09, | ||
| 4018 | 0x05,0xff,0xf0,0xaa,0x84,0x85,0x00,0x05,0xff,0xf0,0xaa,0x88,0x8e,0x00,0xd1,0x11, | ||
| 4019 | 0x10,0x09,0x05,0xff,0xf0,0xaa,0x8a,0x91,0x00,0x05,0xff,0xe9,0xba,0xbb,0x00,0x10, | ||
| 4020 | 0x08,0x05,0xff,0xe4,0xb5,0x96,0x00,0x05,0xff,0xe9,0xbb,0xb9,0x00,0xd2,0x20,0xd1, | ||
| 4021 | 0x10,0x10,0x08,0x05,0xff,0xe9,0xbb,0xbe,0x00,0x05,0xff,0xe9,0xbc,0x85,0x00,0x10, | ||
| 4022 | 0x08,0x05,0xff,0xe9,0xbc,0x8f,0x00,0x05,0xff,0xe9,0xbc,0x96,0x00,0x91,0x11,0x10, | ||
| 4023 | 0x08,0x05,0xff,0xe9,0xbc,0xbb,0x00,0x05,0xff,0xf0,0xaa,0x98,0x80,0x00,0x00,0x00, | ||
| 4024 | 0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xcf,0x06,0x00,0x00,0xd3,0x06, | ||
| 4025 | 0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00, | ||
| 4026 | 0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00, | ||
| 4027 | 0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xd3,0x08, | ||
| 4028 | 0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd1,0x08, | ||
| 4029 | 0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86, | ||
| 4030 | 0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf,0x06, | ||
| 4031 | 0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06, | ||
| 4032 | 0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x53,0x04, | ||
| 4033 | 0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xcf,0x86,0xd5,0xc0, | ||
| 4034 | 0xd4,0x60,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06, | ||
| 4035 | 0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06, | ||
| 4036 | 0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00, | ||
| 4037 | 0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06, | ||
| 4038 | 0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04, | ||
| 4039 | 0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00, | ||
| 4040 | 0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 4041 | 0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 4042 | 0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06, | ||
| 4043 | 0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00, | ||
| 4044 | 0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00, | ||
| 4045 | 0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xd4,0x60, | ||
| 4046 | 0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 4047 | 0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00, | ||
| 4048 | 0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06, | ||
| 4049 | 0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00, | ||
| 4050 | 0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00, | ||
| 4051 | 0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xd3,0x08, | ||
| 4052 | 0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd1,0x08, | ||
| 4053 | 0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86, | ||
| 4054 | 0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf,0x06, | ||
| 4055 | 0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06, | ||
| 4056 | 0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x53,0x04, | ||
| 4057 | 0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xe0,0x83,0x01,0xcf, | ||
| 4058 | 0x86,0xd5,0xc0,0xd4,0x60,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf, | ||
| 4059 | 0x86,0xcf,0x06,0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf, | ||
| 4060 | 0x86,0xcf,0x06,0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf, | ||
| 4061 | 0x06,0x00,0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1, | ||
| 4062 | 0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00, | ||
| 4063 | 0x00,0x54,0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00, | ||
| 4064 | 0x00,0x02,0x00,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf, | ||
| 4065 | 0x06,0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf, | ||
| 4066 | 0x06,0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00, | ||
| 4067 | 0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf, | ||
| 4068 | 0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54, | ||
| 4069 | 0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02, | ||
| 4070 | 0x00,0xd4,0x60,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf, | ||
| 4071 | 0x06,0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf, | ||
| 4072 | 0x06,0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00, | ||
| 4073 | 0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf, | ||
| 4074 | 0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54, | ||
| 4075 | 0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02, | ||
| 4076 | 0x00,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00, | ||
| 4077 | 0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00, | ||
| 4078 | 0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3, | ||
| 4079 | 0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00, | ||
| 4080 | 0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00, | ||
| 4081 | 0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xcf, | ||
| 4082 | 0x86,0xd5,0xc0,0xd4,0x60,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf, | ||
| 4083 | 0x86,0xcf,0x06,0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf, | ||
| 4084 | 0x86,0xcf,0x06,0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf, | ||
| 4085 | 0x06,0x00,0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1, | ||
| 4086 | 0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00, | ||
| 4087 | 0x00,0x54,0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00, | ||
| 4088 | 0x00,0x02,0x00,0xd3,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf, | ||
| 4089 | 0x06,0x00,0x00,0xd1,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf, | ||
| 4090 | 0x06,0x00,0x00,0xcf,0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00, | ||
| 4091 | 0x00,0xd3,0x06,0xcf,0x06,0x00,0x00,0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf, | ||
| 4092 | 0x06,0x00,0x00,0xd0,0x06,0xcf,0x06,0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54, | ||
| 4093 | 0x04,0x00,0x00,0x53,0x04,0x00,0x00,0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02, | ||
| 4094 | 0x00,0xd4,0xd9,0xd3,0x81,0xd2,0x79,0xd1,0x71,0xd0,0x69,0xcf,0x86,0xd5,0x60,0xd4, | ||
| 4095 | 0x59,0xd3,0x52,0xd2,0x33,0xd1,0x2c,0xd0,0x25,0xcf,0x86,0x95,0x1e,0x94,0x19,0x93, | ||
| 4096 | 0x14,0x92,0x0f,0x91,0x0a,0x10,0x05,0x00,0xff,0x00,0x05,0xff,0x00,0x00,0xff,0x00, | ||
| 4097 | 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x05,0xff,0x00,0xcf,0x06,0x05,0xff, | ||
| 4098 | 0x00,0xcf,0x06,0x00,0xff,0x00,0xd1,0x07,0xcf,0x06,0x07,0xff,0x00,0xd0,0x07,0xcf, | ||
| 4099 | 0x06,0x07,0xff,0x00,0xcf,0x86,0x55,0x05,0x07,0xff,0x00,0x14,0x05,0x07,0xff,0x00, | ||
| 4100 | 0x00,0xff,0x00,0xcf,0x06,0x00,0xff,0x00,0xcf,0x06,0x00,0xff,0x00,0xcf,0x06,0x00, | ||
| 4101 | 0xff,0x00,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86, | ||
| 4102 | 0xcf,0x06,0x00,0x00,0xd2,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xd1,0x08,0xcf,0x86, | ||
| 4103 | 0xcf,0x06,0x00,0x00,0xd0,0x08,0xcf,0x86,0xcf,0x06,0x00,0x00,0xcf,0x86,0xd5,0x06, | ||
| 4104 | 0xcf,0x06,0x00,0x00,0xd4,0x06,0xcf,0x06,0x00,0x00,0xd3,0x06,0xcf,0x06,0x00,0x00, | ||
| 4105 | 0xd2,0x06,0xcf,0x06,0x00,0x00,0xd1,0x06,0xcf,0x06,0x00,0x00,0xd0,0x06,0xcf,0x06, | ||
| 4106 | 0x00,0x00,0xcf,0x86,0x55,0x04,0x00,0x00,0x54,0x04,0x00,0x00,0x53,0x04,0x00,0x00, | ||
| 4107 | 0x52,0x04,0x00,0x00,0x11,0x04,0x00,0x00,0x02,0x00,0xcf,0x86,0xcf,0x06,0x02,0x00, | ||
| 4108 | 0x81,0x80,0xcf,0x86,0x85,0x84,0xcf,0x86,0xcf,0x06,0x02,0x00,0x00,0x00,0x00,0x00 | ||
| 4109 | }; | ||
diff --git a/fs/unicode/utf8n.h b/fs/unicode/utf8n.h new file mode 100644 index 000000000000..a120638014c1 --- /dev/null +++ b/fs/unicode/utf8n.h | |||
| @@ -0,0 +1,117 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 SGI. | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it would be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | */ | ||
| 15 | |||
| 16 | #ifndef UTF8NORM_H | ||
| 17 | #define UTF8NORM_H | ||
| 18 | |||
| 19 | #include <linux/types.h> | ||
| 20 | #include <linux/export.h> | ||
| 21 | #include <linux/string.h> | ||
| 22 | #include <linux/module.h> | ||
| 23 | |||
| 24 | /* Encoding a unicode version number as a single unsigned int. */ | ||
| 25 | #define UNICODE_MAJ_SHIFT (16) | ||
| 26 | #define UNICODE_MIN_SHIFT (8) | ||
| 27 | |||
| 28 | #define UNICODE_AGE(MAJ, MIN, REV) \ | ||
| 29 | (((unsigned int)(MAJ) << UNICODE_MAJ_SHIFT) | \ | ||
| 30 | ((unsigned int)(MIN) << UNICODE_MIN_SHIFT) | \ | ||
| 31 | ((unsigned int)(REV))) | ||
| 32 | |||
| 33 | /* Highest unicode version supported by the data tables. */ | ||
| 34 | extern int utf8version_is_supported(u8 maj, u8 min, u8 rev); | ||
| 35 | extern int utf8version_latest(void); | ||
| 36 | |||
| 37 | /* | ||
| 38 | * Look for the correct const struct utf8data for a unicode version. | ||
| 39 | * Returns NULL if the version requested is too new. | ||
| 40 | * | ||
| 41 | * Two normalization forms are supported: nfdi and nfdicf. | ||
| 42 | * | ||
| 43 | * nfdi: | ||
| 44 | * - Apply unicode normalization form NFD. | ||
| 45 | * - Remove any Default_Ignorable_Code_Point. | ||
| 46 | * | ||
| 47 | * nfdicf: | ||
| 48 | * - Apply unicode normalization form NFD. | ||
| 49 | * - Remove any Default_Ignorable_Code_Point. | ||
| 50 | * - Apply a full casefold (C + F). | ||
| 51 | */ | ||
| 52 | extern const struct utf8data *utf8nfdi(unsigned int maxage); | ||
| 53 | extern const struct utf8data *utf8nfdicf(unsigned int maxage); | ||
| 54 | |||
| 55 | /* | ||
| 56 | * Determine the maximum age of any unicode character in the string. | ||
| 57 | * Returns 0 if only unassigned code points are present. | ||
| 58 | * Returns -1 if the input is not valid UTF-8. | ||
| 59 | */ | ||
| 60 | extern int utf8agemax(const struct utf8data *data, const char *s); | ||
| 61 | extern int utf8nagemax(const struct utf8data *data, const char *s, size_t len); | ||
| 62 | |||
| 63 | /* | ||
| 64 | * Determine the minimum age of any unicode character in the string. | ||
| 65 | * Returns 0 if any unassigned code points are present. | ||
| 66 | * Returns -1 if the input is not valid UTF-8. | ||
| 67 | */ | ||
| 68 | extern int utf8agemin(const struct utf8data *data, const char *s); | ||
| 69 | extern int utf8nagemin(const struct utf8data *data, const char *s, size_t len); | ||
| 70 | |||
| 71 | /* | ||
| 72 | * Determine the length of the normalized from of the string, | ||
| 73 | * excluding any terminating NULL byte. | ||
| 74 | * Returns 0 if only ignorable code points are present. | ||
| 75 | * Returns -1 if the input is not valid UTF-8. | ||
| 76 | */ | ||
| 77 | extern ssize_t utf8len(const struct utf8data *data, const char *s); | ||
| 78 | extern ssize_t utf8nlen(const struct utf8data *data, const char *s, size_t len); | ||
| 79 | |||
| 80 | /* Needed in struct utf8cursor below. */ | ||
| 81 | #define UTF8HANGULLEAF (12) | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Cursor structure used by the normalizer. | ||
| 85 | */ | ||
| 86 | struct utf8cursor { | ||
| 87 | const struct utf8data *data; | ||
| 88 | const char *s; | ||
| 89 | const char *p; | ||
| 90 | const char *ss; | ||
| 91 | const char *sp; | ||
| 92 | unsigned int len; | ||
| 93 | unsigned int slen; | ||
| 94 | short int ccc; | ||
| 95 | short int nccc; | ||
| 96 | unsigned char hangul[UTF8HANGULLEAF]; | ||
| 97 | }; | ||
| 98 | |||
| 99 | /* | ||
| 100 | * Initialize a utf8cursor to normalize a string. | ||
| 101 | * Returns 0 on success. | ||
| 102 | * Returns -1 on failure. | ||
| 103 | */ | ||
| 104 | extern int utf8cursor(struct utf8cursor *u8c, const struct utf8data *data, | ||
| 105 | const char *s); | ||
| 106 | extern int utf8ncursor(struct utf8cursor *u8c, const struct utf8data *data, | ||
| 107 | const char *s, size_t len); | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Get the next byte in the normalization. | ||
| 111 | * Returns a value > 0 && < 256 on success. | ||
| 112 | * Returns 0 when the end of the normalization is reached. | ||
| 113 | * Returns -1 if the string being normalized is not valid UTF-8. | ||
| 114 | */ | ||
| 115 | extern int utf8byte(struct utf8cursor *u8c); | ||
| 116 | |||
| 117 | #endif /* UTF8NORM_H */ | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index 0fa5b47509d5..f7fdfe93e25d 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -1963,6 +1963,7 @@ struct super_operations { | |||
| 1963 | #define S_DAX 0 /* Make all the DAX code disappear */ | 1963 | #define S_DAX 0 /* Make all the DAX code disappear */ |
| 1964 | #endif | 1964 | #endif |
| 1965 | #define S_ENCRYPTED 16384 /* Encrypted file (using fs/crypto/) */ | 1965 | #define S_ENCRYPTED 16384 /* Encrypted file (using fs/crypto/) */ |
| 1966 | #define S_CASEFOLD 32768 /* Casefolded file */ | ||
| 1966 | 1967 | ||
| 1967 | /* | 1968 | /* |
| 1968 | * Note that nosuid etc flags are inode-specific: setting some file-system | 1969 | * Note that nosuid etc flags are inode-specific: setting some file-system |
| @@ -2003,6 +2004,7 @@ static inline bool sb_rdonly(const struct super_block *sb) { return sb->s_flags | |||
| 2003 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) | 2004 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) |
| 2004 | #define IS_DAX(inode) ((inode)->i_flags & S_DAX) | 2005 | #define IS_DAX(inode) ((inode)->i_flags & S_DAX) |
| 2005 | #define IS_ENCRYPTED(inode) ((inode)->i_flags & S_ENCRYPTED) | 2006 | #define IS_ENCRYPTED(inode) ((inode)->i_flags & S_ENCRYPTED) |
| 2007 | #define IS_CASEFOLDED(inode) ((inode)->i_flags & S_CASEFOLD) | ||
| 2006 | 2008 | ||
| 2007 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ | 2009 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ |
| 2008 | (inode)->i_rdev == WHITEOUT_DEV) | 2010 | (inode)->i_rdev == WHITEOUT_DEV) |
diff --git a/include/linux/unicode.h b/include/linux/unicode.h new file mode 100644 index 000000000000..aec2c6d800aa --- /dev/null +++ b/include/linux/unicode.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
| 2 | #ifndef _LINUX_UNICODE_H | ||
| 3 | #define _LINUX_UNICODE_H | ||
| 4 | |||
| 5 | #include <linux/init.h> | ||
| 6 | #include <linux/dcache.h> | ||
| 7 | |||
| 8 | struct unicode_map { | ||
| 9 | const char *charset; | ||
| 10 | int version; | ||
| 11 | }; | ||
| 12 | |||
| 13 | int utf8_validate(const struct unicode_map *um, const struct qstr *str); | ||
| 14 | |||
| 15 | int utf8_strncmp(const struct unicode_map *um, | ||
| 16 | const struct qstr *s1, const struct qstr *s2); | ||
| 17 | |||
| 18 | int utf8_strncasecmp(const struct unicode_map *um, | ||
| 19 | const struct qstr *s1, const struct qstr *s2); | ||
| 20 | |||
| 21 | int utf8_normalize(const struct unicode_map *um, const struct qstr *str, | ||
| 22 | unsigned char *dest, size_t dlen); | ||
| 23 | |||
| 24 | int utf8_casefold(const struct unicode_map *um, const struct qstr *str, | ||
| 25 | unsigned char *dest, size_t dlen); | ||
| 26 | |||
| 27 | struct unicode_map *utf8_load(const char *version); | ||
| 28 | void utf8_unload(struct unicode_map *um); | ||
| 29 | |||
| 30 | #endif /* _LINUX_UNICODE_H */ | ||
